diff --git a/stage0/src/Init/Default.lean b/stage0/src/Init/Default.lean index 2b16aeac7a..37f9fc7eda 100644 --- a/stage0/src/Init/Default.lean +++ b/stage0/src/Init/Default.lean @@ -13,3 +13,4 @@ import Init.Data import Init.System import Init.Util import Init.Fix +import Init.LeanExt diff --git a/stage0/src/Init/Lean/Data/Name.lean b/stage0/src/Init/Lean/Data/Name.lean index 6f3bf554cd..cd203a8a73 100644 --- a/stage0/src/Init/Lean/Data/Name.lean +++ b/stage0/src/Init/Lean/Data/Name.lean @@ -14,29 +14,6 @@ import Init.Data.RBTree namespace Lean -instance Name.inhabited : Inhabited Name := -⟨Name.anonymous⟩ - -def Name.hash : Name → USize -| Name.anonymous => 1723 -| Name.str p s h => h -| Name.num p v h => h - -instance Name.hashable : Hashable Name := ⟨Name.hash⟩ - -@[export lean_name_hash] def Name.hashEx : Name → USize := Name.hash - -@[export lean_name_mk_string] -def mkNameStr (p : Name) (s : String) : Name := -Name.str p s $ mixHash (hash p) (hash s) - -@[export lean_name_mk_numeral] -def mkNameNum (p : Name) (v : Nat) : Name := -Name.num p v $ mixHash (hash p) (hash v) - -def mkNameSimple (s : String) : Name := -mkNameStr Name.anonymous s - instance stringToName : HasCoe String Name := ⟨mkNameSimple⟩ diff --git a/stage0/src/Init/Lean/Elab.lean b/stage0/src/Init/Lean/Elab.lean index 3bb2e15a56..475f45fb64 100644 --- a/stage0/src/Init/Lean/Elab.lean +++ b/stage0/src/Init/Lean/Elab.lean @@ -16,3 +16,4 @@ import Init.Lean.Elab.Frontend import Init.Lean.Elab.BuiltinNotation import Init.Lean.Elab.Declaration import Init.Lean.Elab.Tactic +import Init.Lean.Elab.Syntax diff --git a/stage0/src/Init/Lean/Elab/Command.lean b/stage0/src/Init/Lean/Elab/Command.lean index 45ecbb1a3d..69af6577cf 100644 --- a/stage0/src/Init/Lean/Elab/Command.lean +++ b/stage0/src/Init/Lean/Elab/Command.lean @@ -570,19 +570,6 @@ fun stx => do | Syntax.atom _ "false" => setOption ref optionName (DataValue.ofBool false) | _ => logError val ("unexpected set_option value " ++ toString val) -@[builtinCommandElab syntaxCat] def elabDeclareSyntaxCat : CommandElab := -fun stx => do - let catName := stx.getIdAt 1; - let attrName := catName.appendAfter "Parser"; - env ← getEnv; - env ← liftIO stx $ Parser.registerParserCategory env attrName catName; - setEnv env - - -@[builtinCommandElab syntax] def elabSyntax : CommandElab := -fun stx => - throwError stx ("not implemented yet " ++ toString stx) - @[inline] def withDeclId (declId : Syntax) (f : Name → CommandElabM Unit) : CommandElabM Unit := do -- ident >> optional (".{" >> sepBy1 ident ", " >> "}") let id := declId.getIdAt 0; diff --git a/stage0/src/Init/Lean/Elab/Quotation.lean b/stage0/src/Init/Lean/Elab/Quotation.lean index 7be88f083b..369ccc5a5c 100644 --- a/stage0/src/Init/Lean/Elab/Quotation.lean +++ b/stage0/src/Init/Lean/Elab/Quotation.lean @@ -39,23 +39,29 @@ private def quoteName : Name → Syntax | Name.str n s _ => Unhygienic.run `(_root_.Lean.mkNameStr $(quoteName n) $(quote s)) | Name.num n i _ => Unhygienic.run `(_root_.Lean.mkNameNum $(quoteName n) $(quote i)) -instance Name.HasQuote : HasQuote Name := ⟨quoteName⟩ +instance Name.hasQuote : HasQuote Name := ⟨quoteName⟩ private def appN (fn : Syntax) (args : Array Syntax) : Syntax := args.foldl (fun fn arg => Unhygienic.run `($fn $arg)) fn -instance Prod.HasQuote {α β : Type} [HasQuote α] [HasQuote β] : HasQuote (α × β) := +instance Prod.hasQuote {α β : Type} [HasQuote α] [HasQuote β] : HasQuote (α × β) := ⟨fun ⟨a, b⟩ => Unhygienic.run `(_root_.Prod.mk $(quote a) $(quote b))⟩ private def quoteList {α : Type} [HasQuote α] : List α → Syntax | [] => Unhygienic.run `(_root_.List.nil) | (x::xs) => Unhygienic.run `(_root_.List.cons $(quote x) $(quoteList xs)) -instance List.HasQuote {α : Type} [HasQuote α] : HasQuote (List α) := ⟨quoteList⟩ +instance List.hasQuote {α : Type} [HasQuote α] : HasQuote (List α) := ⟨quoteList⟩ -instance Array.HasQuote {α : Type} [HasQuote α] : HasQuote (Array α) := +instance Array.hasQuote {α : Type} [HasQuote α] : HasQuote (Array α) := ⟨fun xs => let stx := quote xs.toList; Unhygienic.run `(_root_.List.toArray $stx)⟩ +private def quoteOption {α : Type} [HasQuote α] : Option α → Syntax +| none => Unhygienic.run `(_root_.Option.none) +| (some x) => Unhygienic.run `(_root_.Option.some $(quote x)) + +instance Option.hasQuote {α : Type} [HasQuote α] : HasQuote (Option α) := ⟨quoteOption⟩ + namespace Elab namespace Term diff --git a/stage0/src/Init/Lean/Elab/Syntax.lean b/stage0/src/Init/Lean/Elab/Syntax.lean new file mode 100644 index 0000000000..2fc3197b30 --- /dev/null +++ b/stage0/src/Init/Lean/Elab/Syntax.lean @@ -0,0 +1,117 @@ +/- +Copyright (c) 2020 Microsoft Corporation. All rights reserved. +Released under Apache 2.0 license as described in the file LICENSE. +Authors: Leonardo de Moura +-/ +prelude +import Init.Lean.Elab.Command +import Init.Lean.Elab.Quotation + +namespace Lean +namespace Elab + +namespace Term + +-- optional (":" >> numLit) +private def getOptNum (stx : Syntax) : Option Nat := +if stx.isNone then none +else (stx.getArg 1).isNatLit? + +private def mkParserSeq (ds : Array Syntax) : TermElabM Syntax := +if ds.size == 0 then + throwUnsupportedSyntax +else if ds.size == 1 then + pure $ ds.get! 0 +else + ds.foldlFromM (fun r d => `(ParserDescr.andthen $r $d)) (ds.get! 0) 1 + +partial def toParserDescr : Syntax → TermElabM Syntax +| stx => + let kind := stx.getKind; + if kind == nullKind then do + args ← stx.getArgs.mapM toParserDescr; + mkParserSeq args + else if kind == choiceKind then do + toParserDescr (stx.getArg 0) + else if kind == `Lean.Parser.Syntax.paren then + toParserDescr (stx.getArg 1) + else if kind == `Lean.Parser.Syntax.cat then do + let cat : Name := stx.getIdAt 0; + let rbp : Nat := (getOptNum (stx.getArg 1)).getD 0; + env ← getEnv; + unless (Parser.isParserCategory env cat) $ throwError (stx.getArg 3) ("unknown category '" ++ cat ++ "'"); + `(ParserDescr.parser $(quote cat) $(quote rbp)) + else if kind == `Lean.Parser.Syntax.atom then do + match (stx.getArg 0).isStrLit? with + | some atom => + let rbp : Option Nat := getOptNum (stx.getArg 1); + `(ParserDescr.symbol $(quote atom) $(quote rbp)) + | none => throwUnsupportedSyntax + else if kind == `Lean.Parser.Syntax.num then + `(ParserDescr.num) + else if kind == `Lean.Parser.Syntax.str then + `(ParserDescr.str) + else if kind == `Lean.Parser.Syntax.char then + `(ParserDescr.char) + else if kind == `Lean.Parser.Syntax.ident then + `(ParserDescr.ident) + else if kind == `Lean.Parser.Syntax.try then do + d ← toParserDescr $ stx.getArg 1; + `(ParserDescr.try $d) + else if kind == `Lean.Parser.Syntax.lookahead then do + d ← toParserDescr $ stx.getArg 1; + `(ParserDescr.lookahead $d) + else if kind == `Lean.Parser.Syntax.optional then do + d ← toParserDescr $ stx.getArg 1; + `(ParserDescr.optional $d) + else if kind == `Lean.Parser.Syntax.sepBy then do + d₁ ← toParserDescr $ stx.getArg 1; + d₂ ← toParserDescr $ stx.getArg 2; + `(ParserDescr.sepBy $d₁ $d₂) + else if kind == `Lean.Parser.Syntax.sepBy1 then do + d₁ ← toParserDescr $ stx.getArg 1; + d₂ ← toParserDescr $ stx.getArg 2; + `(ParserDescr.sepBy1 $d₁ $d₂) + else if kind == `Lean.Parser.Syntax.many then do + d ← toParserDescr $ stx.getArg 0; + `(ParserDescr.many $d) + else if kind == `Lean.Parser.Syntax.many1 then do + d ← toParserDescr $ stx.getArg 0; + `(ParserDescr.many1 $d) + else if kind == `Lean.Parser.Syntax.orelse then do + d₁ ← toParserDescr $ stx.getArg 0; + d₂ ← toParserDescr $ stx.getArg 2; + `(ParserDescr.orelse $d₁ $d₂) + else + throwError stx ("ERROR " ++ toString stx) + -- throwUnsupportedSyntax + +end Term + +namespace Command + +@[builtinCommandElab syntaxCat] def elabDeclareSyntaxCat : CommandElab := +fun stx => do + let catName := stx.getIdAt 1; + let attrName := catName.appendAfter "Parser"; + env ← getEnv; + env ← liftIO stx $ Parser.registerParserCategory env attrName catName; + setEnv env + +@[builtinCommandElab syntax] def elabSyntax : CommandElab := +fun stx => do + env ← getEnv; + let cat := stx.getIdAt 3; + unless (Parser.isParserCategory env cat) $ throwError (stx.getArg 3) ("unknown category '" ++ cat ++ "'"); + let (env, kind) := Parser.mkFreshKind env cat; + setEnv env; + let catParserId := mkIdentFrom stx (cat.appendAfter "Parser"); + type ← `(Lean.ParserDescr); + val ← runTermElabM none $ fun _ => Term.toParserDescr (stx.getArg 1); + d ← `(@[$catParserId:ident] private def $catParserId:ident : $type := ParserDescr.node $(quote kind) $val); + trace `Elab stx $ fun _ => d; + withMacroExpansion stx $ elabCommand d + +end Command +end Elab +end Lean diff --git a/stage0/src/Init/Lean/Parser/Level.lean b/stage0/src/Init/Lean/Parser/Level.lean index 4b1ab733d9..76fb69d744 100644 --- a/stage0/src/Init/Lean/Parser/Level.lean +++ b/stage0/src/Init/Lean/Parser/Level.lean @@ -12,9 +12,6 @@ namespace Parser @[init] def regBuiltinLevelParserAttr : IO Unit := registerBuiltinParserAttribute `builtinLevelParser `level -@[init] def regLevelParserAttribute : IO Unit := -registerBuiltinDynamicParserAttribute `levelParser `level - @[inline] def levelParser {k : ParserKind} (rbp : Nat := 0) : Parser k := categoryParser `level rbp diff --git a/stage0/src/Init/Lean/Parser/Parser.lean b/stage0/src/Init/Lean/Parser/Parser.lean index 8af1bc67e8..db0c0b6ffb 100644 --- a/stage0/src/Init/Lean/Parser/Parser.lean +++ b/stage0/src/Init/Lean/Parser/Parser.lean @@ -1395,10 +1395,11 @@ inductive ParserExtensionEntry | parser (catName : Name) (declName : Name) (k : ParserKind) (p : Parser k) : ParserExtensionEntry structure ParserExtensionState := -(tokens : TokenTable := {}) -(kinds : SyntaxNodeKindSet := {}) -(categories : ParserCategories := {}) -(newEntries : List ParserExtensionOleanEntry := []) +(tokens : TokenTable := {}) +(kinds : SyntaxNodeKindSet := {}) +(categories : ParserCategories := {}) +(newEntries : List ParserExtensionOleanEntry := []) +(nextKindIdx : Nat := 1) instance ParserExtensionState.inhabited : Inhabited ParserExtensionState := ⟨{}⟩ @@ -1590,6 +1591,18 @@ registerPersistentEnvExtension { @[init mkParserExtension] constant parserExtension : ParserExtension := arbitrary _ +partial def mkFreshKindAux (kinds : SyntaxNodeKindSet) (base : Name) : Nat → Name × Nat +| currIdx => + let candidate := base.appendIndexAfter currIdx; + if kinds.contains candidate then mkFreshKindAux (currIdx+1) + else (candidate, currIdx) + +def mkFreshKind (env : Environment) (part : Name) : Environment × Name := +let s := parserExtension.getState env; +let (kind, idx) := mkFreshKindAux s.kinds (`_kind ++ env.mainModule ++ part) s.nextKindIdx; +let env := parserExtension.setState env { nextKindIdx := idx+1, .. s }; +(env, kind) + def isParserCategory (env : Environment) (catName : Name) : Bool := (parserExtension.getState env).categories.contains catName @@ -1812,20 +1825,6 @@ mkAntiquot "fieldIdx" `fieldIdx <|> { fn := fun _ => fieldIdxFn, info := mkAtomicInfo "fieldIdx" } -/- Helper functions for defining simple parsers -/ - -def unicodeInfixR (sym : String) (asciiSym : String) (lbp : Nat) : TrailingParser := -pushLeading >> unicodeSymbol sym asciiSym lbp >> termParser (lbp - 1) - -def infixR (sym : String) (lbp : Nat) : TrailingParser := -pushLeading >> symbol sym lbp >> termParser (lbp - 1) - -def unicodeInfixL (sym : String) (asciiSym : String) (lbp : Nat) : TrailingParser := -pushLeading >> unicodeSymbol sym asciiSym lbp >> termParser lbp - -def infixL (sym : String) (lbp : Nat) : TrailingParser := -pushLeading >> symbol sym lbp >> termParser lbp - end Parser namespace Syntax diff --git a/stage0/src/Init/Lean/Parser/Syntax.lean b/stage0/src/Init/Lean/Parser/Syntax.lean index 9230134301..d3f206de5d 100644 --- a/stage0/src/Init/Lean/Parser/Syntax.lean +++ b/stage0/src/Init/Lean/Parser/Syntax.lean @@ -13,17 +13,14 @@ namespace Parser let leadingIdentAsSymbol := true; registerBuiltinParserAttribute `builtinSyntaxParser `syntax leadingIdentAsSymbol -@[init] def regSyntaxParserAttribute : IO Unit := -registerBuiltinDynamicParserAttribute `syntaxParser `syntax - @[inline] def syntaxParser {k : ParserKind} (rbp : Nat := 0) : Parser k := categoryParser `syntax rbp namespace Syntax @[builtinSyntaxParser] def paren := parser! "(" >> many1 syntaxParser >> ")" -@[builtinSyntaxParser] def cat := parser! ident >> optional (":" >> numLit) -@[builtinSyntaxParser] def atom := parser! strLit >> optional (":" >> numLit) +@[builtinSyntaxParser] def cat := parser! ident >> optional (try (":" >> numLit)) +@[builtinSyntaxParser] def atom := parser! strLit >> optional (try (":" >> numLit)) @[builtinSyntaxParser] def num := parser! nonReservedSymbol "num" @[builtinSyntaxParser] def str := parser! nonReservedSymbol "str" @[builtinSyntaxParser] def char := parser! nonReservedSymbol "char" @@ -36,7 +33,7 @@ namespace Syntax @[builtinSyntaxParser] def many := tparser! pushLeading >> symbolAux "*" none @[builtinSyntaxParser] def many1 := tparser! pushLeading >> symbolAux "+" none -@[builtinSyntaxParser] def orelse := tparser! infixR " <|> " 2 +@[builtinSyntaxParser] def orelse := tparser! pushLeading >> " <|> " >> syntaxParser 1 end Syntax diff --git a/stage0/src/Init/Lean/Parser/Tactic.lean b/stage0/src/Init/Lean/Parser/Tactic.lean index fcaf81a556..73e309d5ff 100644 --- a/stage0/src/Init/Lean/Parser/Tactic.lean +++ b/stage0/src/Init/Lean/Parser/Tactic.lean @@ -30,7 +30,7 @@ namespace Tactic @[builtinTacticParser] def «apply» := parser! nonReservedSymbol "apply " >> termParser @[builtinTacticParser] def nestedTacticBlock := parser! "begin " >> tacticSeq >> "end" @[builtinTacticParser] def nestedTacticBlockCurly := parser! "{" >> tacticSeq >> "}" -@[builtinTacticParser] def orelse := tparser! infixR " <|> " 2 +@[builtinTacticParser] def orelse := tparser! pushLeading >> " <|> " >> tacticParser 1 end Tactic diff --git a/stage0/src/Init/Lean/Parser/Term.lean b/stage0/src/Init/Lean/Parser/Term.lean index 075a3ed089..2b2c4c2ced 100644 --- a/stage0/src/Init/Lean/Parser/Term.lean +++ b/stage0/src/Init/Lean/Parser/Term.lean @@ -11,6 +11,20 @@ namespace Lean namespace Parser namespace Term +/- Helper functions for defining simple parsers -/ + +def unicodeInfixR (sym : String) (asciiSym : String) (lbp : Nat) : TrailingParser := +pushLeading >> unicodeSymbol sym asciiSym lbp >> termParser (lbp - 1) + +def infixR (sym : String) (lbp : Nat) : TrailingParser := +pushLeading >> symbol sym lbp >> termParser (lbp - 1) + +def unicodeInfixL (sym : String) (asciiSym : String) (lbp : Nat) : TrailingParser := +pushLeading >> unicodeSymbol sym asciiSym lbp >> termParser lbp + +def infixL (sym : String) (lbp : Nat) : TrailingParser := +pushLeading >> symbol sym lbp >> termParser lbp + /- Built-in parsers -/ -- NOTE: `checkNoWsBefore` should be used *before* `parser!` so that it is also applied to the generated -- antiquotation. diff --git a/stage0/src/Init/LeanExt.lean b/stage0/src/Init/LeanExt.lean index ee400a67ae..8d9e8f6d8c 100644 --- a/stage0/src/Init/LeanExt.lean +++ b/stage0/src/Init/LeanExt.lean @@ -6,6 +6,7 @@ Authors: Leonardo de Moura prelude import Init.Data.String.Basic import Init.Data.UInt +import Init.Data.Hashable namespace Lean /- @@ -23,6 +24,29 @@ inductive Name | str : Name → String → USize → Name | num : Name → Nat → USize → Name +instance Name.inhabited : Inhabited Name := +⟨Name.anonymous⟩ + +def Name.hash : Name → USize +| Name.anonymous => 1723 +| Name.str p s h => h +| Name.num p v h => h + +instance Name.hashable : Hashable Name := ⟨Name.hash⟩ + +@[export lean_name_hash] def Name.hashEx : Name → USize := Name.hash + +@[export lean_name_mk_string] +def mkNameStr (p : Name) (s : String) : Name := +Name.str p s $ mixHash (hash p) (hash s) + +@[export lean_name_mk_numeral] +def mkNameNum (p : Name) (v : Nat) : Name := +Name.num p v $ mixHash (hash p) (hash v) + +def mkNameSimple (s : String) : Name := +mkNameStr Name.anonymous s + inductive ParserKind | leading | trailing diff --git a/stage0/stdlib/CMakeLists.txt b/stage0/stdlib/CMakeLists.txt index 01bf3f49c3..42ac18bb67 100644 --- a/stage0/stdlib/CMakeLists.txt +++ b/stage0/stdlib/CMakeLists.txt @@ -1 +1 @@ -add_library (stage0 OBJECT Init/./Coe.c Init/./Control.c Init/./Control/Alternative.c Init/./Control/Applicative.c Init/./Control/Conditional.c Init/./Control/EState.c Init/./Control/Except.c Init/./Control/Functor.c Init/./Control/Id.c Init/./Control/Lift.c Init/./Control/Monad.c Init/./Control/MonadFail.c Init/./Control/Option.c Init/./Control/Reader.c Init/./Control/State.c Init/./Core.c Init/./Data.c Init/./Data/Array.c Init/./Data/Array/Basic.c Init/./Data/Array/BinSearch.c Init/./Data/Array/QSort.c Init/./Data/AssocList.c Init/./Data/Basic.c Init/./Data/BinomialHeap.c Init/./Data/BinomialHeap/Basic.c Init/./Data/ByteArray.c Init/./Data/ByteArray/Basic.c Init/./Data/Char.c Init/./Data/Char/Basic.c Init/./Data/DList.c Init/./Data/Fin.c Init/./Data/Fin/Basic.c Init/./Data/HashMap.c Init/./Data/HashMap/Basic.c Init/./Data/HashSet.c Init/./Data/Hashable.c Init/./Data/Int.c Init/./Data/Int/Basic.c Init/./Data/List.c Init/./Data/List/Basic.c Init/./Data/List/BasicAux.c Init/./Data/List/Control.c Init/./Data/List/Instances.c Init/./Data/Nat.c Init/./Data/Nat/Basic.c Init/./Data/Nat/Bitwise.c Init/./Data/Nat/Control.c Init/./Data/Nat/Div.c Init/./Data/Option.c Init/./Data/Option/Basic.c Init/./Data/Option/BasicAux.c Init/./Data/Option/Instances.c Init/./Data/PersistentArray.c Init/./Data/PersistentArray/Basic.c Init/./Data/PersistentHashMap.c Init/./Data/PersistentHashMap/Basic.c Init/./Data/PersistentHashSet.c Init/./Data/Queue.c Init/./Data/Queue/Basic.c Init/./Data/RBMap.c Init/./Data/RBMap/Basic.c Init/./Data/RBMap/BasicAux.c Init/./Data/RBTree.c Init/./Data/RBTree/Basic.c Init/./Data/Random.c Init/./Data/Repr.c Init/./Data/Stack.c Init/./Data/Stack/Basic.c Init/./Data/String.c Init/./Data/String/Basic.c Init/./Data/ToString.c Init/./Data/UInt.c Init/./Default.c Init/./Fix.c Init/./Lean.c Init/./Lean/Attributes.c Init/./Lean/AuxRecursor.c Init/./Lean/Class.c Init/./Lean/Compiler.c Init/./Lean/Compiler/ClosedTermCache.c Init/./Lean/Compiler/ConstFolding.c Init/./Lean/Compiler/ExportAttr.c Init/./Lean/Compiler/ExternAttr.c Init/./Lean/Compiler/IR.c Init/./Lean/Compiler/IR/Basic.c Init/./Lean/Compiler/IR/Borrow.c Init/./Lean/Compiler/IR/Boxing.c Init/./Lean/Compiler/IR/Checker.c Init/./Lean/Compiler/IR/CompilerM.c Init/./Lean/Compiler/IR/CtorLayout.c Init/./Lean/Compiler/IR/ElimDeadBranches.c Init/./Lean/Compiler/IR/ElimDeadVars.c Init/./Lean/Compiler/IR/EmitC.c Init/./Lean/Compiler/IR/EmitUtil.c Init/./Lean/Compiler/IR/ExpandResetReuse.c Init/./Lean/Compiler/IR/Format.c Init/./Lean/Compiler/IR/FreeVars.c Init/./Lean/Compiler/IR/LiveVars.c Init/./Lean/Compiler/IR/NormIds.c Init/./Lean/Compiler/IR/PushProj.c Init/./Lean/Compiler/IR/RC.c Init/./Lean/Compiler/IR/ResetReuse.c Init/./Lean/Compiler/IR/SimpCase.c Init/./Lean/Compiler/IR/UnboxResult.c Init/./Lean/Compiler/ImplementedByAttr.c Init/./Lean/Compiler/InitAttr.c Init/./Lean/Compiler/InlineAttrs.c Init/./Lean/Compiler/NameMangling.c Init/./Lean/Compiler/NeverExtractAttr.c Init/./Lean/Compiler/Specialize.c Init/./Lean/Compiler/Util.c Init/./Lean/Data/Format.c Init/./Lean/Data/KVMap.c Init/./Lean/Data/LBool.c Init/./Lean/Data/LOption.c Init/./Lean/Data/Name.c Init/./Lean/Data/NameGenerator.c Init/./Lean/Data/Occurrences.c Init/./Lean/Data/Options.c Init/./Lean/Data/Position.c Init/./Lean/Data/SMap.c Init/./Lean/Data/Trie.c Init/./Lean/Declaration.c Init/./Lean/Elab.c Init/./Lean/Elab/Alias.c Init/./Lean/Elab/BuiltinNotation.c Init/./Lean/Elab/Command.c Init/./Lean/Elab/DeclModifiers.c Init/./Lean/Elab/Declaration.c Init/./Lean/Elab/Definition.c Init/./Lean/Elab/ElabStrategyAttrs.c Init/./Lean/Elab/Exception.c Init/./Lean/Elab/Frontend.c Init/./Lean/Elab/Import.c Init/./Lean/Elab/Level.c Init/./Lean/Elab/Log.c Init/./Lean/Elab/Quotation.c Init/./Lean/Elab/ResolveName.c Init/./Lean/Elab/Tactic.c Init/./Lean/Elab/Term.c Init/./Lean/Elab/TermApp.c Init/./Lean/Elab/TermBinders.c Init/./Lean/Elab/Util.c Init/./Lean/Environment.c Init/./Lean/EqnCompiler.c Init/./Lean/EqnCompiler/MatchPattern.c Init/./Lean/Eval.c Init/./Lean/Expr.c Init/./Lean/HeadIndex.c Init/./Lean/Hygiene.c Init/./Lean/Level.c Init/./Lean/Linter.c Init/./Lean/LocalContext.c Init/./Lean/Message.c Init/./Lean/Meta.c Init/./Lean/Meta/AbstractMVars.c Init/./Lean/Meta/AppBuilder.c Init/./Lean/Meta/Basic.c Init/./Lean/Meta/Check.c Init/./Lean/Meta/DiscrTree.c Init/./Lean/Meta/DiscrTreeTypes.c Init/./Lean/Meta/Exception.c Init/./Lean/Meta/ExprDefEq.c Init/./Lean/Meta/FunInfo.c Init/./Lean/Meta/InferType.c Init/./Lean/Meta/Instances.c Init/./Lean/Meta/KAbstract.c Init/./Lean/Meta/LevelDefEq.c Init/./Lean/Meta/Message.c Init/./Lean/Meta/Offset.c Init/./Lean/Meta/Reduce.c Init/./Lean/Meta/SynthInstance.c Init/./Lean/Meta/Tactic.c Init/./Lean/Meta/Tactic/Assumption.c Init/./Lean/Meta/Tactic/Intro.c Init/./Lean/Meta/Tactic/Util.c Init/./Lean/Meta/WHNF.c Init/./Lean/MetavarContext.c Init/./Lean/Modifiers.c Init/./Lean/Parser.c Init/./Lean/Parser/Command.c Init/./Lean/Parser/Identifier.c Init/./Lean/Parser/Level.c Init/./Lean/Parser/Module.c Init/./Lean/Parser/Parser.c Init/./Lean/Parser/Syntax.c Init/./Lean/Parser/Tactic.c Init/./Lean/Parser/Term.c Init/./Lean/Parser/Transform.c Init/./Lean/ProjFns.c Init/./Lean/ReducibilityAttrs.c Init/./Lean/Runtime.c Init/./Lean/Scopes.c Init/./Lean/Structure.c Init/./Lean/Syntax.c Init/./Lean/ToExpr.c Init/./Lean/Util/CollectFVars.c Init/./Lean/Util/CollectLevelParams.c Init/./Lean/Util/MonadCache.c Init/./Lean/Util/Path.c Init/./Lean/Util/Profile.c Init/./Lean/Util/RecDepth.c Init/./Lean/Util/Sorry.c Init/./Lean/Util/Trace.c Init/./Lean/Util/WHNF.c Init/./LeanExt.c Init/./System.c Init/./System/FilePath.c Init/./System/IO.c Init/./System/IOError.c Init/./System/Platform.c Init/./Util.c Init/./WF.c) +add_library (stage0 OBJECT Init/./Coe.c Init/./Control.c Init/./Control/Alternative.c Init/./Control/Applicative.c Init/./Control/Conditional.c Init/./Control/EState.c Init/./Control/Except.c Init/./Control/Functor.c Init/./Control/Id.c Init/./Control/Lift.c Init/./Control/Monad.c Init/./Control/MonadFail.c Init/./Control/Option.c Init/./Control/Reader.c Init/./Control/State.c Init/./Core.c Init/./Data.c Init/./Data/Array.c Init/./Data/Array/Basic.c Init/./Data/Array/BinSearch.c Init/./Data/Array/QSort.c Init/./Data/AssocList.c Init/./Data/Basic.c Init/./Data/BinomialHeap.c Init/./Data/BinomialHeap/Basic.c Init/./Data/ByteArray.c Init/./Data/ByteArray/Basic.c Init/./Data/Char.c Init/./Data/Char/Basic.c Init/./Data/DList.c Init/./Data/Fin.c Init/./Data/Fin/Basic.c Init/./Data/HashMap.c Init/./Data/HashMap/Basic.c Init/./Data/HashSet.c Init/./Data/Hashable.c Init/./Data/Int.c Init/./Data/Int/Basic.c Init/./Data/List.c Init/./Data/List/Basic.c Init/./Data/List/BasicAux.c Init/./Data/List/Control.c Init/./Data/List/Instances.c Init/./Data/Nat.c Init/./Data/Nat/Basic.c Init/./Data/Nat/Bitwise.c Init/./Data/Nat/Control.c Init/./Data/Nat/Div.c Init/./Data/Option.c Init/./Data/Option/Basic.c Init/./Data/Option/BasicAux.c Init/./Data/Option/Instances.c Init/./Data/PersistentArray.c Init/./Data/PersistentArray/Basic.c Init/./Data/PersistentHashMap.c Init/./Data/PersistentHashMap/Basic.c Init/./Data/PersistentHashSet.c Init/./Data/Queue.c Init/./Data/Queue/Basic.c Init/./Data/RBMap.c Init/./Data/RBMap/Basic.c Init/./Data/RBMap/BasicAux.c Init/./Data/RBTree.c Init/./Data/RBTree/Basic.c Init/./Data/Random.c Init/./Data/Repr.c Init/./Data/Stack.c Init/./Data/Stack/Basic.c Init/./Data/String.c Init/./Data/String/Basic.c Init/./Data/ToString.c Init/./Data/UInt.c Init/./Default.c Init/./Fix.c Init/./Lean.c Init/./Lean/Attributes.c Init/./Lean/AuxRecursor.c Init/./Lean/Class.c Init/./Lean/Compiler.c Init/./Lean/Compiler/ClosedTermCache.c Init/./Lean/Compiler/ConstFolding.c Init/./Lean/Compiler/ExportAttr.c Init/./Lean/Compiler/ExternAttr.c Init/./Lean/Compiler/IR.c Init/./Lean/Compiler/IR/Basic.c Init/./Lean/Compiler/IR/Borrow.c Init/./Lean/Compiler/IR/Boxing.c Init/./Lean/Compiler/IR/Checker.c Init/./Lean/Compiler/IR/CompilerM.c Init/./Lean/Compiler/IR/CtorLayout.c Init/./Lean/Compiler/IR/ElimDeadBranches.c Init/./Lean/Compiler/IR/ElimDeadVars.c Init/./Lean/Compiler/IR/EmitC.c Init/./Lean/Compiler/IR/EmitUtil.c Init/./Lean/Compiler/IR/ExpandResetReuse.c Init/./Lean/Compiler/IR/Format.c Init/./Lean/Compiler/IR/FreeVars.c Init/./Lean/Compiler/IR/LiveVars.c Init/./Lean/Compiler/IR/NormIds.c Init/./Lean/Compiler/IR/PushProj.c Init/./Lean/Compiler/IR/RC.c Init/./Lean/Compiler/IR/ResetReuse.c Init/./Lean/Compiler/IR/SimpCase.c Init/./Lean/Compiler/IR/UnboxResult.c Init/./Lean/Compiler/ImplementedByAttr.c Init/./Lean/Compiler/InitAttr.c Init/./Lean/Compiler/InlineAttrs.c Init/./Lean/Compiler/NameMangling.c Init/./Lean/Compiler/NeverExtractAttr.c Init/./Lean/Compiler/Specialize.c Init/./Lean/Compiler/Util.c Init/./Lean/Data/Format.c Init/./Lean/Data/KVMap.c Init/./Lean/Data/LBool.c Init/./Lean/Data/LOption.c Init/./Lean/Data/Name.c Init/./Lean/Data/NameGenerator.c Init/./Lean/Data/Occurrences.c Init/./Lean/Data/Options.c Init/./Lean/Data/Position.c Init/./Lean/Data/SMap.c Init/./Lean/Data/Trie.c Init/./Lean/Declaration.c Init/./Lean/Elab.c Init/./Lean/Elab/Alias.c Init/./Lean/Elab/BuiltinNotation.c Init/./Lean/Elab/Command.c Init/./Lean/Elab/DeclModifiers.c Init/./Lean/Elab/Declaration.c Init/./Lean/Elab/Definition.c Init/./Lean/Elab/ElabStrategyAttrs.c Init/./Lean/Elab/Exception.c Init/./Lean/Elab/Frontend.c Init/./Lean/Elab/Import.c Init/./Lean/Elab/Level.c Init/./Lean/Elab/Log.c Init/./Lean/Elab/Quotation.c Init/./Lean/Elab/ResolveName.c Init/./Lean/Elab/Syntax.c Init/./Lean/Elab/Tactic.c Init/./Lean/Elab/Term.c Init/./Lean/Elab/TermApp.c Init/./Lean/Elab/TermBinders.c Init/./Lean/Elab/Util.c Init/./Lean/Environment.c Init/./Lean/EqnCompiler.c Init/./Lean/EqnCompiler/MatchPattern.c Init/./Lean/Eval.c Init/./Lean/Expr.c Init/./Lean/HeadIndex.c Init/./Lean/Hygiene.c Init/./Lean/Level.c Init/./Lean/Linter.c Init/./Lean/LocalContext.c Init/./Lean/Message.c Init/./Lean/Meta.c Init/./Lean/Meta/AbstractMVars.c Init/./Lean/Meta/AppBuilder.c Init/./Lean/Meta/Basic.c Init/./Lean/Meta/Check.c Init/./Lean/Meta/DiscrTree.c Init/./Lean/Meta/DiscrTreeTypes.c Init/./Lean/Meta/Exception.c Init/./Lean/Meta/ExprDefEq.c Init/./Lean/Meta/FunInfo.c Init/./Lean/Meta/InferType.c Init/./Lean/Meta/Instances.c Init/./Lean/Meta/KAbstract.c Init/./Lean/Meta/LevelDefEq.c Init/./Lean/Meta/Message.c Init/./Lean/Meta/Offset.c Init/./Lean/Meta/Reduce.c Init/./Lean/Meta/SynthInstance.c Init/./Lean/Meta/Tactic.c Init/./Lean/Meta/Tactic/Assumption.c Init/./Lean/Meta/Tactic/Intro.c Init/./Lean/Meta/Tactic/Util.c Init/./Lean/Meta/WHNF.c Init/./Lean/MetavarContext.c Init/./Lean/Modifiers.c Init/./Lean/Parser.c Init/./Lean/Parser/Command.c Init/./Lean/Parser/Identifier.c Init/./Lean/Parser/Level.c Init/./Lean/Parser/Module.c Init/./Lean/Parser/Parser.c Init/./Lean/Parser/Syntax.c Init/./Lean/Parser/Tactic.c Init/./Lean/Parser/Term.c Init/./Lean/Parser/Transform.c Init/./Lean/ProjFns.c Init/./Lean/ReducibilityAttrs.c Init/./Lean/Runtime.c Init/./Lean/Scopes.c Init/./Lean/Structure.c Init/./Lean/Syntax.c Init/./Lean/ToExpr.c Init/./Lean/Util/CollectFVars.c Init/./Lean/Util/CollectLevelParams.c Init/./Lean/Util/MonadCache.c Init/./Lean/Util/Path.c Init/./Lean/Util/Profile.c Init/./Lean/Util/RecDepth.c Init/./Lean/Util/Sorry.c Init/./Lean/Util/Trace.c Init/./Lean/Util/WHNF.c Init/./LeanExt.c Init/./System.c Init/./System/FilePath.c Init/./System/IO.c Init/./System/IOError.c Init/./System/Platform.c Init/./Util.c Init/./WF.c) diff --git a/stage0/stdlib/Init/Default.c b/stage0/stdlib/Init/Default.c index 5724673617..433cae82de 100644 --- a/stage0/stdlib/Init/Default.c +++ b/stage0/stdlib/Init/Default.c @@ -1,6 +1,6 @@ // Lean compiler output // Module: Init.Default -// Imports: Init.Core Init.Control Init.Data.Basic Init.Coe Init.WF Init.Data Init.System Init.Util Init.Fix +// Imports: Init.Core Init.Control Init.Data.Basic Init.Coe Init.WF Init.Data Init.System Init.Util Init.Fix Init.LeanExt #include "runtime/lean.h" #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -22,6 +22,7 @@ lean_object* initialize_Init_Data(lean_object*); lean_object* initialize_Init_System(lean_object*); lean_object* initialize_Init_Util(lean_object*); lean_object* initialize_Init_Fix(lean_object*); +lean_object* initialize_Init_LeanExt(lean_object*); static bool _G_initialized = false; lean_object* initialize_Init_Default(lean_object* w) { lean_object * res; @@ -54,6 +55,9 @@ lean_dec_ref(res); res = initialize_Init_Fix(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +res = initialize_Init_LeanExt(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/Init/Lean/Data/Name.c b/stage0/stdlib/Init/Lean/Data/Name.c index 4e9afb3d5d..ec3fbf16d5 100644 --- a/stage0/stdlib/Init/Lean/Data/Name.c +++ b/stage0/stdlib/Init/Lean/Data/Name.c @@ -40,8 +40,6 @@ lean_object* l_Lean_Name_HasToString___closed__1; lean_object* l_Lean_mkNameSimple(lean_object*); lean_object* lean_string_append(lean_object*, lean_object*); uint8_t l_Lean_Name_isPrefixOf(lean_object*, lean_object*); -lean_object* l_Lean_Name_inhabited; -lean_object* l_Lean_Name_hashable___closed__1; lean_object* l_Lean_Name_lt___boxed(lean_object*, lean_object*); lean_object* l_RBNode_find___main___at_Lean_NameSet_contains___spec__1(lean_object*, lean_object*); lean_object* l_String_splitOn(lean_object*, lean_object*); @@ -53,7 +51,6 @@ lean_object* l_Lean_Name_lt___main___boxed(lean_object*, lean_object*); lean_object* lean_nat_add(lean_object*, lean_object*); lean_object* l_RBNode_insert___at_Lean_NameMap_insert___spec__1(lean_object*); lean_object* l_Lean_Name_toStringWithSep(lean_object*, lean_object*); -lean_object* l_Lean_Name_hashable; lean_object* l_Lean_NameMap_insert___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Name_HasAppend___closed__1; lean_object* l_RBNode_insert___at_Lean_NameMap_insert___spec__1___rarg(lean_object*, lean_object*, lean_object*); @@ -69,8 +66,6 @@ lean_object* l_Lean_Name_append___main(lean_object*, lean_object*); lean_object* l_Lean_Name_components_x27(lean_object*); lean_object* l_Lean_NameMap_contains(lean_object*); lean_object* l_Lean_Name_toString(lean_object*); -lean_object* l_Lean_Name_hashEx___boxed(lean_object*); -size_t lean_name_hash(lean_object*); lean_object* l_RBNode_find___main___at_Lean_NameMap_contains___spec__1(lean_object*); uint8_t l_Lean_Name_isInternal(lean_object*); lean_object* l_Lean_Name_appendIndexAfter(lean_object*, lean_object*); @@ -90,7 +85,6 @@ lean_object* l_Lean_Name_toStringWithSep___boxed(lean_object*, lean_object*); lean_object* l_Lean_Name_isInternal___main___boxed(lean_object*); lean_object* l_RBNode_insert___at_Lean_NameSet_insert___spec__1(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkNameSet; -size_t lean_usize_of_nat(lean_object*); lean_object* l_Lean_Name_quickLtAux___main___boxed(lean_object*, lean_object*); lean_object* l_Lean_Name_replacePrefix___main(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_stringToName___closed__1; @@ -121,7 +115,6 @@ lean_object* l_RBNode_setBlack___rarg(lean_object*); lean_object* l_Lean_Name_HasBeq___closed__1; lean_object* l_Lean_Name_append___main___boxed(lean_object*, lean_object*); lean_object* l_String_trim(lean_object*); -size_t lean_usize_mix_hash(size_t, size_t); uint8_t l_Lean_NameSet_contains(lean_object*, lean_object*); lean_object* l_Lean_Name_isPrefixOf___boxed(lean_object*, lean_object*); lean_object* l_Lean_NameSet_insert(lean_object*, lean_object*); @@ -133,122 +126,14 @@ lean_object* l_Lean_mkNameMap(lean_object*); lean_object* l_RBNode_find___main___at_Lean_NameMap_find___spec__1___rarg(lean_object*, lean_object*); lean_object* l_Lean_Name_toStringWithSep___main(lean_object*, lean_object*); lean_object* l_Lean_NameMap_find___rarg___boxed(lean_object*, lean_object*); -lean_object* l_Lean_Name_hash___boxed(lean_object*); lean_object* l_Lean_Name_replacePrefix(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Name_components(lean_object*); lean_object* lean_name_mk_numeral(lean_object*, lean_object*); -size_t lean_string_hash(lean_object*); lean_object* l_RBNode_find___main___at_Lean_NameMap_find___spec__1___rarg___boxed(lean_object*, lean_object*); lean_object* l_Lean_Name_append___boxed(lean_object*, lean_object*); uint8_t lean_string_dec_lt(lean_object*, lean_object*); uint8_t lean_string_dec_eq(lean_object*, lean_object*); uint8_t lean_nat_dec_lt(lean_object*, lean_object*); -lean_object* _init_l_Lean_Name_inhabited() { -_start: -{ -lean_object* x_1; -x_1 = lean_box(0); -return x_1; -} -} -size_t l_Lean_Name_hash(lean_object* x_1) { -_start: -{ -if (lean_obj_tag(x_1) == 0) -{ -size_t x_2; -x_2 = 1723; -return x_2; -} -else -{ -size_t x_3; -x_3 = lean_ctor_get_usize(x_1, 2); -return x_3; -} -} -} -lean_object* l_Lean_Name_hash___boxed(lean_object* x_1) { -_start: -{ -size_t x_2; lean_object* x_3; -x_2 = l_Lean_Name_hash(x_1); -lean_dec(x_1); -x_3 = lean_box_usize(x_2); -return x_3; -} -} -lean_object* _init_l_Lean_Name_hashable___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Name_hash___boxed), 1, 0); -return x_1; -} -} -lean_object* _init_l_Lean_Name_hashable() { -_start: -{ -lean_object* x_1; -x_1 = l_Lean_Name_hashable___closed__1; -return x_1; -} -} -size_t lean_name_hash(lean_object* x_1) { -_start: -{ -size_t x_2; -x_2 = l_Lean_Name_hash(x_1); -lean_dec(x_1); -return x_2; -} -} -lean_object* l_Lean_Name_hashEx___boxed(lean_object* x_1) { -_start: -{ -size_t x_2; lean_object* x_3; -x_2 = lean_name_hash(x_1); -x_3 = lean_box_usize(x_2); -return x_3; -} -} -lean_object* lean_name_mk_string(lean_object* x_1, lean_object* x_2) { -_start: -{ -size_t x_3; size_t x_4; size_t x_5; lean_object* x_6; -x_3 = l_Lean_Name_hash(x_1); -x_4 = lean_string_hash(x_2); -x_5 = lean_usize_mix_hash(x_3, x_4); -x_6 = lean_alloc_ctor(1, 2, sizeof(size_t)*1); -lean_ctor_set(x_6, 0, x_1); -lean_ctor_set(x_6, 1, x_2); -lean_ctor_set_usize(x_6, 2, x_5); -return x_6; -} -} -lean_object* lean_name_mk_numeral(lean_object* x_1, lean_object* x_2) { -_start: -{ -size_t x_3; size_t x_4; size_t x_5; lean_object* x_6; -x_3 = l_Lean_Name_hash(x_1); -x_4 = lean_usize_of_nat(x_2); -x_5 = lean_usize_mix_hash(x_3, x_4); -x_6 = lean_alloc_ctor(2, 2, sizeof(size_t)*1); -lean_ctor_set(x_6, 0, x_1); -lean_ctor_set(x_6, 1, x_2); -lean_ctor_set_usize(x_6, 2, x_5); -return x_6; -} -} -lean_object* l_Lean_mkNameSimple(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; -x_2 = lean_box(0); -x_3 = lean_name_mk_string(x_2, x_1); -return x_3; -} -} lean_object* _init_l_Lean_stringToName___closed__1() { _start: { @@ -9108,12 +8993,6 @@ lean_dec_ref(res); res = initialize_Init_Data_RBTree(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l_Lean_Name_inhabited = _init_l_Lean_Name_inhabited(); -lean_mark_persistent(l_Lean_Name_inhabited); -l_Lean_Name_hashable___closed__1 = _init_l_Lean_Name_hashable___closed__1(); -lean_mark_persistent(l_Lean_Name_hashable___closed__1); -l_Lean_Name_hashable = _init_l_Lean_Name_hashable(); -lean_mark_persistent(l_Lean_Name_hashable); l_Lean_stringToName___closed__1 = _init_l_Lean_stringToName___closed__1(); lean_mark_persistent(l_Lean_stringToName___closed__1); l_Lean_stringToName = _init_l_Lean_stringToName(); diff --git a/stage0/stdlib/Init/Lean/Elab.c b/stage0/stdlib/Init/Lean/Elab.c index aa4544df51..37e730a4bd 100644 --- a/stage0/stdlib/Init/Lean/Elab.c +++ b/stage0/stdlib/Init/Lean/Elab.c @@ -1,6 +1,6 @@ // Lean compiler output // Module: Init.Lean.Elab -// Imports: Init.Lean.Elab.Import Init.Lean.Elab.Exception Init.Lean.Elab.ElabStrategyAttrs Init.Lean.Elab.Command Init.Lean.Elab.Term Init.Lean.Elab.TermApp Init.Lean.Elab.TermBinders Init.Lean.Elab.Quotation Init.Lean.Elab.Frontend Init.Lean.Elab.BuiltinNotation Init.Lean.Elab.Declaration Init.Lean.Elab.Tactic +// Imports: Init.Lean.Elab.Import Init.Lean.Elab.Exception Init.Lean.Elab.ElabStrategyAttrs Init.Lean.Elab.Command Init.Lean.Elab.Term Init.Lean.Elab.TermApp Init.Lean.Elab.TermBinders Init.Lean.Elab.Quotation Init.Lean.Elab.Frontend Init.Lean.Elab.BuiltinNotation Init.Lean.Elab.Declaration Init.Lean.Elab.Tactic Init.Lean.Elab.Syntax #include "runtime/lean.h" #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -25,6 +25,7 @@ lean_object* initialize_Init_Lean_Elab_Frontend(lean_object*); lean_object* initialize_Init_Lean_Elab_BuiltinNotation(lean_object*); lean_object* initialize_Init_Lean_Elab_Declaration(lean_object*); lean_object* initialize_Init_Lean_Elab_Tactic(lean_object*); +lean_object* initialize_Init_Lean_Elab_Syntax(lean_object*); static bool _G_initialized = false; lean_object* initialize_Init_Lean_Elab(lean_object* w) { lean_object * res; @@ -66,6 +67,9 @@ lean_dec_ref(res); res = initialize_Init_Lean_Elab_Tactic(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +res = initialize_Init_Lean_Elab_Syntax(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/Init/Lean/Elab/BuiltinNotation.c b/stage0/stdlib/Init/Lean/Elab/BuiltinNotation.c index 0618420a28..5f90eff8c1 100644 --- a/stage0/stdlib/Init/Lean/Elab/BuiltinNotation.c +++ b/stage0/stdlib/Init/Lean/Elab/BuiltinNotation.c @@ -54,6 +54,7 @@ lean_object* l___regBuiltinTermElab_Lean_Elab_Term_elabOr___closed__3; lean_object* l_Lean_Elab_Term_elabseqLeft___closed__2; lean_object* l_Lean_Elab_Term_elabMod___closed__2; lean_object* l_Lean_Elab_Term_elabPow(lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___lambda__3___closed__1; lean_object* l_Lean_Elab_Term_elabModN___closed__3; lean_object* l_Lean_Elab_Term_elabBOr___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabInfix(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -68,11 +69,11 @@ lean_object* l___regBuiltinTermElab_Lean_Elab_Term_elabSubtype___closed__2; lean_object* l_Lean_Elab_Term_elabInfixOp(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabParserMacro___lambda__1___closed__18; lean_object* l___regBuiltinTermElab_Lean_Elab_Term_elabBNe(lean_object*); -extern lean_object* l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__1; lean_object* l_Lean_Elab_Term_elabAnoymousCtor___closed__15; lean_object* l_Lean_Elab_Term_getDeclName_x3f(lean_object*, lean_object*); lean_object* l___regBuiltinTermElab_Lean_Elab_Term_elabOrElse___closed__1; lean_object* l_Lean_Elab_Term_elabParserMacro___lambda__1___closed__14; +extern lean_object* l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__1; lean_object* l_Lean_Elab_Term_elabBOr___closed__1; lean_object* l_Lean_Elab_Term_elabMul___closed__1; lean_object* l___regBuiltinTermElab_Lean_Elab_Term_elabSub___closed__1; @@ -91,20 +92,19 @@ lean_object* l_Lean_Elab_Term_elabIf___lambda__1(lean_object*, lean_object*, lea extern lean_object* l_Lean_Parser_Term_show___elambda__1___closed__2; lean_object* l_Lean_Elab_Term_elabSubtype___lambda__1___closed__9; lean_object* l_Lean_Elab_Term_elabMul___closed__2; +extern lean_object* l___private_Init_Lean_Elab_Quotation_9__explodeHeadPat___lambda__1___closed__3; extern lean_object* l_Lean_Parser_Term_anonymousCtor___elambda__1___closed__2; extern lean_object* l_Array_empty___closed__1; lean_object* l_Lean_Elab_Term_elabPow___closed__3; lean_object* lean_environment_find(lean_object*, lean_object*); lean_object* l___regBuiltinTermElab_Lean_Elab_Term_elabBAnd___closed__3; lean_object* l_Lean_Elab_Term_elabMod___closed__1; -lean_object* l_Lean_Elab_Term_elabParserMacro___lambda__1___closed__34; lean_object* l___regBuiltinTermElab_Lean_Elab_Term_elabIff___closed__1; lean_object* l___regBuiltinTermElab_Lean_Elab_Term_elabMul___closed__3; lean_object* l_Lean_Elab_Term_elabIf___lambda__1___closed__6; lean_object* l_Lean_Elab_Term_elabHave___lambda__1(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Term_fromTerm___elambda__1___closed__2; extern lean_object* l_Lean_Parser_Term_mul___elambda__1___closed__1; -extern lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__56; lean_object* l___regBuiltinTermElab_Lean_Elab_Term_elabEquiv___closed__1; lean_object* l___regBuiltinTermElab_Lean_Elab_Term_elabAdd(lean_object*); extern lean_object* l_Lean_Parser_Term_andM___elambda__1___closed__1; @@ -128,11 +128,9 @@ extern lean_object* l_Lean_Parser_Term_seqRight___elambda__1___closed__2; lean_object* l___regBuiltinTermElab_Lean_Elab_Term_elabAndThen(lean_object*); lean_object* l_Lean_Elab_Term_elabSubtype___lambda__1___boxed(lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltinTermElab_Lean_Elab_Term_elabCons___closed__1; -extern lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__64; lean_object* lean_array_push(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabSubtype___lambda__1___closed__1; lean_object* lean_array_get_size(lean_object*); -extern lean_object* l___private_Init_Lean_Elab_Quotation_8__explodeHeadPat___lambda__1___closed__3; lean_object* l___regBuiltinTermElab_Lean_Elab_Term_elabEquiv___closed__2; lean_object* l_Lean_Elab_Term_elabModN(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltinTermElab_Lean_Elab_Term_elabMap(lean_object*); @@ -173,7 +171,6 @@ lean_object* l___regBuiltinTermElab_Lean_Elab_Term_elabseq___closed__1; lean_object* l___private_Init_Lean_Elab_Quotation_1__quoteName___main(lean_object*); lean_object* l___regBuiltinTermElab_Lean_Elab_Term_elabseqRight(lean_object*); extern lean_object* l___private_Init_Lean_Elab_Term_8__expandCDot___closed__4; -extern lean_object* l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__15; lean_object* l___regBuiltinTermElab_Lean_Elab_Term_elabBAnd(lean_object*); lean_object* l___regBuiltinTermElab_Lean_Elab_Term_elabHEq(lean_object*); lean_object* l___regBuiltinTermElab_Lean_Elab_Term_elabMapConstRev(lean_object*); @@ -186,6 +183,7 @@ lean_object* l___regBuiltinTermElab_Lean_Elab_Term_elabMapConst___closed__1; extern lean_object* l_Lean_Parser_Term_or___elambda__1___closed__2; lean_object* l_Lean_Elab_Term_elabseq___closed__1; lean_object* l_Lean_Elab_Term_elabParserMacro___lambda__1___closed__19; +extern lean_object* l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__31; extern lean_object* l_Lean_Parser_Term_proj___elambda__1___closed__2; extern lean_object* l_Lean_Parser_Term_add___elambda__1___closed__1; extern lean_object* l_Lean_Parser_Term_add___elambda__1___closed__2; @@ -205,9 +203,11 @@ lean_object* l_Lean_Elab_Term_tryPostponeIfNoneOrMVar(lean_object*, lean_object* lean_object* l___regBuiltinTermElab_Lean_Elab_Term_elabHave___closed__2; extern lean_object* l_Lean_Parser_Term_div___elambda__1___closed__2; lean_object* lean_array_fget(lean_object*, lean_object*); +extern lean_object* l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__33; lean_object* l___regBuiltinTermElab_Lean_Elab_Term_elabGT___closed__1; lean_object* l_Lean_Elab_Term_elabTParserMacro___lambda__1(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabseq___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___lambda__3___closed__3; uint8_t lean_nat_dec_eq(lean_object*, lean_object*); lean_object* l___regBuiltinTermElab_Lean_Elab_Term_elabModN(lean_object*); lean_object* l_Lean_Elab_Term_elabWhere___closed__1; @@ -217,7 +217,6 @@ lean_object* l_Lean_Elab_Term_elabseq___closed__2; extern lean_object* l_Lean_Parser_Term_band___elambda__1___closed__2; lean_object* l___regBuiltinTermElab_Lean_Elab_Term_elabseqRight___closed__3; lean_object* l___regBuiltinTermElab_Lean_Elab_Term_elabHEq___closed__1; -extern lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__36; extern lean_object* l_Lean_Parser_Term_id___elambda__1___closed__2; lean_object* l___regBuiltinTermElab_Lean_Elab_Term_elabSub(lean_object*); lean_object* l___regBuiltinTermElab_Lean_Elab_Term_elabGT___closed__2; @@ -240,7 +239,6 @@ extern lean_object* l_Lean_Parser_Term_div___elambda__1___closed__1; extern lean_object* l_Lean_Parser_Term_tparser_x21___elambda__1___closed__2; lean_object* l_Lean_Elab_Term_elabShow___closed__1; lean_object* l___regBuiltinTermElab_Lean_Elab_Term_elabSubtype___closed__3; -lean_object* l_Lean_Elab_Term_elabParserMacro___lambda__1___closed__35; extern lean_object* l_Lean_Parser_Term_ge___elambda__1___closed__2; lean_object* l_Lean_Elab_Term_elabseq___closed__3; lean_object* l___regBuiltinTermElab_Lean_Elab_Term_elabseqLeft___closed__2; @@ -275,10 +273,12 @@ lean_object* l_Lean_Elab_Term_elabTParserMacro___closed__1; lean_object* l___regBuiltinTermElab_Lean_Elab_Term_elabShow___closed__3; lean_object* l_List_head_x21___at_Lean_Elab_Term_elabAnoymousCtor___spec__1(lean_object*); lean_object* l_Lean_Elab_Term_ElabFComp(lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__2___closed__6; lean_object* l___regBuiltinTermElab_Lean_Elab_Term_elabDiv___closed__3; lean_object* l___regBuiltinTermElab_Lean_Elab_Term_elabBNe___closed__3; lean_object* l_Lean_Elab_Term_elabProd___boxed(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Term_mod___elambda__1___closed__1; +extern lean_object* l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__15; lean_object* l_Lean_Elab_Term_elabMapRev___closed__1; lean_object* l___regBuiltinTermElab_Lean_Elab_Term_elabOrM___closed__2; lean_object* l_Lean_Elab_Term_elabTParserMacro___lambda__1___closed__7; @@ -322,7 +322,6 @@ extern lean_object* l_Lean_Parser_Term_iff___elambda__1___closed__2; lean_object* l___regBuiltinTermElab_Lean_Elab_Term_elabAppend___closed__3; lean_object* l_Lean_Elab_Term_elabLE(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabDollar___closed__1; -extern lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__31; lean_object* l_Lean_Elab_Term_elabOr___closed__1; lean_object* l_Lean_Elab_Term_elabTParserMacro___lambda__1___closed__3; lean_object* l_Lean_Elab_Term_elabMap___closed__3; @@ -367,8 +366,8 @@ lean_object* l_Lean_Elab_Term_elabMap___closed__1; lean_object* l_Lean_Elab_Term_elabParserMacro___lambda__1___closed__26; lean_object* l_Lean_Elab_Term_elabAnd___closed__2; extern lean_object* l_Lean_Parser_Term_mapConstRev___elambda__1___closed__2; -extern lean_object* l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__3___closed__1; lean_object* l_Lean_Elab_Term_elabIf___lambda__1___closed__8; +extern lean_object* l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__10; lean_object* l_Lean_Elab_Term_elabMapConstRev___closed__1; lean_object* l___regBuiltinTermElab_Lean_Elab_Term_elabPow___closed__1; lean_object* l___regBuiltinTermElab_Lean_Elab_Term_elabDollarProj___closed__2; @@ -435,6 +434,7 @@ extern uint8_t l___private_Init_Lean_Elab_Term_7__hasCDot___main___closed__1; lean_object* l_Lean_Elab_Term_elabLE___closed__3; lean_object* l___regBuiltinTermElab_Lean_Elab_Term_elabEq___closed__1; lean_object* l_Lean_Elab_Term_elabLT(lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__30; lean_object* l___regBuiltinTermElab_Lean_Elab_Term_elabBEq___closed__3; lean_object* l___regBuiltinTermElab_Lean_Elab_Term_elabseqLeft___closed__3; lean_object* l___regBuiltinTermElab_Lean_Elab_Term_elabBOr(lean_object*); @@ -447,6 +447,7 @@ lean_object* l_Lean_Elab_Term_elabLE___closed__4; lean_object* l_Lean_Elab_Term_elabOrM___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabIff___closed__1; lean_object* l___regBuiltinTermElab_Lean_Elab_Term_elabCons___closed__3; +extern lean_object* l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__53; extern lean_object* l_Lean_Parser_Term_paren___elambda__1___closed__1; lean_object* l___regBuiltinTermElab_Lean_Elab_Term_elabDollarProj___closed__3; lean_object* l_Lean_Elab_Term_elabSubtype___closed__1; @@ -483,6 +484,7 @@ lean_object* l_Lean_Elab_Term_elabParserMacro___lambda__1___closed__1; lean_object* l___regBuiltinTermElab_Lean_Elab_Term_elabOrM___closed__3; lean_object* l_Lean_Elab_Term_elabParserMacro___closed__1; lean_object* l_Lean_Elab_Term_ElabFComp___closed__3; +extern lean_object* l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__2___closed__4; lean_object* l_Lean_Elab_Term_elabAndThen___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltinTermElab_Lean_Elab_Term_elabseqRight___closed__2; extern lean_object* l_Lean_Parser_Term_and___elambda__1___closed__2; @@ -493,7 +495,6 @@ lean_object* l___regBuiltinTermElab_Lean_Elab_Term_elabGT(lean_object*); extern lean_object* l_Lean_Parser_Term_mapRev___elambda__1___closed__1; lean_object* l_Lean_Elab_Term_elabSubtype___lambda__1___closed__6; lean_object* l_Lean_Elab_Term_elabGT___closed__2; -extern lean_object* l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__10; extern lean_object* l_Lean_mkOptionalNode___closed__1; lean_object* l_Lean_Expr_consumeMData___main(lean_object*); lean_object* l_Lean_Elab_Term_elabGT___closed__1; @@ -511,6 +512,7 @@ lean_object* l_Lean_Elab_Term_elabAnoymousCtor(lean_object*, lean_object*, lean_ lean_object* l_Lean_Elab_Term_elabAndThen___closed__2; lean_object* l___regBuiltinTermElab_Lean_Elab_Term_elabEquiv(lean_object*); lean_object* l___regBuiltinTermElab_Lean_Elab_Term_elabEq___closed__3; +extern lean_object* l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__61; uint8_t l_Lean_Syntax_isOfKind(lean_object*, lean_object*); lean_object* l___regBuiltinTermElab_Lean_Elab_Term_elabGE___closed__3; lean_object* l_Lean_Elab_Term_elabMapConst___boxed(lean_object*, lean_object*, lean_object*, lean_object*); @@ -542,7 +544,6 @@ lean_object* l_Lean_Elab_Term_elabIf___lambda__1___closed__2; lean_object* l_Lean_Elab_Term_elabCons(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabMod(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltinTermElab_Lean_Elab_Term_elabAnoymousCtor___closed__3; -extern lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__30; lean_object* l___regBuiltinTermElab_Lean_Elab_Term_elabOr___closed__1; extern lean_object* l_Lean_Parser_Term_map___elambda__1___closed__2; lean_object* l_Lean_Elab_Term_elabAnoymousCtor___closed__10; @@ -570,7 +571,6 @@ extern lean_object* l_Lean_Parser_Term_bne___elambda__1___closed__1; lean_object* l_Lean_Elab_Term_elabDollar(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabIf___lambda__1___closed__3; lean_object* l_Lean_Elab_Term_elabParserMacro___lambda__1___closed__25; -extern lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__33; extern lean_object* l_Lean_Parser_Term_map___elambda__1___closed__1; lean_object* l___private_Init_Data_Array_Basic_3__iterateRevMAux___main___at_Lean_Elab_Term_elabWhere___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabAndThen(lean_object*, lean_object*, lean_object*, lean_object*); @@ -598,7 +598,6 @@ lean_object* l_Lean_Elab_Term_elabSub___boxed(lean_object*, lean_object*, lean_o lean_object* l_Lean_Elab_Term_elabTParserMacro___lambda__1___closed__2; lean_object* l_Lean_Elab_Term_elabParserMacro___lambda__1___closed__24; lean_object* lean_name_mk_numeral(lean_object*, lean_object*); -extern lean_object* l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__3___closed__3; extern lean_object* l_Lean_Parser_Term_dollar___elambda__1___closed__2; lean_object* l___regBuiltinTermElab_Lean_Elab_Term_elabNe___closed__1; lean_object* l___regBuiltinTermElab_Lean_Elab_Term_elabseqLeft(lean_object*); @@ -616,7 +615,7 @@ lean_object* l___regBuiltinTermElab_Lean_Elab_Term_elabLE___closed__2; extern lean_object* l_Lean_Parser_Term_mod___elambda__1___closed__2; lean_object* l___regBuiltinTermElab_Lean_Elab_Term_elabAndM___closed__2; lean_object* l_Lean_Elab_Term_elabParserMacro___lambda__1___closed__22; -extern lean_object* l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__1___closed__4; +extern lean_object* l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___lambda__1___closed__4; lean_object* l_Lean_Elab_Term_elabTParserMacro___lambda__1___closed__9; lean_object* l_Lean_Elab_Term_elabAnoymousCtor___closed__7; lean_object* l_Lean_Elab_Term_elabParserMacro___lambda__1___closed__33; @@ -1029,7 +1028,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__3___closed__1; +x_2 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___lambda__3___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } @@ -1217,7 +1216,7 @@ x_20 = lean_ctor_get(x_18, 0); x_21 = lean_box(0); x_22 = l_Lean_Elab_Term_elabIf___lambda__1___closed__1; x_23 = lean_name_mk_numeral(x_22, x_20); -x_24 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__3___closed__3; +x_24 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___lambda__3___closed__3; x_25 = l_Lean_Elab_Term_elabIf___lambda__1___closed__3; x_26 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_26, 0, x_21); @@ -1226,7 +1225,7 @@ lean_ctor_set(x_26, 2, x_23); lean_ctor_set(x_26, 3, x_25); x_27 = l_Array_empty___closed__1; x_28 = lean_array_push(x_27, x_26); -x_29 = l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__15; +x_29 = l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__15; x_30 = lean_array_push(x_28, x_29); x_31 = l_Lean_Parser_Term_id___elambda__1___closed__2; x_32 = lean_alloc_ctor(1, 2, 0); @@ -1262,7 +1261,7 @@ lean_dec(x_18); x_45 = lean_box(0); x_46 = l_Lean_Elab_Term_elabIf___lambda__1___closed__1; x_47 = lean_name_mk_numeral(x_46, x_43); -x_48 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__3___closed__3; +x_48 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___lambda__3___closed__3; x_49 = l_Lean_Elab_Term_elabIf___lambda__1___closed__3; x_50 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_50, 0, x_45); @@ -1271,7 +1270,7 @@ lean_ctor_set(x_50, 2, x_47); lean_ctor_set(x_50, 3, x_49); x_51 = l_Array_empty___closed__1; x_52 = lean_array_push(x_51, x_50); -x_53 = l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__15; +x_53 = l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__15; x_54 = lean_array_push(x_52, x_53); x_55 = l_Lean_Parser_Term_id___elambda__1___closed__2; x_56 = lean_alloc_ctor(1, 2, 0); @@ -1360,7 +1359,7 @@ lean_ctor_set(x_95, 2, x_92); lean_ctor_set(x_95, 3, x_94); x_96 = l_Array_empty___closed__1; x_97 = lean_array_push(x_96, x_95); -x_98 = l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__15; +x_98 = l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__15; x_99 = lean_array_push(x_97, x_98); x_100 = l_Lean_Parser_Term_id___elambda__1___closed__2; x_101 = lean_alloc_ctor(1, 2, 0); @@ -1392,9 +1391,9 @@ x_117 = lean_array_push(x_116, x_98); x_118 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_118, 0, x_69); lean_ctor_set(x_118, 1, x_117); -x_119 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__56; +x_119 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__53; x_120 = lean_array_push(x_119, x_118); -x_121 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__64; +x_121 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__61; x_122 = lean_array_push(x_120, x_121); x_123 = l_Lean_Parser_Term_paren___elambda__1___closed__1; x_124 = lean_alloc_ctor(1, 2, 0); @@ -1446,7 +1445,7 @@ lean_ctor_set(x_145, 2, x_142); lean_ctor_set(x_145, 3, x_144); x_146 = l_Array_empty___closed__1; x_147 = lean_array_push(x_146, x_145); -x_148 = l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__15; +x_148 = l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__15; x_149 = lean_array_push(x_147, x_148); x_150 = l_Lean_Parser_Term_id___elambda__1___closed__2; x_151 = lean_alloc_ctor(1, 2, 0); @@ -1478,9 +1477,9 @@ x_167 = lean_array_push(x_166, x_148); x_168 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_168, 0, x_69); lean_ctor_set(x_168, 1, x_167); -x_169 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__56; +x_169 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__53; x_170 = lean_array_push(x_169, x_168); -x_171 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__64; +x_171 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__61; x_172 = lean_array_push(x_170, x_171); x_173 = l_Lean_Parser_Term_paren___elambda__1___closed__1; x_174 = lean_alloc_ctor(1, 2, 0); @@ -1675,7 +1674,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Elab_Term_elabSubtype___lambda__1___closed__8; -x_2 = l___private_Init_Lean_Elab_Quotation_8__explodeHeadPat___lambda__1___closed__3; +x_2 = l___private_Init_Lean_Elab_Quotation_9__explodeHeadPat___lambda__1___closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } @@ -1816,7 +1815,7 @@ lean_ctor_set(x_25, 2, x_22); lean_ctor_set(x_25, 3, x_24); x_26 = l_Array_empty___closed__1; x_27 = lean_array_push(x_26, x_25); -x_28 = l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__15; +x_28 = l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__15; x_29 = lean_array_push(x_27, x_28); x_30 = l_Lean_Parser_Term_id___elambda__1___closed__2; x_31 = lean_alloc_ctor(1, 2, 0); @@ -1830,9 +1829,9 @@ x_36 = l_Lean_nullKind___closed__2; x_37 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_37, 0, x_36); lean_ctor_set(x_37, 1, x_35); -x_38 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__56; +x_38 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__53; x_39 = lean_array_push(x_38, x_37); -x_40 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__64; +x_40 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__61; x_41 = lean_array_push(x_39, x_40); x_42 = l_Lean_Parser_Term_paren___elambda__1___closed__1; x_43 = lean_alloc_ctor(1, 2, 0); @@ -1889,7 +1888,7 @@ lean_ctor_set(x_69, 2, x_66); lean_ctor_set(x_69, 3, x_68); x_70 = l_Array_empty___closed__1; x_71 = lean_array_push(x_70, x_69); -x_72 = l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__15; +x_72 = l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__15; x_73 = lean_array_push(x_71, x_72); x_74 = l_Lean_Parser_Term_id___elambda__1___closed__2; x_75 = lean_alloc_ctor(1, 2, 0); @@ -1903,9 +1902,9 @@ x_80 = l_Lean_nullKind___closed__2; x_81 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_81, 0, x_80); lean_ctor_set(x_81, 1, x_79); -x_82 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__56; +x_82 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__53; x_83 = lean_array_push(x_82, x_81); -x_84 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__64; +x_84 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__61; x_85 = lean_array_push(x_83, x_84); x_86 = l_Lean_Parser_Term_paren___elambda__1___closed__1; x_87 = lean_alloc_ctor(1, 2, 0); @@ -2041,7 +2040,7 @@ lean_ctor_set(x_134, 2, x_131); lean_ctor_set(x_134, 3, x_133); x_135 = l_Array_empty___closed__1; x_136 = lean_array_push(x_135, x_134); -x_137 = l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__15; +x_137 = l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__15; x_138 = lean_array_push(x_136, x_137); x_139 = l_Lean_Parser_Term_id___elambda__1___closed__2; x_140 = lean_alloc_ctor(1, 2, 0); @@ -2063,9 +2062,9 @@ x_149 = lean_array_push(x_142, x_148); x_150 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_150, 0, x_108); lean_ctor_set(x_150, 1, x_149); -x_151 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__56; +x_151 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__53; x_152 = lean_array_push(x_151, x_150); -x_153 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__64; +x_153 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__61; x_154 = lean_array_push(x_152, x_153); x_155 = l_Lean_Parser_Term_paren___elambda__1___closed__1; x_156 = lean_alloc_ctor(1, 2, 0); @@ -2122,7 +2121,7 @@ lean_ctor_set(x_182, 2, x_179); lean_ctor_set(x_182, 3, x_181); x_183 = l_Array_empty___closed__1; x_184 = lean_array_push(x_183, x_182); -x_185 = l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__15; +x_185 = l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__15; x_186 = lean_array_push(x_184, x_185); x_187 = l_Lean_Parser_Term_id___elambda__1___closed__2; x_188 = lean_alloc_ctor(1, 2, 0); @@ -2144,9 +2143,9 @@ x_197 = lean_array_push(x_190, x_196); x_198 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_198, 0, x_108); lean_ctor_set(x_198, 1, x_197); -x_199 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__56; +x_199 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__53; x_200 = lean_array_push(x_199, x_198); -x_201 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__64; +x_201 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__61; x_202 = lean_array_push(x_200, x_201); x_203 = l_Lean_Parser_Term_paren___elambda__1___closed__1; x_204 = lean_alloc_ctor(1, 2, 0); @@ -2842,9 +2841,9 @@ x_29 = lean_array_push(x_21, x_28); x_30 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_30, 0, x_27); lean_ctor_set(x_30, 1, x_29); -x_31 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__56; +x_31 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__53; x_32 = lean_array_push(x_31, x_30); -x_33 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__64; +x_33 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__61; x_34 = lean_array_push(x_32, x_33); x_35 = l_Lean_Parser_Term_paren___elambda__1___closed__1; x_36 = lean_alloc_ctor(1, 2, 0); @@ -2907,9 +2906,9 @@ x_67 = lean_array_push(x_59, x_66); x_68 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_68, 0, x_65); lean_ctor_set(x_68, 1, x_67); -x_69 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__56; +x_69 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__53; x_70 = lean_array_push(x_69, x_68); -x_71 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__64; +x_71 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__61; x_72 = lean_array_push(x_70, x_71); x_73 = l_Lean_Parser_Term_paren___elambda__1___closed__1; x_74 = lean_alloc_ctor(1, 2, 0); @@ -3173,9 +3172,9 @@ x_37 = lean_array_push(x_29, x_36); x_38 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_38, 0, x_35); lean_ctor_set(x_38, 1, x_37); -x_39 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__56; +x_39 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__53; x_40 = lean_array_push(x_39, x_38); -x_41 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__64; +x_41 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__61; x_42 = lean_array_push(x_40, x_41); x_43 = l_Lean_Parser_Term_paren___elambda__1___closed__1; x_44 = lean_alloc_ctor(1, 2, 0); @@ -3195,7 +3194,7 @@ x_53 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_53, 0, x_52); lean_ctor_set(x_53, 1, x_51); x_54 = lean_array_push(x_28, x_53); -x_55 = l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__15; +x_55 = l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__15; x_56 = lean_array_push(x_54, x_55); x_57 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_57, 0, x_35); @@ -3237,9 +3236,9 @@ x_75 = lean_array_push(x_67, x_74); x_76 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_76, 0, x_73); lean_ctor_set(x_76, 1, x_75); -x_77 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__56; +x_77 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__53; x_78 = lean_array_push(x_77, x_76); -x_79 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__64; +x_79 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__61; x_80 = lean_array_push(x_78, x_79); x_81 = l_Lean_Parser_Term_paren___elambda__1___closed__1; x_82 = lean_alloc_ctor(1, 2, 0); @@ -3259,7 +3258,7 @@ x_91 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_91, 0, x_90); lean_ctor_set(x_91, 1, x_89); x_92 = lean_array_push(x_66, x_91); -x_93 = l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__15; +x_93 = l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__15; x_94 = lean_array_push(x_92, x_93); x_95 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_95, 0, x_73); @@ -3344,9 +3343,9 @@ x_129 = lean_array_push(x_121, x_128); x_130 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_130, 0, x_127); lean_ctor_set(x_130, 1, x_129); -x_131 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__56; +x_131 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__53; x_132 = lean_array_push(x_131, x_130); -x_133 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__64; +x_133 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__61; x_134 = lean_array_push(x_132, x_133); x_135 = l_Lean_Parser_Term_paren___elambda__1___closed__1; x_136 = lean_alloc_ctor(1, 2, 0); @@ -3366,7 +3365,7 @@ x_145 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_145, 0, x_144); lean_ctor_set(x_145, 1, x_143); x_146 = lean_array_push(x_120, x_145); -x_147 = l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__15; +x_147 = l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__15; x_148 = lean_array_push(x_146, x_147); x_149 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_149, 0, x_127); @@ -3408,9 +3407,9 @@ x_167 = lean_array_push(x_159, x_166); x_168 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_168, 0, x_165); lean_ctor_set(x_168, 1, x_167); -x_169 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__56; +x_169 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__53; x_170 = lean_array_push(x_169, x_168); -x_171 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__64; +x_171 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__61; x_172 = lean_array_push(x_170, x_171); x_173 = l_Lean_Parser_Term_paren___elambda__1___closed__1; x_174 = lean_alloc_ctor(1, 2, 0); @@ -3430,7 +3429,7 @@ x_183 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_183, 0, x_182); lean_ctor_set(x_183, 1, x_181); x_184 = lean_array_push(x_158, x_183); -x_185 = l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__15; +x_185 = l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__15; x_186 = lean_array_push(x_184, x_185); x_187 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_187, 0, x_165); @@ -3556,9 +3555,9 @@ x_236 = lean_array_push(x_229, x_235); x_237 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_237, 0, x_204); lean_ctor_set(x_237, 1, x_236); -x_238 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__56; +x_238 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__53; x_239 = lean_array_push(x_238, x_237); -x_240 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__64; +x_240 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__61; x_241 = lean_array_push(x_239, x_240); x_242 = l_Lean_Parser_Term_paren___elambda__1___closed__1; x_243 = lean_alloc_ctor(1, 2, 0); @@ -3578,7 +3577,7 @@ x_252 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_252, 0, x_251); lean_ctor_set(x_252, 1, x_250); x_253 = lean_array_push(x_228, x_252); -x_254 = l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__15; +x_254 = l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__15; x_255 = lean_array_push(x_253, x_254); x_256 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_256, 0, x_204); @@ -3619,9 +3618,9 @@ x_273 = lean_array_push(x_266, x_272); x_274 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_274, 0, x_204); lean_ctor_set(x_274, 1, x_273); -x_275 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__56; +x_275 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__53; x_276 = lean_array_push(x_275, x_274); -x_277 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__64; +x_277 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__61; x_278 = lean_array_push(x_276, x_277); x_279 = l_Lean_Parser_Term_paren___elambda__1___closed__1; x_280 = lean_alloc_ctor(1, 2, 0); @@ -3641,7 +3640,7 @@ x_289 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_289, 0, x_288); lean_ctor_set(x_289, 1, x_287); x_290 = lean_array_push(x_265, x_289); -x_291 = l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__15; +x_291 = l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__15; x_292 = lean_array_push(x_290, x_291); x_293 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_293, 0, x_204); @@ -3726,9 +3725,9 @@ x_327 = lean_array_push(x_320, x_326); x_328 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_328, 0, x_204); lean_ctor_set(x_328, 1, x_327); -x_329 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__56; +x_329 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__53; x_330 = lean_array_push(x_329, x_328); -x_331 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__64; +x_331 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__61; x_332 = lean_array_push(x_330, x_331); x_333 = l_Lean_Parser_Term_paren___elambda__1___closed__1; x_334 = lean_alloc_ctor(1, 2, 0); @@ -3748,7 +3747,7 @@ x_343 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_343, 0, x_342); lean_ctor_set(x_343, 1, x_341); x_344 = lean_array_push(x_319, x_343); -x_345 = l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__15; +x_345 = l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__15; x_346 = lean_array_push(x_344, x_345); x_347 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_347, 0, x_204); @@ -3789,9 +3788,9 @@ x_364 = lean_array_push(x_357, x_363); x_365 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_365, 0, x_204); lean_ctor_set(x_365, 1, x_364); -x_366 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__56; +x_366 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__53; x_367 = lean_array_push(x_366, x_365); -x_368 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__64; +x_368 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__61; x_369 = lean_array_push(x_367, x_368); x_370 = l_Lean_Parser_Term_paren___elambda__1___closed__1; x_371 = lean_alloc_ctor(1, 2, 0); @@ -3811,7 +3810,7 @@ x_380 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_380, 0, x_379); lean_ctor_set(x_380, 1, x_378); x_381 = lean_array_push(x_356, x_380); -x_382 = l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__15; +x_382 = l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__15; x_383 = lean_array_push(x_381, x_382); x_384 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_384, 0, x_204); @@ -3923,11 +3922,11 @@ lean_dec(x_15); x_17 = l_Lean_Parser_Term_let___elambda__1___closed__1; lean_inc(x_2); x_18 = lean_name_mk_string(x_2, x_17); -x_19 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__1; +x_19 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__1; lean_inc(x_3); x_20 = lean_array_push(x_3, x_19); x_21 = lean_array_push(x_20, x_14); -x_22 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__10; +x_22 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__10; x_23 = lean_array_push(x_21, x_22); x_24 = lean_array_push(x_23, x_7); x_25 = lean_alloc_ctor(1, 2, 0); @@ -4386,27 +4385,19 @@ return x_3; lean_object* _init_l_Lean_Elab_Term_elabParserMacro___lambda__1___closed__29() { _start: { -lean_object* x_1; -x_1 = lean_mk_string("some"); -return x_1; +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__2___closed__4; +x_2 = lean_string_utf8_byte_size(x_1); +return x_2; } } lean_object* _init_l_Lean_Elab_Term_elabParserMacro___lambda__1___closed__30() { _start: { -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Term_elabParserMacro___lambda__1___closed__29; -x_2 = lean_string_utf8_byte_size(x_1); -return x_2; -} -} -lean_object* _init_l_Lean_Elab_Term_elabParserMacro___lambda__1___closed__31() { -_start: -{ lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Elab_Term_elabParserMacro___lambda__1___closed__29; +x_1 = l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__2___closed__4; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Lean_Elab_Term_elabParserMacro___lambda__1___closed__30; +x_3 = l_Lean_Elab_Term_elabParserMacro___lambda__1___closed__29; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -4414,13 +4405,25 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } +lean_object* _init_l_Lean_Elab_Term_elabParserMacro___lambda__1___closed__31() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__2___closed__4; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} lean_object* _init_l_Lean_Elab_Term_elabParserMacro___lambda__1___closed__32() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Term_elabParserMacro___lambda__1___closed__29; -x_3 = lean_name_mk_string(x_1, x_2); +x_2 = l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__2___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; } } @@ -4428,30 +4431,8 @@ lean_object* _init_l_Lean_Elab_Term_elabParserMacro___lambda__1___closed__33() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__33; -x_2 = l_Lean_Elab_Term_elabParserMacro___lambda__1___closed__29; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; -} -} -lean_object* _init_l_Lean_Elab_Term_elabParserMacro___lambda__1___closed__34() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Term_elabParserMacro___lambda__1___closed__33; -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_Lean_Elab_Term_elabParserMacro___lambda__1___closed__35() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l_Lean_Elab_Term_elabParserMacro___lambda__1___closed__34; +x_2 = l_Lean_Elab_Term_elabParserMacro___lambda__1___closed__32; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); @@ -4633,10 +4614,10 @@ x_72 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_72, 0, x_44); lean_ctor_set(x_72, 1, x_71); x_73 = lean_array_push(x_36, x_72); -x_74 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__31; +x_74 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__31; x_75 = lean_name_mk_numeral(x_74, x_52); -x_76 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__30; -x_77 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__36; +x_76 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__30; +x_77 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__33; x_78 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_78, 0, x_21); lean_ctor_set(x_78, 1, x_76); @@ -4657,9 +4638,9 @@ x_86 = l_Lean_nullKind___closed__2; x_87 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_87, 0, x_86); lean_ctor_set(x_87, 1, x_85); -x_88 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__56; +x_88 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__53; x_89 = lean_array_push(x_88, x_87); -x_90 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__64; +x_90 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__61; x_91 = lean_array_push(x_89, x_90); x_92 = l_Lean_Parser_Term_paren___elambda__1___closed__1; x_93 = lean_alloc_ctor(1, 2, 0); @@ -4722,10 +4703,10 @@ x_120 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_120, 0, x_44); lean_ctor_set(x_120, 1, x_119); x_121 = lean_array_push(x_36, x_120); -x_122 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__31; +x_122 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__31; x_123 = lean_name_mk_numeral(x_122, x_99); -x_124 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__30; -x_125 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__36; +x_124 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__30; +x_125 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__33; x_126 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_126, 0, x_21); lean_ctor_set(x_126, 1, x_124); @@ -4746,9 +4727,9 @@ x_134 = l_Lean_nullKind___closed__2; x_135 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_135, 0, x_134); lean_ctor_set(x_135, 1, x_133); -x_136 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__56; +x_136 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__53; x_137 = lean_array_push(x_136, x_135); -x_138 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__64; +x_138 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__61; x_139 = lean_array_push(x_137, x_138); x_140 = l_Lean_Parser_Term_paren___elambda__1___closed__1; x_141 = lean_alloc_ctor(1, 2, 0); @@ -4816,10 +4797,10 @@ x_170 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_170, 0, x_44); lean_ctor_set(x_170, 1, x_169); x_171 = lean_array_push(x_36, x_170); -x_172 = l_Lean_Elab_Term_elabParserMacro___lambda__1___closed__32; +x_172 = l_Lean_Elab_Term_elabParserMacro___lambda__1___closed__31; x_173 = lean_name_mk_numeral(x_172, x_150); -x_174 = l_Lean_Elab_Term_elabParserMacro___lambda__1___closed__31; -x_175 = l_Lean_Elab_Term_elabParserMacro___lambda__1___closed__35; +x_174 = l_Lean_Elab_Term_elabParserMacro___lambda__1___closed__30; +x_175 = l_Lean_Elab_Term_elabParserMacro___lambda__1___closed__33; x_176 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_176, 0, x_21); lean_ctor_set(x_176, 1, x_174); @@ -4841,9 +4822,9 @@ x_185 = l_Lean_nullKind___closed__2; x_186 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_186, 0, x_185); lean_ctor_set(x_186, 1, x_184); -x_187 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__56; +x_187 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__53; x_188 = lean_array_push(x_187, x_186); -x_189 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__64; +x_189 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__61; x_190 = lean_array_push(x_188, x_189); x_191 = l_Lean_Parser_Term_paren___elambda__1___closed__1; x_192 = lean_alloc_ctor(1, 2, 0); @@ -4920,10 +4901,10 @@ x_227 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_227, 0, x_44); lean_ctor_set(x_227, 1, x_226); x_228 = lean_array_push(x_36, x_227); -x_229 = l_Lean_Elab_Term_elabParserMacro___lambda__1___closed__32; +x_229 = l_Lean_Elab_Term_elabParserMacro___lambda__1___closed__31; x_230 = lean_name_mk_numeral(x_229, x_206); -x_231 = l_Lean_Elab_Term_elabParserMacro___lambda__1___closed__31; -x_232 = l_Lean_Elab_Term_elabParserMacro___lambda__1___closed__35; +x_231 = l_Lean_Elab_Term_elabParserMacro___lambda__1___closed__30; +x_232 = l_Lean_Elab_Term_elabParserMacro___lambda__1___closed__33; x_233 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_233, 0, x_21); lean_ctor_set(x_233, 1, x_231); @@ -4945,9 +4926,9 @@ x_242 = l_Lean_nullKind___closed__2; x_243 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_243, 0, x_242); lean_ctor_set(x_243, 1, x_241); -x_244 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__56; +x_244 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__53; x_245 = lean_array_push(x_244, x_243); -x_246 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__64; +x_246 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__61; x_247 = lean_array_push(x_245, x_246); x_248 = l_Lean_Parser_Term_paren___elambda__1___closed__1; x_249 = lean_alloc_ctor(1, 2, 0); @@ -6525,7 +6506,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__1___closed__4; +x_2 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___lambda__1___closed__4; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } @@ -8377,10 +8358,6 @@ l_Lean_Elab_Term_elabParserMacro___lambda__1___closed__32 = _init_l_Lean_Elab_Te lean_mark_persistent(l_Lean_Elab_Term_elabParserMacro___lambda__1___closed__32); l_Lean_Elab_Term_elabParserMacro___lambda__1___closed__33 = _init_l_Lean_Elab_Term_elabParserMacro___lambda__1___closed__33(); lean_mark_persistent(l_Lean_Elab_Term_elabParserMacro___lambda__1___closed__33); -l_Lean_Elab_Term_elabParserMacro___lambda__1___closed__34 = _init_l_Lean_Elab_Term_elabParserMacro___lambda__1___closed__34(); -lean_mark_persistent(l_Lean_Elab_Term_elabParserMacro___lambda__1___closed__34); -l_Lean_Elab_Term_elabParserMacro___lambda__1___closed__35 = _init_l_Lean_Elab_Term_elabParserMacro___lambda__1___closed__35(); -lean_mark_persistent(l_Lean_Elab_Term_elabParserMacro___lambda__1___closed__35); l_Lean_Elab_Term_elabParserMacro___closed__1 = _init_l_Lean_Elab_Term_elabParserMacro___closed__1(); lean_mark_persistent(l_Lean_Elab_Term_elabParserMacro___closed__1); l_Lean_Elab_Term_elabTParserMacro___lambda__1___closed__1 = _init_l_Lean_Elab_Term_elabTParserMacro___lambda__1___closed__1(); diff --git a/stage0/stdlib/Init/Lean/Elab/Command.c b/stage0/stdlib/Init/Lean/Elab/Command.c index 8b9f355f1f..a218aa1d5c 100644 --- a/stage0/stdlib/Init/Lean/Elab/Command.c +++ b/stage0/stdlib/Init/Lean/Elab/Command.c @@ -21,7 +21,6 @@ extern lean_object* l_Lean_Name_toString___closed__1; lean_object* l_Lean_Elab_Command_registerBuiltinCommandElabAttr___closed__4; lean_object* l_Lean_Elab_Command_elabSection(lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltinCommandElab_Lean_Elab_Command_elabNamespace(lean_object*); -lean_object* l___regBuiltinCommandElab_Lean_Elab_Command_elabSyntax___closed__2; lean_object* l_Lean_extractMacroScopes(lean_object*); lean_object* l_PersistentHashMap_contains___at_Lean_Elab_Command_addBuiltinCommandElab___spec__4___boxed(lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_commandElabAttribute___closed__3; @@ -59,7 +58,6 @@ lean_object* l___regBuiltinCommandElab_Lean_Elab_Command_elabSection(lean_object lean_object* lean_array_uget(lean_object*, size_t); lean_object* l___regBuiltinCommandElab_Lean_Elab_Command_elabVariable(lean_object*); lean_object* lean_io_error_to_string(lean_object*); -extern lean_object* l_Lean_Syntax_formatStxAux___main___closed__5; lean_object* l_Lean_Elab_Term_inferType(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l___private_Init_Lean_Elab_Util_7__regTraceClasses___closed__1; uint8_t l_Lean_Name_lt___main(lean_object*, lean_object*); @@ -106,7 +104,6 @@ lean_object* l_Lean_Elab_ElabFnTable_insert___rarg(lean_object*, lean_object*, l lean_object* l___private_Init_Lean_Elab_Command_8__elabCommandUsing(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_List_append___rarg(lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabSetOption(lean_object*, lean_object*, lean_object*); -lean_object* l___regBuiltinCommandElab_Lean_Elab_Command_elabDeclareSyntaxCat___closed__1; lean_object* l_Lean_Elab_logAt___at_Lean_Elab_Command_logTrace___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_name_eq(lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_registerBuiltinCommandElabAttr___closed__2; @@ -116,6 +113,7 @@ lean_object* l_Lean_Elab_Command_elabCommandAux___closed__5; lean_object* l_Lean_Elab_Command_compileDecl(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltinCommandElab_Lean_Elab_Command_elabUniverse(lean_object*); lean_object* l_Lean_Elab_Command_getCurrMacroScope___boxed(lean_object*, lean_object*); +uint8_t l_PersistentHashMap_containsAtAux___main___at_Lean_Parser_mkFreshKindAux___main___spec__3(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_reprint___main(lean_object*); lean_object* l_Lean_Elab_Command_elabCommandAux___closed__6; lean_object* l_Lean_Syntax_foldArgsAuxM___main___at_Lean_Elab_Command_elabOpenSimple___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -145,7 +143,6 @@ lean_object* l_Lean_Elab_Command_setOption(lean_object*, lean_object*, lean_obje extern lean_object* l_String_splitAux___main___closed__1; lean_object* l_Lean_SMap_empty___at_Lean_Elab_Command_mkBuiltinCommandElabTable___spec__1___closed__2; lean_object* l___regBuiltinCommandElab_Lean_Elab_Command_elabExport(lean_object*); -lean_object* l___regBuiltinCommandElab_Lean_Elab_Command_elabDeclareSyntaxCat___closed__2; lean_object* l_Lean_Elab_Command_commandElabAttribute___closed__2; lean_object* l_Lean_Elab_Command_CommandElabM_monadLog___lambda__2___boxed(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Meta_isLevelDefEqAux___main___closed__5; @@ -162,7 +159,6 @@ extern lean_object* l_Lean_Meta_MetaHasEval___rarg___closed__4; extern lean_object* l_Lean_Parser_Command_mixfix___elambda__1___closed__2; lean_object* l_Lean_Name_getNumParts___main(lean_object*); lean_object* l_Lean_Elab_Command_elabOpen(lean_object*, lean_object*, lean_object*); -lean_object* l___regBuiltinCommandElab_Lean_Elab_Command_elabSyntax___closed__1; lean_object* l_Lean_Elab_mkMessageAt___at_Lean_Elab_Command_throwError___spec__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabSetOption___closed__3; extern lean_object* l_Lean_LocalContext_Inhabited___closed__1; @@ -175,7 +171,6 @@ lean_object* l_Lean_Elab_Command_elabMixfix___boxed(lean_object*, lean_object*); extern lean_object* l_Lean_AttributeImpl_inhabited___closed__2; lean_object* lean_nat_add(lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabEnd___closed__9; -lean_object* l_Lean_Elab_Command_elabDeclareSyntaxCat___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_throwUnsupportedSyntax___rarg(lean_object*); lean_object* l_IO_ofExcept___at_Lean_registerClassAttr___spec__1(lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_addBuiltinCommandElab(lean_object*, lean_object*, lean_object*, lean_object*); @@ -328,7 +323,6 @@ extern lean_object* l_Lean_Parser_declareBuiltinParser___closed__7; lean_object* l_Lean_Elab_Command_elabOpenOnly(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Options_empty; extern lean_object* l_Lean_Parser_Command_variable___elambda__1___closed__2; -lean_object* l___regBuiltinCommandElab_Lean_Elab_Command_elabSyntax___closed__3; lean_object* l_ReaderT_read___at_Lean_Elab_Command_CommandElabM_monadLog___spec__1(lean_object*, lean_object*); uint8_t l_coeDecidableEq(uint8_t); lean_object* l___regBuiltinCommandElab_Lean_Elab_Command_elabExport___closed__1; @@ -346,7 +340,6 @@ lean_object* l_PersistentHashMap_containsAux___main___at_Lean_Elab_Command_addBu lean_object* l___regBuiltinCommandElab_Lean_Elab_Command_elabVariable___closed__2; extern lean_object* l_Lean_Parser_Command_open___elambda__1___closed__2; uint8_t l_Array_contains___at_Lean_findField_x3f___main___spec__1(lean_object*, lean_object*); -lean_object* l_Lean_Elab_Command_elabSyntax___closed__3; lean_object* l_Lean_Elab_Command_CommandElabM_MonadQuotation___closed__1; lean_object* l_Lean_Elab_mkElabAttribute___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabEnd___closed__2; @@ -363,7 +356,6 @@ lean_object* l_PersistentHashMap_empty___at_Lean_Elab_Command_mkBuiltinCommandEl lean_object* l_mkHashMapImp___rarg(lean_object*); lean_object* l___regBuiltinCommandElab_Lean_Elab_Command_elabOpen(lean_object*); lean_object* l_Lean_Elab_Command_elabEnd(lean_object*, lean_object*, lean_object*); -lean_object* l___regBuiltinCommandElab_Lean_Elab_Command_elabSyntax(lean_object*); lean_object* l_Array_iterateMAux___main___at_Array_append___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_modifyScope___closed__1; lean_object* l___regBuiltinCommandElab_Lean_Elab_Command_elabCheck(lean_object*); @@ -404,7 +396,6 @@ lean_object* l___regBuiltinCommandElab_Lean_Elab_Command_elabSynth___closed__1; lean_object* l___private_Init_Lean_Elab_Command_2__getState(lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Command_universe___elambda__1___closed__2; lean_object* l_Lean_Elab_Command_elabCommandAux___closed__2; -lean_object* l_Lean_Parser_registerParserCategory(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*); lean_object* l___regBuiltinCommandElab_Lean_Elab_Command_elabOpen___closed__2; extern lean_object* l_Bool_HasRepr___closed__1; lean_object* l_Lean_Meta_synthInstance(lean_object*, lean_object*, lean_object*); @@ -414,7 +405,6 @@ lean_object* l_Lean_Elab_Command_elabExport___closed__2; lean_object* l_AssocList_contains___main___at_Lean_Elab_Command_addBuiltinCommandElab___spec__3___boxed(lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_modifyScope___at_Lean_Elab_Command_withDeclId___spec__4(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabReserve(lean_object*, lean_object*); -lean_object* l_Lean_Name_appendAfter(lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Command_end___elambda__1___closed__2; lean_object* l_Lean_Elab_Command_modifyScope___at_Lean_Elab_Command_setOption___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_mkCommandElabAttribute___closed__1; @@ -452,21 +442,17 @@ lean_object* l_Array_iterateMAux___main___at_Lean_Elab_Command_withDeclId___spec lean_object* l_Lean_Elab_Command_CommandElabM_monadLog___closed__5; lean_object* l___regBuiltinCommandElab_Lean_Elab_Command_elabUniverse___closed__2; lean_object* l___private_Init_Lean_Elab_Command_14__addScopes___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_Command_elabSyntax___closed__1; lean_object* l_Lean_Elab_Command_withIncRecDepth(lean_object*); lean_object* lean_panic_fn(lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_registerBuiltinCommandElabAttr___closed__3; lean_object* l___private_Init_Lean_Elab_Command_16__checkAnonymousScope___boxed(lean_object*); lean_object* l_Lean_Elab_log___at_Lean_Elab_Term_logTrace___spec__1(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); -uint8_t l_PersistentHashMap_containsAtAux___main___at_Lean_Parser_isValidSyntaxNodeKind___spec__3(lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltinCommandElab_Lean_Elab_Command_elabCheck___closed__2; -lean_object* l___regBuiltinCommandElab_Lean_Elab_Command_elabDeclareSyntaxCat(lean_object*); extern lean_object* l_Lean_EnvExtension_setState___closed__1; lean_object* l_Lean_Syntax_foldArgsAuxM___main___at_Lean_Elab_Command_elabOpenSimple___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_getOptionalIdent_x3f(lean_object*); lean_object* l_Array_filterAux___main___at_Lean_Elab_Command_sortDeclLevelParams___spec__2(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_mkCommandElabAttribute___closed__2; -lean_object* l_Lean_Elab_Command_elabSyntax___closed__2; lean_object* l_Lean_Elab_Command_elabNamespace(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabReserve___rarg(lean_object*); lean_object* l___regBuiltinCommandElab_Lean_Elab_Command_elabMixfix(lean_object*); @@ -481,7 +467,6 @@ lean_object* l_Lean_Elab_Command_logUnknownDecl___closed__1; lean_object* l_Lean_Syntax_getPos(lean_object*); lean_object* l_Lean_Elab_Command_State_inhabited; lean_object* l___regBuiltinCommandElab_Lean_Elab_Command_elabMixfix___closed__2; -lean_object* l_Lean_Elab_Command_elabSyntax(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabOpenHiding___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_getOpenDecls(lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_throwAlreadyDeclaredUniverseLevel___rarg___closed__4; @@ -534,11 +519,9 @@ lean_object* l___regBuiltinCommandElab_Lean_Elab_Command_elabExport___closed__3; lean_object* l_Lean_Elab_Command_elabReserve___boxed(lean_object*, lean_object*); lean_object* l___regBuiltinCommandElab_Lean_Elab_Command_elabSynth(lean_object*); lean_object* l_Lean_Elab_Command_liftIOCore___rarg(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___regBuiltinCommandElab_Lean_Elab_Command_elabDeclareSyntaxCat___closed__3; lean_object* l_AssocList_find___main___at_Lean_Elab_Command_elabCommandAux___spec__6___boxed(lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_logUnknownDecl___closed__2; lean_object* l_List_foldl___main___at_Lean_addMacroScopes___spec__1(lean_object*, lean_object*); -extern lean_object* l_Lean_Parser_Command_syntaxCat___elambda__1___closed__2; lean_object* l_Lean_Elab_Command_mkCommandElabAttribute(lean_object*); lean_object* l_Lean_Elab_Command_CommandElabM_monadLog___closed__10; lean_object* l_Lean_Elab_Command_modifyScope___at_Lean_Elab_Command_withDeclId___spec__3(lean_object*, lean_object*, lean_object*); @@ -584,7 +567,6 @@ lean_object* l_List_foldlM___main___at___private_Init_Lean_Elab_Command_7__addMa lean_object* l_Lean_Elab_Command_mkMessageAux(lean_object*, lean_object*, lean_object*, uint8_t); lean_object* l_Lean_mkConst(lean_object*, lean_object*); lean_object* l___private_Init_Lean_Elab_Command_10__mkTermState___boxed(lean_object*); -extern lean_object* l_Lean_Parser_Command_syntax___elambda__1___closed__1; lean_object* l_Lean_Elab_Command_commandElabAttribute___closed__5; lean_object* l___regBuiltinCommandElab_Lean_Elab_Command_elabNamespace___closed__1; lean_object* l_Lean_Elab_Command_CommandElabM_MonadQuotation___closed__3; @@ -596,7 +578,6 @@ lean_object* l___private_Init_Lean_Elab_Command_11__getVarDecls___boxed(lean_obj lean_object* l_Lean_Elab_Command_declareBuiltinCommandElab___closed__2; extern lean_object* l_Lean_Parser_Command_openHiding___elambda__1___closed__2; lean_object* l_Lean_Elab_syntaxNodeKindOfAttrParam(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_Command_elabDeclareSyntaxCat(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_regBuiltinCommandParserAttr___closed__3; lean_object* l_HashMapImp_find_x3f___at_Lean_Elab_Command_elabCommandAux___spec__5(lean_object*, lean_object*); lean_object* l___regBuiltinCommandElab_Lean_Elab_Command_elabNamespace___closed__2; @@ -3365,7 +3346,7 @@ x_17 = lean_ctor_get(x_1, 0); lean_inc(x_17); lean_dec(x_1); x_18 = lean_unsigned_to_nat(0u); -x_19 = l_PersistentHashMap_containsAtAux___main___at_Lean_Parser_isValidSyntaxNodeKind___spec__3(x_17, x_18, x_3); +x_19 = l_PersistentHashMap_containsAtAux___main___at_Lean_Parser_mkFreshKindAux___main___spec__3(x_17, x_18, x_3); lean_dec(x_17); return x_19; } @@ -18685,230 +18666,6 @@ x_5 = l_Lean_Elab_Command_addBuiltinCommandElab(x_2, x_3, x_4, x_1); return x_5; } } -lean_object* l_Lean_Elab_Command_elabDeclareSyntaxCat(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; -x_4 = lean_unsigned_to_nat(1u); -x_5 = l_Lean_Syntax_getIdAt(x_1, x_4); -x_6 = l_Lean_Syntax_formatStxAux___main___closed__5; -lean_inc(x_5); -x_7 = l_Lean_Name_appendAfter(x_5, x_6); -lean_inc(x_2); -x_8 = l_Lean_Elab_Command_getEnv(x_2, x_3); -if (lean_obj_tag(x_8) == 0) -{ -lean_object* x_9; lean_object* x_10; uint8_t x_11; lean_object* 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 = 0; -x_12 = l_Lean_Parser_registerParserCategory(x_9, x_7, x_5, 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, 0); -lean_inc(x_13); -x_14 = lean_ctor_get(x_12, 1); -lean_inc(x_14); -lean_dec(x_12); -x_15 = l_Lean_Elab_Command_setEnv(x_13, x_2, x_14); -return x_15; -} -else -{ -uint8_t x_16; -x_16 = !lean_is_exclusive(x_12); -if (x_16 == 0) -{ -lean_object* x_17; lean_object* x_18; lean_object* x_19; -x_17 = lean_ctor_get(x_12, 0); -x_18 = l___private_Init_Lean_Elab_Command_1__ioErrorToMessage(x_2, x_1, x_17); -x_19 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_19, 0, x_18); -lean_ctor_set(x_12, 0, x_19); -return x_12; -} -else -{ -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_12, 0); -x_21 = lean_ctor_get(x_12, 1); -lean_inc(x_21); -lean_inc(x_20); -lean_dec(x_12); -x_22 = l___private_Init_Lean_Elab_Command_1__ioErrorToMessage(x_2, x_1, x_20); -x_23 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_23, 0, x_22); -x_24 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_24, 0, x_23); -lean_ctor_set(x_24, 1, x_21); -return x_24; -} -} -} -else -{ -uint8_t x_25; -lean_dec(x_7); -lean_dec(x_5); -lean_dec(x_2); -x_25 = !lean_is_exclusive(x_8); -if (x_25 == 0) -{ -return x_8; -} -else -{ -lean_object* x_26; lean_object* x_27; lean_object* x_28; -x_26 = lean_ctor_get(x_8, 0); -x_27 = lean_ctor_get(x_8, 1); -lean_inc(x_27); -lean_inc(x_26); -lean_dec(x_8); -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* l_Lean_Elab_Command_elabDeclareSyntaxCat___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { -_start: -{ -lean_object* x_4; -x_4 = l_Lean_Elab_Command_elabDeclareSyntaxCat(x_1, x_2, x_3); -lean_dec(x_1); -return x_4; -} -} -lean_object* _init_l___regBuiltinCommandElab_Lean_Elab_Command_elabDeclareSyntaxCat___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("elabDeclareSyntaxCat"); -return x_1; -} -} -lean_object* _init_l___regBuiltinCommandElab_Lean_Elab_Command_elabDeclareSyntaxCat___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Command_declareBuiltinCommandElab___closed__3; -x_2 = l___regBuiltinCommandElab_Lean_Elab_Command_elabDeclareSyntaxCat___closed__1; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; -} -} -lean_object* _init_l___regBuiltinCommandElab_Lean_Elab_Command_elabDeclareSyntaxCat___closed__3() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Command_elabDeclareSyntaxCat___boxed), 3, 0); -return x_1; -} -} -lean_object* l___regBuiltinCommandElab_Lean_Elab_Command_elabDeclareSyntaxCat(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_2 = l_Lean_Parser_Command_syntaxCat___elambda__1___closed__2; -x_3 = l___regBuiltinCommandElab_Lean_Elab_Command_elabDeclareSyntaxCat___closed__2; -x_4 = l___regBuiltinCommandElab_Lean_Elab_Command_elabDeclareSyntaxCat___closed__3; -x_5 = l_Lean_Elab_Command_addBuiltinCommandElab(x_2, x_3, x_4, x_1); -return x_5; -} -} -lean_object* _init_l_Lean_Elab_Command_elabSyntax___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("not implemented yet "); -return x_1; -} -} -lean_object* _init_l_Lean_Elab_Command_elabSyntax___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Command_elabSyntax___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_Command_elabSyntax___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_Command_elabSyntax___closed__2; -x_2 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_2, 0, x_1); -return x_2; -} -} -lean_object* l_Lean_Elab_Command_elabSyntax(lean_object* x_1, lean_object* x_2, lean_object* x_3) { -_start: -{ -lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; -x_4 = lean_box(0); -x_5 = lean_unsigned_to_nat(0u); -lean_inc(x_1); -x_6 = l_Lean_Syntax_formatStxAux___main(x_4, x_5, x_1); -x_7 = l_Lean_Options_empty; -x_8 = l_Lean_Format_pretty(x_6, x_7); -x_9 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_9, 0, x_8); -x_10 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_10, 0, x_9); -x_11 = l_Lean_Elab_Command_elabSyntax___closed__3; -x_12 = lean_alloc_ctor(8, 2, 0); -lean_ctor_set(x_12, 0, x_11); -lean_ctor_set(x_12, 1, x_10); -x_13 = l_Lean_Elab_Command_throwError___rarg(x_1, x_12, x_2, x_3); -return x_13; -} -} -lean_object* _init_l___regBuiltinCommandElab_Lean_Elab_Command_elabSyntax___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("elabSyntax"); -return x_1; -} -} -lean_object* _init_l___regBuiltinCommandElab_Lean_Elab_Command_elabSyntax___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Command_declareBuiltinCommandElab___closed__3; -x_2 = l___regBuiltinCommandElab_Lean_Elab_Command_elabSyntax___closed__1; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; -} -} -lean_object* _init_l___regBuiltinCommandElab_Lean_Elab_Command_elabSyntax___closed__3() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Command_elabSyntax), 3, 0); -return x_1; -} -} -lean_object* l___regBuiltinCommandElab_Lean_Elab_Command_elabSyntax(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_2 = l_Lean_Parser_Command_syntax___elambda__1___closed__1; -x_3 = l___regBuiltinCommandElab_Lean_Elab_Command_elabSyntax___closed__2; -x_4 = l___regBuiltinCommandElab_Lean_Elab_Command_elabSyntax___closed__3; -x_5 = l_Lean_Elab_Command_addBuiltinCommandElab(x_2, x_3, x_4, x_1); -return x_5; -} -} lean_object* l_Lean_Elab_Command_modifyScope___at_Lean_Elab_Command_withDeclId___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { @@ -22701,30 +22458,6 @@ lean_mark_persistent(l___regBuiltinCommandElab_Lean_Elab_Command_elabSetOption__ res = l___regBuiltinCommandElab_Lean_Elab_Command_elabSetOption(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l___regBuiltinCommandElab_Lean_Elab_Command_elabDeclareSyntaxCat___closed__1 = _init_l___regBuiltinCommandElab_Lean_Elab_Command_elabDeclareSyntaxCat___closed__1(); -lean_mark_persistent(l___regBuiltinCommandElab_Lean_Elab_Command_elabDeclareSyntaxCat___closed__1); -l___regBuiltinCommandElab_Lean_Elab_Command_elabDeclareSyntaxCat___closed__2 = _init_l___regBuiltinCommandElab_Lean_Elab_Command_elabDeclareSyntaxCat___closed__2(); -lean_mark_persistent(l___regBuiltinCommandElab_Lean_Elab_Command_elabDeclareSyntaxCat___closed__2); -l___regBuiltinCommandElab_Lean_Elab_Command_elabDeclareSyntaxCat___closed__3 = _init_l___regBuiltinCommandElab_Lean_Elab_Command_elabDeclareSyntaxCat___closed__3(); -lean_mark_persistent(l___regBuiltinCommandElab_Lean_Elab_Command_elabDeclareSyntaxCat___closed__3); -res = l___regBuiltinCommandElab_Lean_Elab_Command_elabDeclareSyntaxCat(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); -l_Lean_Elab_Command_elabSyntax___closed__1 = _init_l_Lean_Elab_Command_elabSyntax___closed__1(); -lean_mark_persistent(l_Lean_Elab_Command_elabSyntax___closed__1); -l_Lean_Elab_Command_elabSyntax___closed__2 = _init_l_Lean_Elab_Command_elabSyntax___closed__2(); -lean_mark_persistent(l_Lean_Elab_Command_elabSyntax___closed__2); -l_Lean_Elab_Command_elabSyntax___closed__3 = _init_l_Lean_Elab_Command_elabSyntax___closed__3(); -lean_mark_persistent(l_Lean_Elab_Command_elabSyntax___closed__3); -l___regBuiltinCommandElab_Lean_Elab_Command_elabSyntax___closed__1 = _init_l___regBuiltinCommandElab_Lean_Elab_Command_elabSyntax___closed__1(); -lean_mark_persistent(l___regBuiltinCommandElab_Lean_Elab_Command_elabSyntax___closed__1); -l___regBuiltinCommandElab_Lean_Elab_Command_elabSyntax___closed__2 = _init_l___regBuiltinCommandElab_Lean_Elab_Command_elabSyntax___closed__2(); -lean_mark_persistent(l___regBuiltinCommandElab_Lean_Elab_Command_elabSyntax___closed__2); -l___regBuiltinCommandElab_Lean_Elab_Command_elabSyntax___closed__3 = _init_l___regBuiltinCommandElab_Lean_Elab_Command_elabSyntax___closed__3(); -lean_mark_persistent(l___regBuiltinCommandElab_Lean_Elab_Command_elabSyntax___closed__3); -res = l___regBuiltinCommandElab_Lean_Elab_Command_elabSyntax(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); l_Lean_Elab_Command_withDeclId___closed__1 = _init_l_Lean_Elab_Command_withDeclId___closed__1(); lean_mark_persistent(l_Lean_Elab_Command_withDeclId___closed__1); l_Lean_Elab_Command_withDeclId___closed__2 = _init_l_Lean_Elab_Command_withDeclId___closed__2(); diff --git a/stage0/stdlib/Init/Lean/Elab/Quotation.c b/stage0/stdlib/Init/Lean/Elab/Quotation.c index 01eebe774d..ddcd5e0f60 100644 --- a/stage0/stdlib/Init/Lean/Elab/Quotation.c +++ b/stage0/stdlib/Init/Lean/Elab/Quotation.c @@ -13,649 +13,675 @@ #ifdef __cplusplus extern "C" { #endif +lean_object* l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__40; +lean_object* l_List_head_x21___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__2___closed__1; lean_object* l_List_reverse___rarg(lean_object*); lean_object* l_Lean_Elab_Term_antiquotKind_x3f(lean_object*); -lean_object* l_List_head_x21___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__2___closed__2; +lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_8__getHeadInfo___spec__2(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___spec__2___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_List_head_x21___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__2___boxed(lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_11__getPatternVarsAux(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__27; lean_object* l_Lean_Elab_Term_stxQuot_expand___closed__18; lean_object* l_Lean_Elab_Term_getEnv___rarg(lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__3; +lean_object* l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__45; lean_object* l___private_Init_Lean_Elab_Quotation_3__quoteList___main___rarg___lambda__1___closed__2; -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_7__getHeadInfo___spec__2(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__38; -lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__21; -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_7__getHeadInfo___spec__2___closed__2; -lean_object* l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__7; +lean_object* l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___lambda__1___closed__3; +lean_object* l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__23; +lean_object* l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__4; +lean_object* l_Lean_Name_hasQuote___closed__1; lean_object* l___private_Init_Lean_Elab_Quotation_1__quoteName___main___lambda__2___closed__3; extern lean_object* l_Lean_Parser_Term_app___elambda__1___closed__1; -lean_object* l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__6; -lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__34; +lean_object* l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__34; +lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_8__getHeadInfo___spec__2___closed__1; lean_object* l_Lean_Elab_Term_isAntiquotSplice___boxed(lean_object*); lean_object* l_List_tail_x21___rarg(lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__5; -lean_object* l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__6; -lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__23; +lean_object* l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__9___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__9(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_15__toPreterm(lean_object*, lean_object*, lean_object*); +lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__8___closed__3; lean_object* l_Lean_Syntax_isNatLitAux(lean_object*, lean_object*); lean_object* l___private_Init_Lean_Elab_Quotation_1__quoteName___main___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_10__getPatternVarsAux(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__5; +lean_object* l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__4; extern lean_object* l___private_Init_Lean_Compiler_InitAttr_2__isUnitType___closed__1; +lean_object* l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__13; lean_object* l_Lean_Elab_Term_stxQuot_expand___closed__7; -lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__41; -lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__13; +lean_object* l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__10; +lean_object* l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__6; +lean_object* l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__32; lean_object* l_Lean_Parser_mkParserContext(lean_object*, lean_object*); extern lean_object* l_Lean_Parser_declareBuiltinParser___closed__8; lean_object* lean_mk_empty_array_with_capacity(lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_14__toPreterm(lean_object*, lean_object*, lean_object*); -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Array_hasQuote___rarg___lambda__1___closed__4; +lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__toPreterm___main___spec__13(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___lambda__1___closed__3; +lean_object* l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__14; lean_object* l___regBuiltinTermElab_Lean_Elab_Term_elabMatchSyntax___closed__1; -lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__62; lean_object* l___regBuiltinTermElab_Lean_Elab_Term_elabStxQuot___closed__2; -lean_object* l_List_head_x21___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__2___boxed(lean_object*); lean_object* l___private_Init_Lean_Elab_Quotation_1__quoteName___main___lambda__3___closed__1; +lean_object* l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__5; extern lean_object* l_Lean_nameToExprAux___main___closed__1; lean_object* l_unreachable_x21___rarg(lean_object*); extern lean_object* l_Lean_nullKind; extern lean_object* l_Lean_nameToExprAux___main___closed__2; -lean_object* l_List_head_x21___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__2___closed__1; -lean_object* l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__3; +lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__8___closed__5; +lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__toPreterm___main___spec__12(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___closed__2; +lean_object* l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__9; +lean_object* l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___lambda__3___closed__1; +lean_object* l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__20; lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_2__appN___spec__1___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_getOptional_x3f(lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_4__elimAntiquotChoices___main(lean_object*); lean_object* l_Array_eraseIdx___rarg(lean_object*, lean_object*); -lean_object* l_Lean_Prod_HasQuote___rarg___lambda__1___closed__3; -lean_object* l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__11(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__54; +lean_object* l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__4; +lean_object* l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Syntax_formatStxAux___main___closed__5; -lean_object* l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__13; extern lean_object* l_Option_HasRepr___rarg___closed__1; +lean_object* l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__9; lean_object* l___private_Init_Lean_Elab_Quotation_3__quoteList___main(lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__1___closed__1; -lean_object* l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__34; -lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__6(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__44; +lean_object* l_List_head_x21___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__2(lean_object*); +lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__3(lean_object*, lean_object*); +lean_object* l_List_map___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__7(lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__2; lean_object* l_Lean_Format_pretty(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__1; -lean_object* l_List_map___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__7(lean_object*); -lean_object* l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__11___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__6; +lean_object* l___private_Init_Lean_Elab_Quotation_9__explodeHeadPat___closed__2; +lean_object* l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__6(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_nameToExprAux___main___closed__8; -lean_object* l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__8; -lean_object* l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__4___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___lambda__1___closed__1; +lean_object* l_Lean_Prod_hasQuote___rarg___lambda__1___closed__4; +lean_object* l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__38; +lean_object* l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__21; +lean_object* l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__1; lean_object* l___private_Init_Lean_Elab_Quotation_1__quoteName___main___lambda__3___closed__4; -lean_object* l___private_Init_Lean_Elab_Quotation_11__getPatternVars(lean_object*, lean_object*, lean_object*); -lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__10(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Prod_HasQuote___rarg___lambda__1___closed__5; +lean_object* l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_List_head_x21___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__2___closed__2; +lean_object* l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__51; lean_object* l_Lean_Syntax_getIdAt(lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_12__getPatternVars(lean_object*, lean_object*, lean_object*); lean_object* lean_local_ctx_mk_let_decl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_9__compileStxMatch(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__23; +lean_object* l___private_Init_Lean_Elab_Quotation_10__compileStxMatch(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_nameToExprAux___main___closed__4; -lean_object* l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__50; lean_object* l_Lean_Elab_Term_stxQuot_expand___closed__15; +lean_object* l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__19; +lean_object* l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__8; +lean_object* l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Prod_HasRepr___rarg___closed__1; -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_7__getHeadInfo___spec__2___closed__1; -lean_object* l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__21; -lean_object* l_Array_findMAux___main___at___private_Init_Lean_Elab_Quotation_4__elimAntiquotChoices___main___spec__2___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__38; +lean_object* l___private_Init_Lean_Elab_Quotation_9__explodeHeadPat___closed__1; +lean_object* l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___lambda__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__1; lean_object* l_Lean_Elab_Term_stxQuot_expand___closed__5; lean_object* l_Lean_Elab_Term_stxQuot_expand___closed__3; extern lean_object* l_Lean_stxInh; +lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_8__getHeadInfo___spec__2___closed__2; lean_object* l_Lean_Elab_Term_elabStxQuot___closed__1; extern lean_object* l_PersistentHashMap_mkCollisionNode___rarg___closed__1; lean_object* l___private_Init_Lean_Elab_Quotation_3__quoteList___main___rarg___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_9__explodeHeadPat___lambda__1___closed__3; lean_object* l_Lean_mkMVar(lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___closed__7; +lean_object* l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__7; extern lean_object* l_Array_empty___closed__1; extern lean_object* l_Lean_Literal_type___closed__5; -lean_object* l_Lean_Array_HasQuote___rarg___boxed(lean_object*, lean_object*); -lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_10__getPatternVarsAux___main___spec__1(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__5; -lean_object* l___private_Init_Lean_Elab_Quotation_8__explodeHeadPat___lambda__1___closed__1; -lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__49; -lean_object* l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__7; +lean_object* l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__11; +lean_object* l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__11___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__3; +lean_object* l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__26; +lean_object* l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__1; +lean_object* l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__12; extern lean_object* l___private_Init_Lean_Elab_Term_21__mkPairsAux___main___closed__4; -lean_object* l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__11; +lean_object* l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__29; lean_object* l_Lean_Elab_Term_stxQuot_expand___closed__12; lean_object* l_Lean_Parser_mkParserState(lean_object*); lean_object* l_List_append___rarg(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__1___closed__3; -lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__56; -lean_object* l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__2___closed__1; +lean_object* l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__1(lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Elab_Term_HeadInfo_generalizes(lean_object*, lean_object*); uint8_t lean_name_eq(lean_object*, lean_object*); extern lean_object* l_Lean_nameToExprAux___main___closed__5; lean_object* l___private_Init_Lean_Elab_Quotation_1__quoteName___main___lambda__1___closed__2; uint8_t l_Array_anyRangeMAux___main___at_Lean_Elab_Term_isAntiquotSplicePat___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__1(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Prod_HasQuote___rarg(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___lambda__2___closed__5; extern lean_object* l_Lean_Parser_Level_num___elambda__1___closed__1; -lean_object* l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__1___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__19; -lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__16; -lean_object* l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__31; +lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___spec__1___closed__6; +lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__8___closed__7; +lean_object* l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__2; lean_object* lean_parse_expr(lean_object*, lean_object*, lean_object*); lean_object* l___private_Init_Lean_Elab_Quotation_1__quoteName___main___lambda__3___closed__3; -lean_object* l_Lean_Array_HasQuote___rarg___lambda__1___closed__4; +lean_object* l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_stxQuot_expand(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__4; +lean_object* l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__1___closed__7; lean_object* l_Lean_Elab_Term_antiquotKind_x3f___boxed(lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___lambda__3___closed__3; +lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__toPreterm___main___spec__3(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__2___closed__7; +lean_object* l___private_Init_Lean_Elab_Quotation_11__getPatternVarsAux___main___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_mkInputContext(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__64; lean_object* lean_array_push(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__1; +lean_object* l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__8; lean_object* lean_array_get_size(lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_8__explodeHeadPat___lambda__1___closed__3; +lean_object* l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__1___closed__9; extern lean_object* l___private_Init_Lean_Elab_Term_21__mkPairsAux___main___closed__6; -lean_object* l___private_Init_Lean_Elab_Quotation_13__exprPlaceholder; +lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__8(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Term_num___elambda__1___closed__1; +lean_object* l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___lambda__2___closed__3; lean_object* l_List_range(lean_object*); +lean_object* l_Lean_Prod_hasQuote___rarg___lambda__1___closed__3; lean_object* l___private_Init_Lean_Elab_Quotation_1__quoteName___main___lambda__1___closed__1; lean_object* l_ReaderT_bind___at___private_Init_Lean_Elab_Quotation_1__quoteName___main___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_8__explodeHeadPat___lambda__1___closed__2; +lean_object* l___private_Init_Lean_Elab_Quotation_14__exprPlaceholder; lean_object* lean_string_utf8_extract(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Name_inhabited; -lean_object* l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__12; -lean_object* l___private_Init_Lean_Elab_Quotation_14__toPreterm___main(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_15__toPreterm___main(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___lambda__1___closed__2; +lean_object* l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__31; extern lean_object* l_String_splitAux___main___closed__1; lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_2__appN___spec__1___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__39; +lean_object* l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__2___boxed(lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltinTermElab_Lean_Elab_Term_elabMatchSyntax___closed__2; -lean_object* l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__2___closed__2; +lean_object* l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__36; lean_object* lean_get_antiquot_vars(lean_object*, lean_object*); extern lean_object* l_Lean_Elab_Term_mkFreshAnonymousName___rarg___closed__1; -lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__60; -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___spec__1___closed__3; -lean_object* l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__3; -lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__8(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Prod_hasQuote___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__11; +lean_object* l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___closed__1; lean_object* l_Lean_Elab_Term_stxQuot_expand___closed__24; -lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__48; +lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__5(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__35; +lean_object* l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__1___closed__5; extern lean_object* l___private_Init_Lean_Elab_Term_21__mkPairsAux___main___closed__9; lean_object* lean_string_utf8_byte_size(lean_object*); lean_object* l_Lean_mkAtom(lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__2; -lean_object* l_Lean_Name_HasQuote___closed__1; -lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__9(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Term_cons___elambda__1___closed__1; -lean_object* l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__26; lean_object* l___private_Init_Lean_Elab_Quotation_3__quoteList(lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_8__explodeHeadPat___lambda__1___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__25; +lean_object* l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__13; +lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___spec__1___closed__3; extern lean_object* l_Lean_FileMap_ofString___closed__1; +lean_object* l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__8; extern lean_object* l_Lean_Meta_MetaHasEval___rarg___closed__4; -lean_object* l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__1(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__47; -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___spec__1___closed__7; +lean_object* l___private_Init_Lean_Elab_Quotation_4__quoteOption(lean_object*); lean_object* l___private_Init_Lean_Elab_Quotation_1__quoteName___main___lambda__3___closed__5; -lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__18; lean_object* l_List_join___rarg(lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___spec__2(lean_object*); lean_object* l_Lean_Elab_Term_oldGetPatternVars___lambda__1___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___boxed(lean_object*, lean_object*, lean_object*); extern lean_object* l_Nat_HasOfNat___closed__1; +lean_object* l___private_Init_Lean_Elab_Quotation_16__oldRunTermElabM___rarg___closed__3; +lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___spec__1___closed__5; lean_object* l_ReaderT_bind___at_Lean_Elab_Term_TermElabM_MonadLog___spec__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___spec__2___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__14; +lean_object* l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__1___closed__3; lean_object* l_Lean_Elab_Term_stxQuot_expand___closed__26; lean_object* l_Lean_Elab_Term_antiquotKind_x3f___closed__1; lean_object* l___private_Init_Lean_Elab_Quotation_1__quoteName___main(lean_object*); lean_object* l___private_Init_Lean_Elab_Quotation_3__quoteList___main___rarg___lambda__1___closed__7; +lean_object* l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__2___closed__3; extern lean_object* l___private_Init_Lean_Elab_Term_8__expandCDot___closed__4; extern lean_object* l_Lean_nameToExprAux___main___closed__3; -lean_object* l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__15; lean_object* l_ReaderT_map___at_Lean_Elab_Term_oldGetPatternVars___spec__1(lean_object*, lean_object*); lean_object* lean_nat_add(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__36; -lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__9; -lean_object* l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__35; +lean_object* l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__15; lean_object* l___regBuiltinTermElab_Lean_Elab_Term_elabMatchSyntax___closed__3; -lean_object* l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__4(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__45; -lean_object* l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__6; -lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__39; -lean_object* l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___spec__3(lean_object*); +lean_object* l_Lean_Prod_hasQuote___rarg___lambda__1___closed__2; +lean_object* l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__3; +lean_object* l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__18; +lean_object* l_Lean_Prod_hasQuote___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_16__oldRunTermElabM___rarg___closed__5; +lean_object* l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__41; lean_object* l_Lean_Elab_Term_oldExpandStxQuot___closed__1; -lean_object* l_List_head_x21___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__2(lean_object*); +lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__toPreterm___main___spec__4(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__13; +lean_object* l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__46; extern lean_object* l_Lean_Elab_Term_elabListLit___closed__1; +lean_object* l_Lean_Prod_hasQuote___rarg___lambda__1___closed__5; lean_object* l_Lean_mkMData(lean_object*, lean_object*); -lean_object* l_Lean_Prod_HasQuote(lean_object*, lean_object*); -lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__oldRunTermElabM___spec__1(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__1; -lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__19; -lean_object* l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_9__explodeHeadPat___lambda__1___closed__1; +lean_object* l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__31; +lean_object* l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__59; lean_object* l___private_Init_Lean_Elab_Quotation_3__quoteList___rarg(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__8___closed__1; lean_object* l_Array_umapMAux___main___at_Lean_Elab_Term_match__syntax_expand___spec__1___closed__3; lean_object* l___private_Init_Lean_Elab_Quotation_2__appN___boxed(lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_List_replicate___rarg(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__3___closed__3; -lean_object* l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__1___closed__2; -lean_object* l_Lean_Array_HasQuote___rarg___lambda__1___closed__1; -lean_object* l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___spec__3___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_List_map___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__1(lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___lambda__2___closed__1; +lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_16__oldRunTermElabM___spec__1(lean_object*, lean_object*); +lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__5___closed__1; +lean_object* l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__1___closed__10; lean_object* l___private_Init_Lean_Elab_Quotation_1__quoteName___main___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___spec__1___closed__5; -lean_object* l___private_Init_Lean_Elab_Quotation_10__getPatternVarsAux___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__51; +lean_object* l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__6___boxed(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Term_letIdDecl___elambda__1___closed__2; -lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__5(lean_object*, lean_object*, lean_object*); -lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__8(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__30; lean_object* l_Lean_Parser_ParserState_setPos(lean_object*, lean_object*); extern lean_object* l_Lean_Elab_Term_elabParen___closed__4; -lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__8___closed__4; lean_object* l___private_Init_Lean_Elab_Quotation_1__quoteName___main___lambda__2___closed__2; +lean_object* l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___spec__2___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_fget(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_HeadInfo_generalizes___boxed(lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__52; lean_object* l___private_Init_Lean_Elab_Quotation_3__quoteList___main___rarg___closed__2; -lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__5___closed__1; -lean_object* l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__1; +lean_object* l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__33; +lean_object* l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___lambda__3___closed__3; uint8_t lean_nat_dec_eq(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__7; +lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___spec__1___closed__4; extern lean_object* l_Lean_Name_appendIndexAfter___closed__1; +lean_object* l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__5; extern lean_object* l_List_Monad; lean_object* l_Lean_Elab_Term_stxQuot_expand___closed__14; -lean_object* l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__1___closed__1; lean_object* l___private_Init_Lean_Elab_Quotation_3__quoteList___main___rarg___lambda__1___closed__3; -lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__8___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l_List_head_x21___at___private_Init_Lean_Elab_Quotation_8__getHeadInfo___spec__1(lean_object*); extern lean_object* l_Lean_Parser_Term_band___elambda__1___closed__2; -lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__36; +lean_object* l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__54; +lean_object* l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__24; +lean_object* l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__2___closed__5; extern lean_object* l_Lean_Parser_Term_id___elambda__1___closed__2; +lean_object* l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__23; extern lean_object* l_Lean_numLitKind; extern lean_object* l_Lean_Parser_Term_stxQuot___elambda__1___closed__2; lean_object* l___private_Init_Lean_Elab_Quotation_1__quoteName(lean_object*); +lean_object* l_Lean_Prod_hasQuote___rarg___lambda__1___closed__1; extern lean_object* l_Lean_choiceKind___closed__1; +lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_5__elimAntiquotChoices___main___spec__1(lean_object*, lean_object*); lean_object* l___private_Init_Lean_Elab_Quotation_3__quoteList___main___rarg___lambda__2___closed__5; lean_object* l___private_Init_Lean_Elab_Quotation_1__quoteName___main___lambda__2___closed__1; lean_object* l_Lean_Elab_Term_getCurrNamespace(lean_object*, lean_object*); lean_object* l___private_Init_Lean_Elab_Quotation_3__quoteList___main___rarg___lambda__1(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__25; lean_object* l___private_Init_Lean_Elab_Quotation_3__quoteList___main___rarg___lambda__2___closed__3; -lean_object* l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__7; -lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__8___closed__8; -lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__2(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_isStrLit_x3f(lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__1___closed__3; extern lean_object* l_Lean_Parser_Term_letIdDecl___elambda__1___closed__1; -lean_object* l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__2; extern lean_object* l_Lean_Parser_Term_band___elambda__1___closed__1; +lean_object* l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__6; +lean_object* l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___closed__6; lean_object* l___private_Init_Lean_Elab_Quotation_1__quoteName___main___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___closed__4; lean_object* l_Array_umapMAux___main___at_Lean_Elab_Term_match__syntax_expand___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__toPreterm___main___spec__11(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__27; extern lean_object* l_Lean_Parser_Term_letPatDecl___elambda__1___closed__1; lean_object* l_Lean_Elab_Term_stxQuot_expand___closed__27; extern lean_object* l___private_Init_Lean_Elab_Term_14__resumePostponed___lambda__1___closed__1; -lean_object* l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__6; lean_object* l_Lean_Elab_Term_oldGetPatternVars___closed__1; -lean_object* l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___spec__2___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Syntax_paren___elambda__1___closed__1; lean_object* l_Lean_Elab_Term_stxQuot_expand___closed__9; -lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__52; -lean_object* l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__6(lean_object*, lean_object*, lean_object*); +lean_object* l_List_map___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__1(lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__35; lean_object* l___regBuiltinTermElab_Lean_Elab_Term_elabStxQuot___closed__1; lean_object* lean_array_get(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Unhygienic_run___rarg(lean_object*); lean_object* l_Lean_String_HasQuote(lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___closed__3; +lean_object* l___private_Init_Lean_Elab_Quotation_9__explodeHeadPat___closed__3; +lean_object* l___private_Init_Lean_Elab_Quotation_16__oldRunTermElabM(lean_object*); lean_object* lean_array_fset(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_15__oldRunTermElabM(lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__50; lean_object* l_Lean_Elab_Term_oldExpandMatchSyntax___closed__1; lean_object* l_List_lengthAux___main___rarg(lean_object*, lean_object*); +lean_object* l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__4___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_stxQuot_expand___closed__8; -lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__29; -lean_object* l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___spec__2___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__2___closed__2; +lean_object* l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__6; +lean_object* l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__1___closed__6; +lean_object* l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__17; lean_object* l___private_Init_Lean_Elab_Quotation_3__quoteList___main___rarg___lambda__1___closed__5; +lean_object* l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___boxed(lean_object*); extern lean_object* l___private_Init_Lean_Elab_Term_21__mkPairsAux___main___closed__7; -lean_object* l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__2___closed__1; -lean_object* l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__20; +lean_object* l___private_Init_Lean_Elab_Quotation_11__getPatternVarsAux___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___closed__2; +lean_object* l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__2___closed__6; +lean_object* l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__4; +lean_object* l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__38; +lean_object* l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__21; lean_object* l_Lean_Elab_Term_oldGetPatternVars___lambda__1(lean_object*, lean_object*, lean_object*); lean_object* lean_mk_empty_local_ctx(lean_object*); lean_object* l_Lean_Elab_Term_stxQuot_expand___closed__17; -lean_object* l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__32; -lean_object* l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__10; -lean_object* l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__2___closed__4; -lean_object* l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__2; +lean_object* l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__6; +lean_object* l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___spec__2___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Array_hasQuote___rarg___lambda__1___closed__2; +lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Array_hasQuote___rarg(lean_object*, lean_object*); lean_object* l_Nat_repr(lean_object*); -lean_object* l_Lean_Array_HasQuote___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__9; +lean_object* l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__15; +lean_object* l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__48; +lean_object* l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__1___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_stxQuot_expand___closed__4; -lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__35; +lean_object* l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_oldParseExpr___closed__1; -lean_object* l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__3___closed__2; +lean_object* l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__1; extern lean_object* l_Lean_Parser_Term_id___elambda__1___closed__1; -lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__3(lean_object*, lean_object*); -lean_object* l_Lean_Array_HasQuote___rarg(lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_9__explodeHeadPat___lambda__1___closed__2; +lean_object* l___private_Init_Lean_Elab_Quotation_9__explodeHeadPat___lambda__1___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__34; extern lean_object* l_Lean_Elab_Term_expandCDot_x3f___closed__3; -lean_object* l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__24; +lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___spec__1___closed__2; uint8_t l_Lean_Elab_Term_isAntiquot(lean_object*); extern lean_object* l_Lean_Elab_Term_elabListLit___closed__4; -lean_object* l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___spec__2___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__11; -lean_object* l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__3; +lean_object* l_Lean_Name_hasQuote; +lean_object* l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__47; +lean_object* l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___lambda__2___closed__2; +lean_object* l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__60; lean_object* lean_name_mk_string(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_throwError___rarg(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Array_HasQuote___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__10___boxed(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Term_fun___elambda__1___closed__2; +lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__toPreterm___main___spec__1___closed__1; extern lean_object* l_Lean_Elab_Exception_hasToString___closed__1; +lean_object* l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___lambda__3___closed__2; extern lean_object* l_Lean_Parser_Term_explicitUniv___elambda__1___closed__2; extern lean_object* l_PersistentArray_empty___closed__3; +lean_object* l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__16; lean_object* l_Lean_Elab_Term_resolveName(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_10__getPatternVarsAux___main(lean_object*, lean_object*, lean_object*); -lean_object* l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__9___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_9__explodeHeadPat(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_11__getPatternVarsAux___main(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_getCurrMacroScope(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__4; -lean_object* l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2(lean_object*, lean_object*, lean_object*); -lean_object* l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__4(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__46; -lean_object* l___private_Init_Lean_Elab_Quotation_8__explodeHeadPat(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__toPreterm___main___spec__7(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__2; lean_object* l___private_Init_Lean_Elab_Quotation_1__quoteName___main___lambda__2___closed__4; -lean_object* l___private_Init_Lean_Elab_Quotation_15__oldRunTermElabM___rarg___closed__4; -lean_object* l_Lean_Array_HasQuote___rarg___lambda__1___closed__2; -lean_object* l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__16; -lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__31; extern lean_object* l_Lean_Parser_Term_fun___elambda__1___closed__1; -lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__59; -lean_object* l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__6___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__7(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Term_explicitUniv___elambda__1___closed__1; +lean_object* l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__2___closed__2; extern lean_object* l_Lean_Options_empty; +lean_object* l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__24; extern lean_object* l_Lean_Parser_Term_beq___elambda__1___closed__1; -lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__11(lean_object*, lean_object*, lean_object*); -lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__10___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__7; uint8_t l_coeDecidableEq(uint8_t); lean_object* l___regBuiltinTermElab_Lean_Elab_Term_elabMatchSyntax(lean_object*); +lean_object* l_Lean_Array_hasQuote___rarg___lambda__1___closed__3; +lean_object* l_Lean_Array_hasQuote___rarg___boxed(lean_object*, lean_object*); +lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___spec__1___closed__1; extern lean_object* l_Lean_Elab_Term_expandCDot_x3f___closed__2; -lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__8___closed__2; +lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Term_append___elambda__1___closed__1; lean_object* l___private_Init_Lean_Elab_Quotation_3__quoteList___main___rarg(lean_object*, lean_object*); extern lean_object* l_List_head_x21___rarg___closed__2; extern lean_object* l_Lean_nameToExprAux___main___closed__9; -lean_object* l_Lean_Name_HasQuote; -lean_object* l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__2___closed__5; extern lean_object* l_Lean_Parser_Term_beq___elambda__1___closed__2; -lean_object* l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_HeadInfo_Inhabited___closed__2; lean_object* l_Lean_FileMap_ofString(lean_object*); extern lean_object* l_Lean_Parser_Term_let___elambda__1___closed__2; extern lean_object* l_Lean_Parser_Term_hole___elambda__1___closed__1; +lean_object* l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___lambda__2___closed__2; lean_object* l_List_redLength___main___rarg(lean_object*); lean_object* l_Lean_Elab_Term_elabStxQuot(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_List_map___main___at_Lean_Elab_Term_oldGetPatternVars___spec__2(lean_object*); +lean_object* l_Lean_List_hasQuote(lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_16__oldRunTermElabM___rarg___closed__2; +lean_object* l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__49; lean_object* l_Lean_Elab_Term_stxQuot_expand___closed__19; lean_object* l_Array_back___at___private_Init_Lean_Parser_Parser_6__updateCache___spec__1(lean_object*); lean_object* l_Array_iterateMAux___main___at_Array_append___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__2___closed__3; +lean_object* l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__11; +lean_object* l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__2; lean_object* l_Lean_mkFVar(lean_object*); -lean_object* l_List_head_x21___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__2___closed__3; -lean_object* l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__3___closed__1; +lean_object* l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__10; lean_object* l_List_map___main___at_Lean_Elab_Term_oldExpandMatchSyntax___spec__2(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_nullKind___closed__1; +lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__8___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_stxQuot_expand___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__56; +lean_object* l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___closed__1; lean_object* l_Lean_Elab_Term_stxQuot_expand___closed__1; -lean_object* l___private_Init_Lean_Elab_Quotation_8__explodeHeadPat___closed__3; -lean_object* l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_isAntiquot___boxed(lean_object*); extern lean_object* l_Lean_Elab_Term_elabListLit___closed__5; extern lean_object* l___private_Init_Lean_Meta_Message_1__run_x3f___rarg___closed__1; lean_object* l_Lean_Elab_Term_stxQuot_expand___closed__20; -lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__61; +lean_object* l_Lean_Option_hasQuote(lean_object*); uint8_t l_Lean_Syntax_isAtom(lean_object*); lean_object* l_Lean_Parser_categoryParserFn(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Array_hasQuote___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_nullKind___closed__2; extern lean_object* l_Lean_Parser_Term_if___elambda__1___closed__1; -lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__3___boxed(lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Term_str___elambda__1___closed__1; -lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__8___closed__6; lean_object* l_Lean_Elab_Term_oldGetPatternVars___closed__2; +lean_object* l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__3; lean_object* l_List_join___main___rarg(lean_object*); lean_object* l_Lean_Elab_Term_HeadInfo_Inhabited___closed__1; -lean_object* l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__12; lean_object* l___private_Init_Lean_Elab_Quotation_3__quoteList___main___rarg___closed__1; extern lean_object* l_Lean_Unhygienic_MonadQuotation___closed__1; +lean_object* l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__2___closed__8; +lean_object* l___private_Init_Lean_Elab_Quotation_8__getHeadInfo(lean_object*); extern lean_object* l_Lean_Elab_Term_elabArrayLit___closed__10; extern lean_object* l_Lean_Parser_Level_hole___elambda__1___closed__1; -lean_object* l___private_Init_Lean_Elab_Quotation_7__getHeadInfo(lean_object*); lean_object* l___private_Init_Lean_Elab_Quotation_1__quoteName___main___lambda__2___closed__5; +lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__8___closed__1; +lean_object* l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Init_Lean_Elab_Quotation_3__quoteList___main___rarg___lambda__2___closed__1; extern lean_object* l_Lean_Parser_regBuiltinTermParserAttr___closed__4; lean_object* l___private_Init_Lean_Elab_Quotation_3__quoteList___main___rarg___lambda__1___closed__1; -lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__4; -lean_object* l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_KVMap_setName(lean_object*, lean_object*, lean_object*); +lean_object* l_List_map___main___at___private_Init_Lean_Elab_Quotation_16__oldRunTermElabM___spec__2(lean_object*, lean_object*); lean_object* lean_local_ctx_mk_local_decl(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t); -lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__27; extern lean_object* l_Lean_Parser_appPrec; +lean_object* l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__11(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Array_hasQuote(lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_16__oldRunTermElabM___rarg___closed__1; extern lean_object* l_Option_HasRepr___rarg___closed__3; -lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___spec__1(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__43; -lean_object* l_Lean_Array_HasQuote___rarg___lambda__1___closed__3; -lean_object* l_List_map___main___at___private_Init_Lean_Elab_Quotation_15__oldRunTermElabM___spec__2(lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___spec__3___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__8___closed__4; +lean_object* l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__25; +lean_object* l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__14; +lean_object* l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__28; extern lean_object* l_Lean_Parser_Term_str___elambda__1___closed__2; -lean_object* l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__14; -lean_object* l_Lean_Prod_HasQuote___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__44; +lean_object* l___private_Init_Lean_Elab_Quotation_9__explodeHeadPat___lambda__1(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__15; +lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__8___closed__8; +lean_object* l_Lean_Array_hasQuote___rarg___lambda__1___closed__1; extern lean_object* l_Lean_Parser_Level_paren___elambda__1___closed__3; lean_object* l___private_Init_Lean_Elab_Quotation_1__quoteName___main___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Error_toString(lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__8; -lean_object* l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__28; -lean_object* l_Lean_Prod_HasQuote___rarg___lambda__1___closed__2; -lean_object* l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___closed__3; +lean_object* l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__5; +lean_object* l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__10; extern lean_object* l_Lean_Parser_Term_letPatDecl___elambda__1___closed__2; lean_object* l___private_Init_Lean_Elab_Quotation_3__quoteList___main___rarg___closed__3; -lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__4(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_getLCtx(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__17; lean_object* l_Lean_Syntax_setArg(lean_object*, lean_object*, lean_object*); -lean_object* l_List_head_x21___at___private_Init_Lean_Elab_Quotation_7__getHeadInfo___spec__1(lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__57; +lean_object* l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_16__oldRunTermElabM___rarg___closed__4; +lean_object* l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___lambda__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_expand_stx_quot(lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___closed__5; extern lean_object* l_Lean_Parser_Term_if___elambda__1___closed__2; -lean_object* l___private_Init_Lean_Elab_Quotation_12__letBindRhss(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__29; lean_object* l___private_Init_Lean_Elab_Quotation_2__appN(lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__18; +lean_object* l___private_Init_Lean_Elab_Quotation_13__letBindRhss(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern uint8_t l___private_Init_Lean_Elab_Term_7__hasCDot___main___closed__1; -lean_object* l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__33; lean_object* l_Lean_Elab_Term_match__syntax_expand(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkApp(lean_object*, lean_object*); -lean_object* l_Lean_Prod_HasQuote___rarg___lambda__1___closed__1; +lean_object* l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__30; +lean_object* l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__7; +lean_object* l_Array_findMAux___main___at___private_Init_Lean_Elab_Quotation_5__elimAntiquotChoices___main___spec__2(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_stxQuot_expand___closed__22; +lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__toPreterm___main___spec__5(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Term_let___elambda__1___closed__1; lean_object* l_Lean_Syntax_getArgs(lean_object*); lean_object* l_Lean_Elab_Term_stxQuot_expand___closed__25; -lean_object* l_Lean_Array_HasQuote(lean_object*); lean_object* l_Lean_Syntax_getKind(lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__33; lean_object* lean_expand_match_syntax(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__42; extern lean_object* l_Lean_Parser_Term_match__syntax___elambda__1___closed__2; -lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__5(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__1(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__53; lean_object* l___private_Init_Lean_Elab_Quotation_3__quoteList___main___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Term_paren___elambda__1___closed__1; -lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__20; +lean_object* l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___lambda__2___closed__1; +lean_object* l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__4(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__2___closed__1; +lean_object* l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg(lean_object*, lean_object*); lean_object* lean_panic_fn(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__29; +lean_object* l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___lambda__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Init_Lean_Elab_Quotation_1__quoteName___main___lambda__2___closed__6; +lean_object* l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__14; +lean_object* l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__28; extern lean_object* l_Lean_Parser_Term_app___elambda__1___closed__2; -lean_object* l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Prod_HasQuote___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_List_hasQuote___rarg(lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__37; +lean_object* l___private_Init_Lean_Elab_Quotation_6__quoteSyntax(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__26; lean_object* l___private_Init_Lean_Elab_Quotation_1__quoteName___main___lambda__1___closed__3; -lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__10; lean_object* l_Array_umapMAux___main___at_Lean_Elab_Term_match__syntax_expand___spec__1___closed__2; -lean_object* l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__22; -lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__32; -lean_object* l_Lean_List_HasQuote___rarg(lean_object*); -lean_object* l_Lean_Prod_HasQuote___rarg___lambda__1___closed__4; +lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___spec__1(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_LocalContext_mkLambda(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__25; -lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__40; +lean_object* l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__9; lean_object* l_List_map___main___at_Lean_Elab_Term_oldExpandMatchSyntax___spec__1(lean_object*); extern lean_object* l_Lean_Elab_Term_declareBuiltinTermElab___closed__4; +lean_object* l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__55; +lean_object* l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__22; +lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__toPreterm___main___spec__2(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabMatchSyntax(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__11; -lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___spec__2(lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__58; lean_object* l_Lean_Elab_Term_adaptExpander(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkStxStrLit(lean_object*, lean_object*); lean_object* l_Lean_Nat_HasQuote(lean_object*); extern lean_object* l_Lean_Elab_rootNamespace___closed__1; -lean_object* l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___closed__1; -lean_object* l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__37; +lean_object* l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__1___closed__1; uint8_t l_Lean_Elab_Term_isAntiquotSplicePat(lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_HeadInfo_Inhabited; +lean_object* l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_stxQuot_expand___closed__21; +lean_object* l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___lambda__3___closed__1; extern lean_object* l___private_Init_Lean_Meta_LevelDefEq_10__processPostponedStep___closed__1; -lean_object* l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__5; +lean_object* l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__2___closed__4; lean_object* l_Array_umapMAux___main___at_Lean_Elab_Term_match__syntax_expand___spec__1___closed__1; -lean_object* l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___boxed(lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__42; -lean_object* l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__10; -lean_object* l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__7; -lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__53; +lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__toPreterm___main___spec__1(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main(lean_object*, lean_object*, lean_object*); lean_object* l___private_Init_Lean_Elab_Quotation_3__quoteList___main___rarg___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___spec__1___closed__2; lean_object* lean_get_namespace(lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__2(lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Syntax_isNone(lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__24; extern lean_object* l_Lean_TraceState_Inhabited___closed__1; extern lean_object* l_Lean_Parser_Syntax_atom___elambda__1___closed__1; +lean_object* l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___closed__4; lean_object* l_Lean_Elab_resolveGlobalName(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_List_head_x21___at___private_Init_Lean_Elab_Quotation_7__getHeadInfo___spec__1___boxed(lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__15; lean_object* l_Lean_Elab_Term_isAntiquotSplicePat___boxed(lean_object*); lean_object* l_Lean_Elab_Term_getOpenDecls(lean_object*, lean_object*); +lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__10(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__22; lean_object* l___private_Init_Lean_Elab_Quotation_3__quoteList___main___rarg___lambda__1___closed__4; lean_object* l_Lean_Elab_Term_stxQuot_expand___closed__6; -lean_object* l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__17; -lean_object* l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__10; -lean_object* l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___closed__4; extern lean_object* l_Lean_Elab_rootNamespace___closed__2; -lean_object* l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__9(lean_object*, lean_object*, lean_object*); -lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__3(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___spec__3(lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__19; lean_object* l_Lean_Elab_Term_stxQuot_expand___closed__13; +lean_object* l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__12; lean_object* l_Array_toList___rarg(lean_object*); +lean_object* l_Lean_Array_hasQuote___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Expr_Inhabited; -lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__55; +lean_object* l_List_head_x21___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__2___closed__3; lean_object* l_Lean_Elab_Term_addBuiltinTermElab(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_13__exprPlaceholder___closed__1; uint8_t l_Lean_Elab_Term_isAntiquotSplice(lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__3; -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__30; +lean_object* l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__1___closed__2; +lean_object* l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__36; +lean_object* l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__61; uint8_t l_Lean_Syntax_isOfKind(lean_object*, lean_object*); -lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__12(lean_object*, lean_object*, lean_object*); lean_object* l___private_Init_Lean_Elab_Quotation_1__quoteName___main___lambda__3___closed__6; -lean_object* l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___spec__3___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Elab_Term_mkExplicitBinder___closed__4; +lean_object* l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__12; lean_object* l___regBuiltinTermElab_Lean_Elab_Term_elabStxQuot___closed__3; lean_object* l___private_Init_Lean_Elab_Quotation_3__quoteList___main___rarg___lambda__2___closed__2; -lean_object* l___private_Init_Lean_Elab_Quotation_10__getPatternVarsAux___main___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_15__oldRunTermElabM___rarg___closed__3; -lean_object* l___private_Init_Lean_Elab_Quotation_8__explodeHeadPat___lambda__1(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_15__oldRunTermElabM___rarg___closed__5; -lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__7; -lean_object* l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__4; +lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__toPreterm___main___spec__8(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__1___closed__4; +lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__8___closed__2; lean_object* l_Lean_Elab_Term_stxQuot_expand___closed__11; -lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__63; -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___spec__1___closed__1; extern lean_object* l_Lean_Syntax_getKind___closed__3; lean_object* l___regBuiltinTermElab_Lean_Elab_Term_elabStxQuot(lean_object*); -lean_object* l_Array_findMAux___main___at___private_Init_Lean_Elab_Quotation_4__elimAntiquotChoices___main___spec__2(lean_object*, lean_object*, lean_object*); -lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__8___closed__7; -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_4__elimAntiquotChoices___main___spec__1(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__9; -lean_object* l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__3; +lean_object* l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__1___closed__8; +lean_object* l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___closed__1; +lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__toPreterm___main___spec__9(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkStxLit(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___closed__3; lean_object* l_Lean_Syntax_getArg(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__15; +lean_object* l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__5; extern lean_object* l_Lean_MetavarContext_Inhabited___closed__1; -lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__5; +lean_object* l___private_Init_Lean_Elab_Quotation_16__oldRunTermElabM___rarg(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_stxQuot_expand___closed__2; -lean_object* l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__18; -lean_object* l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___closed__2; -lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__12; +lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__3___boxed(lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___lambda__2___closed__4; extern lean_object* l_Lean_Elab_Term_elabListLit___closed__3; lean_object* l_Lean_Elab_Term_stxQuot_expand___closed__23; lean_object* l_Lean_mkNatLit(lean_object*); lean_object* l_Lean_mkStrLit(lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__1; -lean_object* l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Init_Lean_Elab_Quotation_3__quoteList___main___rarg___lambda__1___closed__6; extern lean_object* l_Lean_Meta_DiscrTree_Trie_format___main___rarg___closed__1; lean_object* l_Lean_Syntax_formatStxAux___main(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_nameToExprAux___main___closed__6; lean_object* l_List_toArrayAux___main___rarg(lean_object*, lean_object*); -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___spec__1___closed__4; lean_object* l_ReaderT_pure___at_Lean_Elab_Term_HeadInfo_Inhabited___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__14; -lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__30; -lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__28; extern lean_object* l_System_FilePath_dirName___closed__1; lean_object* l_ReaderT_pure___at_Lean_Elab_Term_HeadInfo_Inhabited___spec__1(lean_object*); -lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__10(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_unsafeCast(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___spec__2___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__58; -lean_object* l___private_Init_Lean_Elab_Quotation_4__elimAntiquotChoices(lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_14__exprPlaceholder___closed__1; +lean_object* l_Lean_Prod_hasQuote___rarg(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___closed__2; lean_object* l_Lean_Syntax_HasQuote; lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_2__appN___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__37; lean_object* l_Lean_Name_toStringWithSep___main(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_8__explodeHeadPat___closed__1; -lean_object* l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__13; -lean_object* l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__1___closed__2; -lean_object* l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__9; -lean_object* l___private_Init_Lean_Elab_Quotation_8__explodeHeadPat___closed__2; -lean_object* l___private_Init_Lean_Elab_Quotation_15__oldRunTermElabM___rarg(lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__8; +lean_object* l___private_Init_Lean_Elab_Quotation_5__elimAntiquotChoices___main(lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_5__elimAntiquotChoices(lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Init_Lean_Elab_Quotation_1__quoteName___main___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Prod_hasQuote(lean_object*, lean_object*); lean_object* l_Lean_Message_toString(lean_object*); -lean_object* l_Lean_List_HasQuote(lean_object*); lean_object* l_ReaderT_pure___at_Lean_Elab_Term_HeadInfo_Inhabited___spec__1___rarg(lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_15__oldRunTermElabM___rarg___closed__2; lean_object* l_ReaderT_bind___at___private_Init_Lean_Elab_Quotation_1__quoteName___main___spec__1(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__2; extern lean_object* l_Lean_Parser_Term_stxQuot___elambda__1___closed__5; -lean_object* l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__1___closed__1; -lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__33; +lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_11__getPatternVarsAux___main___spec__1(lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___spec__1___closed__7; lean_object* l_Lean_Elab_Term_stxQuot_expand___closed__10; extern lean_object* l_List_zip___rarg___closed__1; +lean_object* l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__16; lean_object* l___private_Init_Lean_Elab_Quotation_3__quoteList___main___rarg___lambda__2___closed__6; lean_object* l_Lean_Elab_Term_elabMatchSyntax___closed__1; -lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__26; lean_object* l_Lean_mkConst(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__9; +lean_object* l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___lambda__1___closed__2; lean_object* l___private_Init_Lean_Elab_Quotation_1__quoteName___main___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__8; -lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__37; +lean_object* l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___spec__3___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Term_and___elambda__1___closed__1; extern lean_object* l_Lean_Parser_Term_fun___elambda__1___closed__10; -lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__13(lean_object*, lean_object*, lean_object*); +lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__toPreterm___main___spec__6(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__43; +lean_object* l_Array_findMAux___main___at___private_Init_Lean_Elab_Quotation_5__elimAntiquotChoices___main___spec__2___boxed(lean_object*, lean_object*, lean_object*); lean_object* lean_name_mk_numeral(lean_object*, lean_object*); +lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__8___closed__6; +lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__toPreterm___main___spec__10(lean_object*, lean_object*, lean_object*); lean_object* l___private_Init_Lean_Elab_Quotation_1__quoteName___main___lambda__3___closed__2; -lean_object* l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__3___closed__3; -lean_object* l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__3___closed__1; lean_object* l___private_Init_Lean_Elab_Quotation_1__quoteName___main___lambda__2___closed__7; +lean_object* l_List_head_x21___at___private_Init_Lean_Elab_Quotation_8__getHeadInfo___spec__1___boxed(lean_object*); lean_object* l_ReaderT_map___at_Lean_Elab_Term_oldGetPatternVars___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_List_zipWith___main___rarg(lean_object*, lean_object*, lean_object*); lean_object* l___private_Init_Lean_Elab_Quotation_3__quoteList___main___rarg___lambda__2___closed__4; -lean_object* l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__8; -lean_object* l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Elab_Term_elabArrayLit___closed__7; -lean_object* l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__2; -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___spec__1___closed__6; +lean_object* l_Lean_Option_hasQuote___rarg(lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___lambda__4(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__57; lean_object* l_Array_anyRangeMAux___main___at_Lean_Elab_Term_isAntiquotSplicePat___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__8___closed__3; -lean_object* l___private_Init_Lean_Elab_Quotation_15__oldRunTermElabM___rarg___closed__1; +lean_object* l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__17; extern lean_object* l_Lean_NameGenerator_Inhabited___closed__3; -lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__8___closed__5; -lean_object* l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__1___closed__4; -lean_object* l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__3___closed__2; -lean_object* l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__4; +lean_object* l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__20; +lean_object* l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___lambda__1___closed__4; +lean_object* l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___closed__3; +lean_object* l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_string_dec_eq(lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___lambda__3___closed__2; uint8_t lean_nat_dec_lt(lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__32; lean_object* l_Lean_Elab_Term_stxQuot_expand___closed__16; lean_object* l_monadInhabited___rarg(lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__22; +lean_object* l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__10; extern lean_object* l_Lean_Parser_mkAntiquot___closed__1; +lean_object* l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___lambda__1___closed__1; lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_2__appN___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__27; lean_object* _init_l_Lean_Syntax_HasQuote() { _start: { @@ -1132,7 +1158,7 @@ x_2 = l___private_Init_Lean_Elab_Quotation_1__quoteName___main(x_1); return x_2; } } -lean_object* _init_l_Lean_Name_HasQuote___closed__1() { +lean_object* _init_l_Lean_Name_hasQuote___closed__1() { _start: { lean_object* x_1; @@ -1140,11 +1166,11 @@ x_1 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_1__quoteNa return x_1; } } -lean_object* _init_l_Lean_Name_HasQuote() { +lean_object* _init_l_Lean_Name_hasQuote() { _start: { lean_object* x_1; -x_1 = l_Lean_Name_HasQuote___closed__1; +x_1 = l_Lean_Name_hasQuote___closed__1; return x_1; } } @@ -1236,7 +1262,7 @@ lean_dec(x_2); return x_3; } } -lean_object* _init_l_Lean_Prod_HasQuote___rarg___lambda__1___closed__1() { +lean_object* _init_l_Lean_Prod_hasQuote___rarg___lambda__1___closed__1() { _start: { lean_object* x_1; @@ -1244,22 +1270,22 @@ x_1 = lean_mk_string("_root_.Prod.mk"); return x_1; } } -lean_object* _init_l_Lean_Prod_HasQuote___rarg___lambda__1___closed__2() { +lean_object* _init_l_Lean_Prod_hasQuote___rarg___lambda__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Prod_HasQuote___rarg___lambda__1___closed__1; +x_1 = l_Lean_Prod_hasQuote___rarg___lambda__1___closed__1; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -lean_object* _init_l_Lean_Prod_HasQuote___rarg___lambda__1___closed__3() { +lean_object* _init_l_Lean_Prod_hasQuote___rarg___lambda__1___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Prod_HasQuote___rarg___lambda__1___closed__1; +x_1 = l_Lean_Prod_hasQuote___rarg___lambda__1___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Lean_Prod_HasQuote___rarg___lambda__1___closed__2; +x_3 = l_Lean_Prod_hasQuote___rarg___lambda__1___closed__2; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -1267,7 +1293,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -lean_object* _init_l_Lean_Prod_HasQuote___rarg___lambda__1___closed__4() { +lean_object* _init_l_Lean_Prod_hasQuote___rarg___lambda__1___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -1277,24 +1303,24 @@ x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l_Lean_Prod_HasQuote___rarg___lambda__1___closed__5() { +lean_object* _init_l_Lean_Prod_hasQuote___rarg___lambda__1___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Prod_HasQuote___rarg___lambda__1___closed__4; +x_1 = l_Lean_Prod_hasQuote___rarg___lambda__1___closed__4; x_2 = l___private_Init_Lean_Elab_Term_21__mkPairsAux___main___closed__6; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* l_Lean_Prod_HasQuote___rarg___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l_Lean_Prod_hasQuote___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; 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; x_8 = lean_box(0); -x_9 = l_Lean_Prod_HasQuote___rarg___lambda__1___closed__5; +x_9 = l_Lean_Prod_hasQuote___rarg___lambda__1___closed__5; x_10 = lean_name_mk_numeral(x_9, x_5); -x_11 = l_Lean_Prod_HasQuote___rarg___lambda__1___closed__3; +x_11 = l_Lean_Prod_hasQuote___rarg___lambda__1___closed__3; x_12 = l___private_Init_Lean_Elab_Term_21__mkPairsAux___main___closed__9; x_13 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_13, 0, x_8); @@ -1328,7 +1354,7 @@ lean_ctor_set(x_29, 1, x_7); return x_29; } } -lean_object* l_Lean_Prod_HasQuote___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_Prod_hasQuote___rarg(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; @@ -1337,7 +1363,7 @@ lean_inc(x_4); x_5 = lean_ctor_get(x_3, 1); lean_inc(x_5); lean_dec(x_3); -x_6 = lean_alloc_closure((void*)(l_Lean_Prod_HasQuote___rarg___lambda__1___boxed), 7, 4); +x_6 = lean_alloc_closure((void*)(l_Lean_Prod_hasQuote___rarg___lambda__1___boxed), 7, 4); lean_closure_set(x_6, 0, x_1); lean_closure_set(x_6, 1, x_4); lean_closure_set(x_6, 2, x_2); @@ -1350,19 +1376,19 @@ x_9 = l_Lean_Unhygienic_run___rarg(x_8); return x_9; } } -lean_object* l_Lean_Prod_HasQuote(lean_object* x_1, lean_object* x_2) { +lean_object* l_Lean_Prod_hasQuote(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = lean_alloc_closure((void*)(l_Lean_Prod_HasQuote___rarg), 3, 0); +x_3 = lean_alloc_closure((void*)(l_Lean_Prod_hasQuote___rarg), 3, 0); return x_3; } } -lean_object* l_Lean_Prod_HasQuote___rarg___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l_Lean_Prod_hasQuote___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_Lean_Prod_HasQuote___rarg___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +x_8 = l_Lean_Prod_hasQuote___rarg___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7); lean_dec(x_6); return x_8; } @@ -1679,7 +1705,7 @@ x_2 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_3__quoteLi return x_2; } } -lean_object* l_Lean_List_HasQuote___rarg(lean_object* x_1) { +lean_object* l_Lean_List_hasQuote___rarg(lean_object* x_1) { _start: { lean_object* x_2; @@ -1688,15 +1714,15 @@ lean_closure_set(x_2, 0, x_1); return x_2; } } -lean_object* l_Lean_List_HasQuote(lean_object* x_1) { +lean_object* l_Lean_List_hasQuote(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Lean_List_HasQuote___rarg), 1, 0); +x_2 = lean_alloc_closure((void*)(l_Lean_List_hasQuote___rarg), 1, 0); return x_2; } } -lean_object* _init_l_Lean_Array_HasQuote___rarg___lambda__1___closed__1() { +lean_object* _init_l_Lean_Array_hasQuote___rarg___lambda__1___closed__1() { _start: { lean_object* x_1; @@ -1704,22 +1730,22 @@ x_1 = lean_mk_string("_root_.List.toArray"); return x_1; } } -lean_object* _init_l_Lean_Array_HasQuote___rarg___lambda__1___closed__2() { +lean_object* _init_l_Lean_Array_hasQuote___rarg___lambda__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Array_HasQuote___rarg___lambda__1___closed__1; +x_1 = l_Lean_Array_hasQuote___rarg___lambda__1___closed__1; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -lean_object* _init_l_Lean_Array_HasQuote___rarg___lambda__1___closed__3() { +lean_object* _init_l_Lean_Array_hasQuote___rarg___lambda__1___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Array_HasQuote___rarg___lambda__1___closed__1; +x_1 = l_Lean_Array_hasQuote___rarg___lambda__1___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Lean_Array_HasQuote___rarg___lambda__1___closed__2; +x_3 = l_Lean_Array_hasQuote___rarg___lambda__1___closed__2; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -1727,7 +1753,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -lean_object* _init_l_Lean_Array_HasQuote___rarg___lambda__1___closed__4() { +lean_object* _init_l_Lean_Array_hasQuote___rarg___lambda__1___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -1737,14 +1763,14 @@ x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* l_Lean_Array_HasQuote___rarg___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_Lean_Array_hasQuote___rarg___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; 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; x_5 = lean_box(0); -x_6 = l_Lean_Array_HasQuote___rarg___lambda__1___closed__4; +x_6 = l_Lean_Array_hasQuote___rarg___lambda__1___closed__4; x_7 = lean_name_mk_numeral(x_6, x_2); -x_8 = l_Lean_Array_HasQuote___rarg___lambda__1___closed__3; +x_8 = l_Lean_Array_hasQuote___rarg___lambda__1___closed__3; x_9 = l_Lean_Elab_Term_elabArrayLit___closed__10; x_10 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_10, 0, x_5); @@ -1771,13 +1797,13 @@ lean_ctor_set(x_21, 1, x_4); return x_21; } } -lean_object* l_Lean_Array_HasQuote___rarg(lean_object* x_1, lean_object* x_2) { +lean_object* l_Lean_Array_hasQuote___rarg(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; x_3 = l_Array_toList___rarg(x_2); x_4 = l___private_Init_Lean_Elab_Quotation_3__quoteList___main___rarg(x_1, x_3); -x_5 = lean_alloc_closure((void*)(l_Lean_Array_HasQuote___rarg___lambda__1___boxed), 4, 1); +x_5 = lean_alloc_closure((void*)(l_Lean_Array_hasQuote___rarg___lambda__1___boxed), 4, 1); lean_closure_set(x_5, 0, x_4); x_6 = l_Lean_Unhygienic_MonadQuotation___closed__1; x_7 = lean_alloc_closure((void*)(l_ReaderT_bind___at___private_Init_Lean_Elab_Quotation_1__quoteName___main___spec__1___rarg), 4, 2); @@ -1787,32 +1813,381 @@ x_8 = l_Lean_Unhygienic_run___rarg(x_7); return x_8; } } -lean_object* l_Lean_Array_HasQuote(lean_object* x_1) { +lean_object* l_Lean_Array_hasQuote(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Lean_Array_HasQuote___rarg___boxed), 2, 0); +x_2 = lean_alloc_closure((void*)(l_Lean_Array_hasQuote___rarg___boxed), 2, 0); return x_2; } } -lean_object* l_Lean_Array_HasQuote___rarg___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_Lean_Array_hasQuote___rarg___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; -x_5 = l_Lean_Array_HasQuote___rarg___lambda__1(x_1, x_2, x_3, x_4); +x_5 = l_Lean_Array_hasQuote___rarg___lambda__1(x_1, x_2, x_3, x_4); lean_dec(x_3); return x_5; } } -lean_object* l_Lean_Array_HasQuote___rarg___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l_Lean_Array_hasQuote___rarg___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l_Lean_Array_HasQuote___rarg(x_1, x_2); +x_3 = l_Lean_Array_hasQuote___rarg(x_1, x_2); lean_dec(x_2); return x_3; } } +lean_object* _init_l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__1___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("_root_.Option.none"); +return x_1; +} +} +lean_object* _init_l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__1___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__1___closed__1; +x_2 = lean_string_utf8_byte_size(x_1); +return x_2; +} +} +lean_object* _init_l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__1___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__1___closed__1; +x_2 = lean_unsigned_to_nat(0u); +x_3 = l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__1___closed__2; +x_4 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_4, 0, x_1); +lean_ctor_set(x_4, 1, x_2); +lean_ctor_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* _init_l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__1___closed__4() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("Option"); +return x_1; +} +} +lean_object* _init_l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__1___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Elab_rootNamespace___closed__2; +x_2 = l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__1___closed__4; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +lean_object* _init_l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__1___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__1___closed__5; +x_2 = l_Option_HasRepr___rarg___closed__1; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +lean_object* _init_l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__1___closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__1___closed__4; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +lean_object* _init_l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__1___closed__8() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__1___closed__7; +x_2 = l_Option_HasRepr___rarg___closed__1; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +lean_object* _init_l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__1___closed__9() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__1___closed__8; +x_3 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; +} +} +lean_object* _init_l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__1___closed__10() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__1___closed__9; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; +} +} +lean_object* l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; +x_4 = lean_box(0); +x_5 = l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__1___closed__6; +x_6 = lean_name_mk_numeral(x_5, x_1); +x_7 = l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__1___closed__3; +x_8 = l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__1___closed__10; +x_9 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_9, 0, x_4); +lean_ctor_set(x_9, 1, x_7); +lean_ctor_set(x_9, 2, x_6); +lean_ctor_set(x_9, 3, x_8); +x_10 = l_Array_empty___closed__1; +x_11 = lean_array_push(x_10, x_9); +x_12 = l___private_Init_Lean_Elab_Term_8__expandCDot___closed__4; +x_13 = lean_array_push(x_11, x_12); +x_14 = l_Lean_Parser_Term_id___elambda__1___closed__2; +x_15 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_15, 0, x_14); +lean_ctor_set(x_15, 1, 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_3); +return x_16; +} +} +lean_object* _init_l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__2___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("_root_.Option.some"); +return x_1; +} +} +lean_object* _init_l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__2___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__2___closed__1; +x_2 = lean_string_utf8_byte_size(x_1); +return x_2; +} +} +lean_object* _init_l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__2___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__2___closed__1; +x_2 = lean_unsigned_to_nat(0u); +x_3 = l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__2___closed__2; +x_4 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_4, 0, x_1); +lean_ctor_set(x_4, 1, x_2); +lean_ctor_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* _init_l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__2___closed__4() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("some"); +return x_1; +} +} +lean_object* _init_l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__2___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__1___closed__5; +x_2 = l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__2___closed__4; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +lean_object* _init_l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__2___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__1___closed__7; +x_2 = l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__2___closed__4; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +lean_object* _init_l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__2___closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__2___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_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__2___closed__8() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__2___closed__7; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; +} +} +lean_object* l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; +x_6 = lean_box(0); +x_7 = l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__2___closed__5; +x_8 = lean_name_mk_numeral(x_7, x_3); +x_9 = l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__2___closed__3; +x_10 = l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__2___closed__8; +x_11 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_11, 0, x_6); +lean_ctor_set(x_11, 1, x_9); +lean_ctor_set(x_11, 2, x_8); +lean_ctor_set(x_11, 3, x_10); +x_12 = l_Array_empty___closed__1; +x_13 = lean_array_push(x_12, x_11); +x_14 = l___private_Init_Lean_Elab_Term_8__expandCDot___closed__4; +x_15 = lean_array_push(x_13, x_14); +x_16 = l_Lean_Parser_Term_id___elambda__1___closed__2; +x_17 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_17, 0, x_16); +lean_ctor_set(x_17, 1, x_15); +x_18 = lean_array_push(x_12, x_17); +x_19 = lean_apply_1(x_1, x_2); +x_20 = lean_array_push(x_18, x_19); +x_21 = l_Lean_Parser_Term_app___elambda__1___closed__2; +x_22 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_22, 0, x_21); +lean_ctor_set(x_22, 1, x_20); +x_23 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_23, 0, x_22); +lean_ctor_set(x_23, 1, x_5); +return x_23; +} +} +lean_object* _init_l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__1___boxed), 3, 0); +return x_1; +} +} +lean_object* _init_l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Unhygienic_MonadQuotation___closed__1; +x_2 = l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___closed__1; +x_3 = lean_alloc_closure((void*)(l_ReaderT_bind___at___private_Init_Lean_Elab_Quotation_1__quoteName___main___spec__1___rarg), 4, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___closed__2; +x_2 = l_Lean_Unhygienic_run___rarg(x_1); +return x_2; +} +} +lean_object* l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg(lean_object* x_1, lean_object* x_2) { +_start: +{ +if (lean_obj_tag(x_2) == 0) +{ +lean_object* x_3; +lean_dec(x_1); +x_3 = l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___closed__3; +return x_3; +} +else +{ +lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; +x_4 = lean_ctor_get(x_2, 0); +lean_inc(x_4); +lean_dec(x_2); +x_5 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__2___boxed), 5, 2); +lean_closure_set(x_5, 0, x_1); +lean_closure_set(x_5, 1, x_4); +x_6 = l_Lean_Unhygienic_MonadQuotation___closed__1; +x_7 = lean_alloc_closure((void*)(l_ReaderT_bind___at___private_Init_Lean_Elab_Quotation_1__quoteName___main___spec__1___rarg), 4, 2); +lean_closure_set(x_7, 0, x_6); +lean_closure_set(x_7, 1, x_5); +x_8 = l_Lean_Unhygienic_run___rarg(x_7); +return x_8; +} +} +} +lean_object* l___private_Init_Lean_Elab_Quotation_4__quoteOption(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg), 2, 0); +return x_2; +} +} +lean_object* l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; +x_4 = l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__1(x_1, x_2, x_3); +lean_dec(x_2); +return x_4; +} +} +lean_object* l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +lean_object* x_6; +x_6 = l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__2(x_1, x_2, x_3, x_4, x_5); +lean_dec(x_4); +return x_6; +} +} +lean_object* l_Lean_Option_hasQuote___rarg(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg), 2, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +lean_object* l_Lean_Option_hasQuote(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l_Lean_Option_hasQuote___rarg), 1, 0); +return x_2; +} +} uint8_t l_Lean_Elab_Term_isAntiquot(lean_object* x_1) { _start: { @@ -2071,7 +2446,7 @@ x_3 = lean_box(x_2); return x_3; } } -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_4__elimAntiquotChoices___main___spec__1(lean_object* x_1, lean_object* x_2) { +lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_5__elimAntiquotChoices___main___spec__1(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; uint8_t x_4; @@ -2094,7 +2469,7 @@ x_8 = lean_box(0); x_9 = x_8; x_10 = lean_array_fset(x_2, x_1, x_9); lean_inc(x_7); -x_11 = l___private_Init_Lean_Elab_Quotation_4__elimAntiquotChoices___main(x_7); +x_11 = l___private_Init_Lean_Elab_Quotation_5__elimAntiquotChoices___main(x_7); x_12 = lean_unsigned_to_nat(1u); x_13 = lean_nat_add(x_1, x_12); x_14 = x_11; @@ -2107,7 +2482,7 @@ goto _start; } } } -lean_object* l_Array_findMAux___main___at___private_Init_Lean_Elab_Quotation_4__elimAntiquotChoices___main___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Array_findMAux___main___at___private_Init_Lean_Elab_Quotation_5__elimAntiquotChoices___main___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -2195,7 +2570,7 @@ return x_23; } } } -lean_object* l___private_Init_Lean_Elab_Quotation_4__elimAntiquotChoices___main(lean_object* x_1) { +lean_object* l___private_Init_Lean_Elab_Quotation_5__elimAntiquotChoices___main(lean_object* x_1) { _start: { if (lean_obj_tag(x_1) == 1) @@ -2227,7 +2602,7 @@ if (x_9 == 0) { lean_object* x_10; lean_object* x_11; x_10 = lean_unsigned_to_nat(0u); -x_11 = l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_4__elimAntiquotChoices___main___spec__1(x_10, x_5); +x_11 = l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_5__elimAntiquotChoices___main___spec__1(x_10, x_5); lean_ctor_set(x_1, 1, x_11); return x_1; } @@ -2236,12 +2611,12 @@ else lean_object* x_12; lean_object* x_13; lean_dec(x_2); x_12 = lean_unsigned_to_nat(0u); -x_13 = l_Array_findMAux___main___at___private_Init_Lean_Elab_Quotation_4__elimAntiquotChoices___main___spec__2(x_3, x_5, x_12); +x_13 = l_Array_findMAux___main___at___private_Init_Lean_Elab_Quotation_5__elimAntiquotChoices___main___spec__2(x_3, x_5, x_12); if (lean_obj_tag(x_13) == 0) { lean_object* x_14; lean_object* x_15; x_14 = lean_name_mk_string(x_3, x_8); -x_15 = l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_4__elimAntiquotChoices___main___spec__1(x_12, x_5); +x_15 = l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_5__elimAntiquotChoices___main___spec__1(x_12, x_5); lean_ctor_set(x_1, 1, x_15); lean_ctor_set(x_1, 0, x_14); return x_1; @@ -2273,7 +2648,7 @@ if (x_20 == 0) { lean_object* x_21; lean_object* x_22; lean_object* x_23; x_21 = lean_unsigned_to_nat(0u); -x_22 = l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_4__elimAntiquotChoices___main___spec__1(x_21, x_17); +x_22 = l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_5__elimAntiquotChoices___main___spec__1(x_21, x_17); x_23 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_23, 0, x_2); lean_ctor_set(x_23, 1, x_22); @@ -2284,12 +2659,12 @@ else lean_object* x_24; lean_object* x_25; lean_dec(x_2); x_24 = lean_unsigned_to_nat(0u); -x_25 = l_Array_findMAux___main___at___private_Init_Lean_Elab_Quotation_4__elimAntiquotChoices___main___spec__2(x_3, x_17, x_24); +x_25 = l_Array_findMAux___main___at___private_Init_Lean_Elab_Quotation_5__elimAntiquotChoices___main___spec__2(x_3, x_17, x_24); if (lean_obj_tag(x_25) == 0) { lean_object* x_26; lean_object* x_27; lean_object* x_28; x_26 = lean_name_mk_string(x_3, x_19); -x_27 = l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_4__elimAntiquotChoices___main___spec__1(x_24, x_17); +x_27 = l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_5__elimAntiquotChoices___main___spec__1(x_24, x_17); x_28 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_28, 0, x_26); lean_ctor_set(x_28, 1, x_27); @@ -2319,7 +2694,7 @@ x_31 = lean_ctor_get(x_1, 1); x_32 = lean_ctor_get(x_1, 0); lean_dec(x_32); x_33 = lean_unsigned_to_nat(0u); -x_34 = l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_4__elimAntiquotChoices___main___spec__1(x_33, x_31); +x_34 = l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_5__elimAntiquotChoices___main___spec__1(x_33, x_31); lean_ctor_set(x_1, 1, x_34); return x_1; } @@ -2330,7 +2705,7 @@ x_35 = lean_ctor_get(x_1, 1); lean_inc(x_35); lean_dec(x_1); x_36 = lean_unsigned_to_nat(0u); -x_37 = l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_4__elimAntiquotChoices___main___spec__1(x_36, x_35); +x_37 = l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_5__elimAntiquotChoices___main___spec__1(x_36, x_35); x_38 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_38, 0, x_2); lean_ctor_set(x_38, 1, x_37); @@ -2349,7 +2724,7 @@ x_40 = lean_ctor_get(x_1, 1); x_41 = lean_ctor_get(x_1, 0); lean_dec(x_41); x_42 = lean_unsigned_to_nat(0u); -x_43 = l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_4__elimAntiquotChoices___main___spec__1(x_42, x_40); +x_43 = l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_5__elimAntiquotChoices___main___spec__1(x_42, x_40); lean_ctor_set(x_1, 1, x_43); return x_1; } @@ -2360,7 +2735,7 @@ x_44 = lean_ctor_get(x_1, 1); lean_inc(x_44); lean_dec(x_1); x_45 = lean_unsigned_to_nat(0u); -x_46 = l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_4__elimAntiquotChoices___main___spec__1(x_45, x_44); +x_46 = l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_5__elimAntiquotChoices___main___spec__1(x_45, x_44); x_47 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_47, 0, x_2); lean_ctor_set(x_47, 1, x_46); @@ -2374,25 +2749,25 @@ return x_1; } } } -lean_object* l_Array_findMAux___main___at___private_Init_Lean_Elab_Quotation_4__elimAntiquotChoices___main___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Array_findMAux___main___at___private_Init_Lean_Elab_Quotation_5__elimAntiquotChoices___main___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_Array_findMAux___main___at___private_Init_Lean_Elab_Quotation_4__elimAntiquotChoices___main___spec__2(x_1, x_2, x_3); +x_4 = l_Array_findMAux___main___at___private_Init_Lean_Elab_Quotation_5__elimAntiquotChoices___main___spec__2(x_1, x_2, x_3); lean_dec(x_2); lean_dec(x_1); return x_4; } } -lean_object* l___private_Init_Lean_Elab_Quotation_4__elimAntiquotChoices(lean_object* x_1) { +lean_object* l___private_Init_Lean_Elab_Quotation_5__elimAntiquotChoices(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l___private_Init_Lean_Elab_Quotation_4__elimAntiquotChoices___main(x_1); +x_2 = l___private_Init_Lean_Elab_Quotation_5__elimAntiquotChoices___main(x_1); return x_2; } } -lean_object* _init_l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___spec__1___closed__1() { +lean_object* _init_l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___spec__1___closed__1() { _start: { lean_object* x_1; @@ -2400,22 +2775,22 @@ x_1 = lean_mk_string("Array.push"); return x_1; } } -lean_object* _init_l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___spec__1___closed__2() { +lean_object* _init_l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___spec__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___spec__1___closed__1; +x_1 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___spec__1___closed__1; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -lean_object* _init_l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___spec__1___closed__3() { +lean_object* _init_l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___spec__1___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___spec__1___closed__1; +x_1 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___spec__1___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___spec__1___closed__2; +x_3 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___spec__1___closed__2; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -2423,7 +2798,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -lean_object* _init_l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___spec__1___closed__4() { +lean_object* _init_l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___spec__1___closed__4() { _start: { lean_object* x_1; @@ -2431,7 +2806,7 @@ x_1 = lean_mk_string("push"); return x_1; } } -lean_object* _init_l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___spec__1___closed__5() { +lean_object* _init_l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___spec__1___closed__5() { _start: { lean_object* x_1; @@ -2439,22 +2814,22 @@ x_1 = lean_mk_string("Array.append"); return x_1; } } -lean_object* _init_l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___spec__1___closed__6() { +lean_object* _init_l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___spec__1___closed__6() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___spec__1___closed__5; +x_1 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___spec__1___closed__5; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -lean_object* _init_l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___spec__1___closed__7() { +lean_object* _init_l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___spec__1___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___spec__1___closed__5; +x_1 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___spec__1___closed__5; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___spec__1___closed__6; +x_3 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___spec__1___closed__6; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -2462,7 +2837,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, 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* l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___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* 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) { _start: { lean_object* x_16; uint8_t x_17; @@ -2541,7 +2916,7 @@ lean_inc(x_9); x_68 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_68, 0, x_67); lean_ctor_set(x_68, 1, x_9); -x_69 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___spec__1___closed__7; +x_69 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___spec__1___closed__7; lean_inc(x_6); x_70 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_70, 0, x_6); @@ -2580,7 +2955,7 @@ block_52: lean_object* x_23; lean_dec(x_22); lean_inc(x_14); -x_23 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main(x_19, x_14, x_15); +x_23 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main(x_19, x_14, x_15); if (lean_obj_tag(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_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; @@ -2598,7 +2973,7 @@ lean_dec(x_26); x_29 = l_Lean_Parser_Term_app___elambda__1___closed__1; lean_inc(x_3); x_30 = lean_name_mk_string(x_3, x_29); -x_31 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___spec__1___closed__4; +x_31 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___spec__1___closed__4; lean_inc(x_7); x_32 = lean_name_mk_string(x_7, x_31); lean_inc(x_32); @@ -2611,7 +2986,7 @@ lean_inc(x_9); x_35 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_35, 0, x_34); lean_ctor_set(x_35, 1, x_9); -x_36 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___spec__1___closed__3; +x_36 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___spec__1___closed__3; lean_inc(x_6); x_37 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_37, 0, x_6); @@ -2681,7 +3056,7 @@ return x_51; } } } -lean_object* l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___spec__3___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___spec__3___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; @@ -2717,7 +3092,7 @@ x_26 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_26, 0, x_25); lean_ctor_set(x_26, 1, x_24); x_27 = lean_array_push(x_12, x_26); -x_28 = l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___spec__3(x_2); +x_28 = l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___spec__3(x_2); x_29 = lean_array_push(x_27, x_28); x_30 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_30, 0, x_25); @@ -2728,7 +3103,7 @@ lean_ctor_set(x_31, 1, x_5); return x_31; } } -lean_object* l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___spec__3(lean_object* x_1) { +lean_object* l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___spec__3(lean_object* x_1) { _start: { if (lean_obj_tag(x_1) == 0) @@ -2745,7 +3120,7 @@ lean_inc(x_3); x_4 = lean_ctor_get(x_1, 1); lean_inc(x_4); lean_dec(x_1); -x_5 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___spec__3___lambda__1___boxed), 5, 2); +x_5 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___spec__3___lambda__1___boxed), 5, 2); lean_closure_set(x_5, 0, x_3); lean_closure_set(x_5, 1, x_4); x_6 = l_Lean_Unhygienic_MonadQuotation___closed__1; @@ -2757,7 +3132,7 @@ return x_8; } } } -lean_object* l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___spec__2___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +lean_object* l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___spec__2___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { _start: { lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; @@ -2774,7 +3149,7 @@ lean_ctor_set(x_19, 1, x_2); x_20 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_20, 0, x_19); lean_ctor_set(x_20, 1, x_2); -x_21 = l_Lean_Prod_HasQuote___rarg___lambda__1___closed__3; +x_21 = l_Lean_Prod_hasQuote___rarg___lambda__1___closed__3; x_22 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_22, 0, x_3); lean_ctor_set(x_22, 1, x_21); @@ -2795,7 +3170,7 @@ x_29 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_29, 0, x_8); lean_ctor_set(x_29, 1, x_28); x_30 = lean_array_push(x_4, x_29); -x_31 = l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___spec__3(x_9); +x_31 = l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___spec__3(x_9); x_32 = lean_array_push(x_30, x_31); x_33 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_33, 0, x_8); @@ -2806,7 +3181,7 @@ lean_ctor_set(x_34, 1, x_12); return x_34; } } -lean_object* l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___spec__2___lambda__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___spec__2___lambda__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; uint8_t x_21; @@ -2830,7 +3205,7 @@ x_18 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_18, 0, x_17); lean_ctor_set(x_18, 1, x_16); x_19 = lean_array_push(x_13, x_18); -x_20 = l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___spec__2(x_1); +x_20 = l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___spec__2(x_1); x_21 = !lean_is_exclusive(x_2); if (x_21 == 0) { @@ -2839,7 +3214,7 @@ x_22 = lean_ctor_get(x_2, 0); x_23 = lean_ctor_get(x_2, 1); x_24 = l_Lean_Elab_rootNamespace___closed__2; x_25 = l_Lean_Parser_Term_app___elambda__1___closed__2; -x_26 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___spec__2___lambda__1___boxed), 12, 9); +x_26 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___spec__2___lambda__1___boxed), 12, 9); lean_closure_set(x_26, 0, x_24); lean_closure_set(x_26, 1, x_9); lean_closure_set(x_26, 2, x_6); @@ -2877,7 +3252,7 @@ lean_inc(x_35); lean_dec(x_2); x_37 = l_Lean_Elab_rootNamespace___closed__2; x_38 = l_Lean_Parser_Term_app___elambda__1___closed__2; -x_39 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___spec__2___lambda__1___boxed), 12, 9); +x_39 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___spec__2___lambda__1___boxed), 12, 9); lean_closure_set(x_39, 0, x_37); lean_closure_set(x_39, 1, x_9); lean_closure_set(x_39, 2, x_6); @@ -2908,7 +3283,7 @@ return x_48; } } } -lean_object* l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___spec__2(lean_object* x_1) { +lean_object* l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___spec__2(lean_object* x_1) { _start: { if (lean_obj_tag(x_1) == 0) @@ -2925,7 +3300,7 @@ lean_inc(x_3); x_4 = lean_ctor_get(x_1, 1); lean_inc(x_4); lean_dec(x_1); -x_5 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___spec__2___lambda__2___boxed), 5, 2); +x_5 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___spec__2___lambda__2___boxed), 5, 2); lean_closure_set(x_5, 0, x_4); lean_closure_set(x_5, 1, x_3); x_6 = l_Lean_Unhygienic_MonadQuotation___closed__1; @@ -2937,7 +3312,7 @@ return x_8; } } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__1() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__1() { _start: { lean_object* x_1; @@ -2945,22 +3320,22 @@ x_1 = lean_mk_string("Array.empty"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__2() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__1; +x_1 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__1; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__3() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__1; +x_1 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__2; +x_3 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__2; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -2968,7 +3343,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__4() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__4() { _start: { lean_object* x_1; @@ -2976,17 +3351,17 @@ x_1 = lean_mk_string("Array"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__5() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__4; +x_2 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__4; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__6() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__6() { _start: { lean_object* x_1; @@ -2994,41 +3369,41 @@ x_1 = lean_mk_string("empty"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__7() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__5; -x_2 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__6; +x_1 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__5; +x_2 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__6; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__8() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___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_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__7; +x_2 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__7; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__9() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__8; +x_2 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__8; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__10() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__10() { _start: { lean_object* x_1; @@ -3036,22 +3411,22 @@ x_1 = lean_mk_string("Syntax.node"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__11() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__11() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__10; +x_1 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__10; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__12() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__12() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__10; +x_1 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__10; x_2 = lean_unsigned_to_nat(0u); -x_3 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__11; +x_3 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__11; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -3059,7 +3434,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__13() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__13() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -3069,17 +3444,17 @@ x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__14() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__14() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__13; +x_1 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__13; x_2 = l_Lean_Meta_DiscrTree_Trie_format___main___rarg___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__15() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__15() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -3089,41 +3464,41 @@ x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__16() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__16() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__15; +x_1 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__15; x_2 = l_Lean_Meta_DiscrTree_Trie_format___main___rarg___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__17() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__17() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__16; +x_2 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__16; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__18() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__18() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__17; +x_2 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__17; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__19() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__19() { _start: { lean_object* x_1; @@ -3131,27 +3506,27 @@ x_1 = lean_mk_string("unexpected antiquotation splice"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__20() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__20() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__19; +x_1 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__19; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__21() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__21() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__20; +x_1 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__20; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__22() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__22() { _start: { lean_object* x_1; @@ -3159,22 +3534,22 @@ x_1 = lean_mk_string("Syntax.atom"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__23() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__23() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__22; +x_1 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__22; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__24() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__24() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__22; +x_1 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__22; x_2 = lean_unsigned_to_nat(0u); -x_3 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__23; +x_3 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__23; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -3182,51 +3557,51 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__25() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__25() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__13; +x_1 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__13; x_2 = l_Lean_Parser_Syntax_atom___elambda__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__26() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__26() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__15; +x_1 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__15; x_2 = l_Lean_Parser_Syntax_atom___elambda__1___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__27() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__27() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__26; +x_2 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__26; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__28() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__28() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__27; +x_2 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__27; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__29() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__29() { _start: { lean_object* x_1; lean_object* x_2; @@ -3235,13 +3610,13 @@ x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__30() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__30() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = l_Option_HasRepr___rarg___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__29; +x_3 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__29; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -3249,7 +3624,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__31() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__31() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -3259,59 +3634,31 @@ x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__32() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("Option"); -return x_1; -} -} -lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__33() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__32() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__32; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; -} -} -lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__34() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__33; -x_2 = l_Option_HasRepr___rarg___closed__1; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; -} -} -lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__35() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__34; +x_2 = l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__1___closed__8; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__36() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__33() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__35; +x_2 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__32; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__37() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__34() { _start: { lean_object* x_1; @@ -3319,22 +3666,22 @@ x_1 = lean_mk_string("addMacroScope"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__38() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__35() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__37; +x_1 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__34; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__39() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__36() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__37; +x_1 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__34; x_2 = lean_unsigned_to_nat(0u); -x_3 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__38; +x_3 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__35; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -3342,51 +3689,51 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__40() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__37() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__37; +x_2 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__34; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__41() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__38() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_nameToExprAux___main___closed__4; -x_2 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__37; +x_2 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__34; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__42() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__39() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__41; +x_2 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__38; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__43() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__40() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__42; +x_2 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__39; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__44() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__41() { _start: { lean_object* x_1; @@ -3394,22 +3741,22 @@ x_1 = lean_mk_string("scp"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__45() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__42() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__44; +x_1 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__41; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__46() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__43() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__44; +x_1 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__41; x_2 = lean_unsigned_to_nat(0u); -x_3 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__45; +x_3 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__42; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -3417,17 +3764,17 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__47() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__44() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__44; +x_2 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__41; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__48() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__45() { _start: { lean_object* x_1; @@ -3435,22 +3782,22 @@ x_1 = lean_mk_string("Syntax.ident"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__49() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__46() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__48; +x_1 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__45; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__50() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__47() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__48; +x_1 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__45; x_2 = lean_unsigned_to_nat(0u); -x_3 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__49; +x_3 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__46; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -3458,51 +3805,51 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__51() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__48() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__13; +x_1 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__13; x_2 = l_Lean_Syntax_getKind___closed__3; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__52() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__49() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__15; +x_1 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__15; x_2 = l_Lean_Syntax_getKind___closed__3; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__53() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__50() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__52; +x_2 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__49; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__54() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__51() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__53; +x_2 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__50; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__55() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__52() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -3514,17 +3861,17 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__56() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__53() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Array_empty___closed__1; -x_2 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__55; +x_2 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__52; x_3 = lean_array_push(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__57() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__54() { _start: { lean_object* x_1; @@ -3532,22 +3879,22 @@ x_1 = lean_mk_string("String.toSubstring"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__58() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__55() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__57; +x_1 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__54; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__59() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__56() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__57; +x_1 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__54; x_2 = lean_unsigned_to_nat(0u); -x_3 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__58; +x_3 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__55; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -3555,7 +3902,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__60() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__57() { _start: { lean_object* x_1; @@ -3563,41 +3910,41 @@ x_1 = lean_mk_string("toSubstring"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__61() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__58() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Literal_type___closed__5; -x_2 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__60; +x_2 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__57; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__62() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__59() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__61; +x_2 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__58; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__63() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__60() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__62; +x_2 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__59; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__64() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__61() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -3609,7 +3956,7 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { switch (lean_obj_tag(x_1)) { @@ -3647,11 +3994,11 @@ x_15 = lean_ctor_get(x_13, 1); lean_inc(x_15); lean_dec(x_13); x_16 = lean_box(0); -x_17 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__7; +x_17 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__7; x_18 = lean_name_mk_numeral(x_17, x_14); x_19 = lean_box(0); -x_20 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__3; -x_21 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__9; +x_20 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__3; +x_21 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__9; x_22 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_22, 0, x_16); lean_ctor_set(x_22, 1, x_20); @@ -3665,10 +4012,10 @@ x_27 = l_Lean_Parser_Term_id___elambda__1___closed__2; lean_ctor_set(x_1, 1, x_26); lean_ctor_set(x_1, 0, x_27); x_28 = l_Lean_Parser_Term_explicitUniv___elambda__1___closed__2; -x_29 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__5; +x_29 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__5; x_30 = lean_unsigned_to_nat(0u); lean_inc(x_2); -x_31 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___spec__1(x_7, x_8, x_28, x_27, x_23, x_16, x_29, x_19, x_19, x_25, x_8, x_30, x_1, x_2, x_15); +x_31 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___spec__1(x_7, x_8, x_28, x_27, x_23, x_16, x_29, x_19, x_19, x_25, x_8, x_30, x_1, x_2, x_15); lean_dec(x_8); if (lean_obj_tag(x_31) == 0) { @@ -3685,10 +4032,10 @@ if (x_35 == 0) { 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_36 = lean_ctor_get(x_34, 0); -x_37 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__14; +x_37 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__14; x_38 = lean_name_mk_numeral(x_37, x_36); -x_39 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__12; -x_40 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__18; +x_39 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__12; +x_40 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__18; x_41 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_41, 0, x_16); lean_ctor_set(x_41, 1, x_39); @@ -3722,10 +4069,10 @@ x_54 = lean_ctor_get(x_34, 1); lean_inc(x_54); lean_inc(x_53); lean_dec(x_34); -x_55 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__14; +x_55 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__14; x_56 = lean_name_mk_numeral(x_55, x_53); -x_57 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__12; -x_58 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__18; +x_57 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__12; +x_58 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__18; x_59 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_59, 0, x_16); lean_ctor_set(x_59, 1, x_57); @@ -3790,11 +4137,11 @@ x_78 = lean_ctor_get(x_76, 1); lean_inc(x_78); lean_dec(x_76); x_79 = lean_box(0); -x_80 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__7; +x_80 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__7; x_81 = lean_name_mk_numeral(x_80, x_77); x_82 = lean_box(0); -x_83 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__3; -x_84 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__9; +x_83 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__3; +x_84 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__9; x_85 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_85, 0, x_79); lean_ctor_set(x_85, 1, x_83); @@ -3809,10 +4156,10 @@ x_91 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_91, 0, x_90); lean_ctor_set(x_91, 1, x_89); x_92 = l_Lean_Parser_Term_explicitUniv___elambda__1___closed__2; -x_93 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__5; +x_93 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__5; x_94 = lean_unsigned_to_nat(0u); lean_inc(x_2); -x_95 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___spec__1(x_7, x_8, x_92, x_90, x_86, x_79, x_93, x_82, x_82, x_88, x_8, x_94, x_91, x_2, x_78); +x_95 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___spec__1(x_7, x_8, x_92, x_90, x_86, x_79, x_93, x_82, x_82, x_88, x_8, x_94, x_91, x_2, x_78); lean_dec(x_8); if (lean_obj_tag(x_95) == 0) { @@ -3836,10 +4183,10 @@ if (lean_is_exclusive(x_98)) { lean_dec_ref(x_98); x_101 = lean_box(0); } -x_102 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__14; +x_102 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__14; x_103 = lean_name_mk_numeral(x_102, x_99); -x_104 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__12; -x_105 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__18; +x_104 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__12; +x_105 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__18; x_106 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_106, 0, x_79); lean_ctor_set(x_106, 1, x_104); @@ -3920,7 +4267,7 @@ return x_126; else { lean_object* x_127; lean_object* x_128; -x_127 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__21; +x_127 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__21; x_128 = l_Lean_Elab_Term_throwError___rarg(x_1, x_127, x_2, x_3); return x_128; } @@ -3944,11 +4291,11 @@ if (x_133 == 0) 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; x_134 = lean_ctor_get(x_132, 0); x_135 = lean_box(0); -x_136 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__25; +x_136 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__25; lean_inc(x_134); x_137 = lean_name_mk_numeral(x_136, x_134); -x_138 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__24; -x_139 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__28; +x_138 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__24; +x_139 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__28; x_140 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_140, 0, x_135); lean_ctor_set(x_140, 1, x_138); @@ -3963,10 +4310,10 @@ lean_ctor_set_tag(x_1, 1); lean_ctor_set(x_1, 1, x_144); lean_ctor_set(x_1, 0, x_145); x_146 = lean_array_push(x_141, x_1); -x_147 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__31; +x_147 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__31; x_148 = lean_name_mk_numeral(x_147, x_134); -x_149 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__30; -x_150 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__36; +x_149 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__30; +x_150 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__33; x_151 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_151, 0, x_135); lean_ctor_set(x_151, 1, x_149); @@ -4006,11 +4353,11 @@ lean_inc(x_167); lean_inc(x_166); lean_dec(x_132); x_168 = lean_box(0); -x_169 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__25; +x_169 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__25; lean_inc(x_166); x_170 = lean_name_mk_numeral(x_169, x_166); -x_171 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__24; -x_172 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__28; +x_171 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__24; +x_172 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__28; x_173 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_173, 0, x_168); lean_ctor_set(x_173, 1, x_171); @@ -4025,10 +4372,10 @@ lean_ctor_set_tag(x_1, 1); lean_ctor_set(x_1, 1, x_177); lean_ctor_set(x_1, 0, x_178); x_179 = lean_array_push(x_174, x_1); -x_180 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__31; +x_180 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__31; x_181 = lean_name_mk_numeral(x_180, x_166); -x_182 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__30; -x_183 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__36; +x_182 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__30; +x_183 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__33; x_184 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_184, 0, x_168); lean_ctor_set(x_184, 1, x_182); @@ -4083,11 +4430,11 @@ if (lean_is_exclusive(x_201)) { x_204 = lean_box(0); } x_205 = lean_box(0); -x_206 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__25; +x_206 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__25; lean_inc(x_202); x_207 = lean_name_mk_numeral(x_206, x_202); -x_208 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__24; -x_209 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__28; +x_208 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__24; +x_209 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__28; x_210 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_210, 0, x_205); lean_ctor_set(x_210, 1, x_208); @@ -4102,10 +4449,10 @@ x_216 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_216, 0, x_215); lean_ctor_set(x_216, 1, x_214); x_217 = lean_array_push(x_211, x_216); -x_218 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__31; +x_218 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__31; x_219 = lean_name_mk_numeral(x_218, x_202); -x_220 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__30; -x_221 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__36; +x_220 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__30; +x_221 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__33; x_222 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_222, 0, x_205); lean_ctor_set(x_222, 1, x_220); @@ -4185,12 +4532,12 @@ x_257 = lean_ctor_get(x_255, 1); lean_inc(x_257); lean_dec(x_255); x_258 = lean_box(0); -x_259 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__40; +x_259 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__37; lean_inc(x_256); x_260 = lean_name_mk_numeral(x_259, x_256); x_261 = lean_box(0); -x_262 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__39; -x_263 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__43; +x_262 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__36; +x_263 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__40; lean_ctor_set(x_1, 3, x_263); lean_ctor_set(x_1, 2, x_260); lean_ctor_set(x_1, 1, x_262); @@ -4210,9 +4557,9 @@ x_273 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_273, 0, x_272); lean_ctor_set(x_273, 1, x_271); x_274 = lean_array_push(x_264, x_273); -x_275 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__47; +x_275 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__44; x_276 = lean_name_mk_numeral(x_275, x_256); -x_277 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__46; +x_277 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__43; x_278 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_278, 0, x_258); lean_ctor_set(x_278, 1, x_277); @@ -4227,7 +4574,7 @@ x_282 = lean_array_push(x_274, x_281); x_283 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_283, 0, x_272); lean_ctor_set(x_283, 1, x_282); -x_284 = l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___spec__2(x_253); +x_284 = l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___spec__2(x_253); x_285 = l_Lean_Elab_Term_getCurrMacroScope(x_2, x_257); lean_dec(x_2); x_286 = !lean_is_exclusive(x_285); @@ -4235,11 +4582,11 @@ if (x_286 == 0) { lean_object* x_287; lean_object* x_288; lean_object* x_289; lean_object* x_290; lean_object* x_291; lean_object* x_292; lean_object* x_293; lean_object* x_294; lean_object* x_295; lean_object* x_296; lean_object* x_297; lean_object* x_298; lean_object* x_299; lean_object* x_300; lean_object* x_301; lean_object* x_302; lean_object* x_303; lean_object* x_304; lean_object* x_305; lean_object* x_306; lean_object* x_307; lean_object* x_308; lean_object* x_309; lean_object* x_310; lean_object* x_311; lean_object* x_312; lean_object* x_313; lean_object* x_314; lean_object* x_315; lean_object* x_316; lean_object* x_317; lean_object* x_318; lean_object* x_319; lean_object* x_320; lean_object* x_321; lean_object* x_322; lean_object* x_323; lean_object* x_324; lean_object* x_325; lean_object* x_326; lean_object* x_327; lean_object* x_328; lean_object* x_329; lean_object* x_330; lean_object* x_331; lean_object* x_332; lean_object* x_333; lean_object* x_334; lean_object* x_335; lean_object* x_336; lean_object* x_337; lean_object* x_338; lean_object* x_339; lean_object* x_340; lean_object* x_341; lean_object* x_342; lean_object* x_343; lean_object* x_344; lean_object* x_345; x_287 = lean_ctor_get(x_285, 0); -x_288 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__51; +x_288 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__48; lean_inc(x_287); x_289 = lean_name_mk_numeral(x_288, x_287); -x_290 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__50; -x_291 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__54; +x_290 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__47; +x_291 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__51; x_292 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_292, 0, x_258); lean_ctor_set(x_292, 1, x_290); @@ -4251,11 +4598,11 @@ x_295 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_295, 0, x_268); lean_ctor_set(x_295, 1, x_294); x_296 = lean_array_push(x_264, x_295); -x_297 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__31; +x_297 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__31; lean_inc(x_287); x_298 = lean_name_mk_numeral(x_297, x_287); -x_299 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__30; -x_300 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__36; +x_299 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__30; +x_300 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__33; x_301 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_301, 0, x_258); lean_ctor_set(x_301, 1, x_299); @@ -4271,10 +4618,10 @@ x_306 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_306, 0, x_272); lean_ctor_set(x_306, 1, x_305); x_307 = lean_array_push(x_264, x_306); -x_308 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__61; +x_308 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__58; x_309 = lean_name_mk_numeral(x_308, x_287); -x_310 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__59; -x_311 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__63; +x_310 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__56; +x_311 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__60; x_312 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_312, 0, x_258); lean_ctor_set(x_312, 1, x_310); @@ -4314,9 +4661,9 @@ x_330 = l_Lean_nullKind___closed__2; x_331 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_331, 0, x_330); lean_ctor_set(x_331, 1, x_329); -x_332 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__56; +x_332 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__53; x_333 = lean_array_push(x_332, x_331); -x_334 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__64; +x_334 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__61; x_335 = lean_array_push(x_333, x_334); x_336 = l_Lean_Parser_Term_paren___elambda__1___closed__1; x_337 = lean_alloc_ctor(1, 2, 0); @@ -4347,11 +4694,11 @@ x_347 = lean_ctor_get(x_285, 1); lean_inc(x_347); lean_inc(x_346); lean_dec(x_285); -x_348 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__51; +x_348 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__48; lean_inc(x_346); x_349 = lean_name_mk_numeral(x_348, x_346); -x_350 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__50; -x_351 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__54; +x_350 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__47; +x_351 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__51; x_352 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_352, 0, x_258); lean_ctor_set(x_352, 1, x_350); @@ -4363,11 +4710,11 @@ x_355 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_355, 0, x_268); lean_ctor_set(x_355, 1, x_354); x_356 = lean_array_push(x_264, x_355); -x_357 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__31; +x_357 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__31; lean_inc(x_346); x_358 = lean_name_mk_numeral(x_357, x_346); -x_359 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__30; -x_360 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__36; +x_359 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__30; +x_360 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__33; x_361 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_361, 0, x_258); lean_ctor_set(x_361, 1, x_359); @@ -4383,10 +4730,10 @@ x_366 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_366, 0, x_272); lean_ctor_set(x_366, 1, x_365); x_367 = lean_array_push(x_264, x_366); -x_368 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__61; +x_368 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__58; x_369 = lean_name_mk_numeral(x_368, x_346); -x_370 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__59; -x_371 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__63; +x_370 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__56; +x_371 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__60; x_372 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_372, 0, x_258); lean_ctor_set(x_372, 1, x_370); @@ -4426,9 +4773,9 @@ x_390 = l_Lean_nullKind___closed__2; x_391 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_391, 0, x_390); lean_ctor_set(x_391, 1, x_389); -x_392 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__56; +x_392 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__53; x_393 = lean_array_push(x_392, x_391); -x_394 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__64; +x_394 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__61; x_395 = lean_array_push(x_393, x_394); x_396 = l_Lean_Parser_Term_paren___elambda__1___closed__1; x_397 = lean_alloc_ctor(1, 2, 0); @@ -4494,12 +4841,12 @@ x_424 = lean_ctor_get(x_422, 1); lean_inc(x_424); lean_dec(x_422); x_425 = lean_box(0); -x_426 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__40; +x_426 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__37; lean_inc(x_423); x_427 = lean_name_mk_numeral(x_426, x_423); x_428 = lean_box(0); -x_429 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__39; -x_430 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__43; +x_429 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__36; +x_430 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__40; x_431 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_431, 0, x_425); lean_ctor_set(x_431, 1, x_429); @@ -4520,9 +4867,9 @@ x_441 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_441, 0, x_440); lean_ctor_set(x_441, 1, x_439); x_442 = lean_array_push(x_432, x_441); -x_443 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__47; +x_443 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__44; x_444 = lean_name_mk_numeral(x_443, x_423); -x_445 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__46; +x_445 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__43; x_446 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_446, 0, x_425); lean_ctor_set(x_446, 1, x_445); @@ -4537,7 +4884,7 @@ x_450 = lean_array_push(x_442, x_449); x_451 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_451, 0, x_440); lean_ctor_set(x_451, 1, x_450); -x_452 = l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___spec__2(x_420); +x_452 = l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___spec__2(x_420); x_453 = l_Lean_Elab_Term_getCurrMacroScope(x_2, x_424); lean_dec(x_2); x_454 = lean_ctor_get(x_453, 0); @@ -4552,11 +4899,11 @@ if (lean_is_exclusive(x_453)) { lean_dec_ref(x_453); x_456 = lean_box(0); } -x_457 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__51; +x_457 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__48; lean_inc(x_454); x_458 = lean_name_mk_numeral(x_457, x_454); -x_459 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__50; -x_460 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__54; +x_459 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__47; +x_460 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__51; x_461 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_461, 0, x_425); lean_ctor_set(x_461, 1, x_459); @@ -4568,11 +4915,11 @@ x_464 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_464, 0, x_436); lean_ctor_set(x_464, 1, x_463); x_465 = lean_array_push(x_432, x_464); -x_466 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__31; +x_466 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__31; lean_inc(x_454); x_467 = lean_name_mk_numeral(x_466, x_454); -x_468 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__30; -x_469 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__36; +x_468 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__30; +x_469 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__33; x_470 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_470, 0, x_425); lean_ctor_set(x_470, 1, x_468); @@ -4588,10 +4935,10 @@ x_475 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_475, 0, x_440); lean_ctor_set(x_475, 1, x_474); x_476 = lean_array_push(x_432, x_475); -x_477 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__61; +x_477 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__58; x_478 = lean_name_mk_numeral(x_477, x_454); -x_479 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__59; -x_480 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__63; +x_479 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__56; +x_480 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__60; x_481 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_481, 0, x_425); lean_ctor_set(x_481, 1, x_479); @@ -4631,9 +4978,9 @@ x_499 = l_Lean_nullKind___closed__2; x_500 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_500, 0, x_499); lean_ctor_set(x_500, 1, x_498); -x_501 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__56; +x_501 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__53; x_502 = lean_array_push(x_501, x_500); -x_503 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__64; +x_503 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__61; x_504 = lean_array_push(x_502, x_503); x_505 = l_Lean_Parser_Term_paren___elambda__1___closed__1; x_506 = lean_alloc_ctor(1, 2, 0); @@ -4666,49 +5013,49 @@ return x_515; } } } -lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___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* 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* l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___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* 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) { _start: { lean_object* x_16; -x_16 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___spec__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15); +x_16 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___spec__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15); lean_dec(x_11); lean_dec(x_2); lean_dec(x_1); return x_16; } } -lean_object* l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___spec__3___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___spec__3___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; -x_6 = l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___spec__3___lambda__1(x_1, x_2, x_3, x_4, x_5); +x_6 = l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___spec__3___lambda__1(x_1, x_2, x_3, x_4, x_5); lean_dec(x_4); return x_6; } } -lean_object* l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___spec__2___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +lean_object* l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___spec__2___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { _start: { lean_object* x_13; -x_13 = l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___spec__2___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +x_13 = l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___spec__2___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); lean_dec(x_11); return x_13; } } -lean_object* l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___spec__2___lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___spec__2___lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; -x_6 = l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___spec__2___lambda__2(x_1, x_2, x_3, x_4, x_5); +x_6 = l___private_Init_Lean_Elab_Quotation_3__quoteList___main___at___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___spec__2___lambda__2(x_1, x_2, x_3, x_4, x_5); lean_dec(x_4); return x_6; } } -lean_object* l___private_Init_Lean_Elab_Quotation_5__quoteSyntax(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Init_Lean_Elab_Quotation_6__quoteSyntax(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main(x_1, x_2, x_3); +x_4 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main(x_1, x_2, x_3); return x_4; } } @@ -4997,9 +5344,9 @@ _start: lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; x_4 = lean_unsigned_to_nat(1u); x_5 = l_Lean_Syntax_getArg(x_1, x_4); -x_6 = l___private_Init_Lean_Elab_Quotation_4__elimAntiquotChoices___main(x_5); +x_6 = l___private_Init_Lean_Elab_Quotation_5__elimAntiquotChoices___main(x_5); lean_inc(x_2); -x_7 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main(x_6, x_2, x_3); +x_7 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main(x_6, x_2, x_3); if (lean_obj_tag(x_7) == 0) { lean_object* x_8; lean_object* x_9; lean_object* x_10; uint8_t x_11; @@ -5057,10 +5404,10 @@ x_37 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_37, 0, x_36); lean_ctor_set(x_37, 1, x_35); x_38 = lean_array_push(x_20, x_37); -x_39 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__47; +x_39 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__44; lean_inc(x_12); x_40 = lean_name_mk_numeral(x_39, x_12); -x_41 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__46; +x_41 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__43; x_42 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_42, 0, x_13); lean_ctor_set(x_42, 1, x_41); @@ -5109,9 +5456,9 @@ x_68 = lean_array_push(x_67, x_22); x_69 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_69, 0, x_47); lean_ctor_set(x_69, 1, x_68); -x_70 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__56; +x_70 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__53; x_71 = lean_array_push(x_70, x_69); -x_72 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__64; +x_72 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__61; x_73 = lean_array_push(x_71, x_72); x_74 = l_Lean_Parser_Term_paren___elambda__1___closed__1; x_75 = lean_alloc_ctor(1, 2, 0); @@ -5174,10 +5521,10 @@ x_104 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_104, 0, x_103); lean_ctor_set(x_104, 1, x_102); x_105 = lean_array_push(x_87, x_104); -x_106 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__47; +x_106 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__44; lean_inc(x_78); x_107 = lean_name_mk_numeral(x_106, x_78); -x_108 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__46; +x_108 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__43; x_109 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_109, 0, x_80); lean_ctor_set(x_109, 1, x_108); @@ -5226,9 +5573,9 @@ x_135 = lean_array_push(x_134, x_89); x_136 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_136, 0, x_114); lean_ctor_set(x_136, 1, x_135); -x_137 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__56; +x_137 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__53; x_138 = lean_array_push(x_137, x_136); -x_139 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__64; +x_139 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__61; x_140 = lean_array_push(x_138, x_139); x_141 = l_Lean_Parser_Term_paren___elambda__1___closed__1; x_142 = lean_alloc_ctor(1, 2, 0); @@ -5483,7 +5830,7 @@ x_4 = lean_box(x_3); return x_4; } } -lean_object* l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; @@ -5493,7 +5840,7 @@ lean_ctor_set(x_4, 1, x_3); return x_4; } } -lean_object* l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__2(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; @@ -5503,7 +5850,7 @@ lean_ctor_set(x_4, 1, x_3); return x_4; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__1() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -5515,17 +5862,17 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__2() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Array_empty___closed__1; -x_2 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__1; +x_2 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__1; x_3 = lean_array_push(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__3() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__3() { _start: { lean_object* x_1; @@ -5533,19 +5880,19 @@ x_1 = lean_mk_string(":="); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__4() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__3; +x_2 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___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_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__5() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__5() { _start: { lean_object* x_1; @@ -5553,22 +5900,22 @@ x_1 = lean_mk_string("discr"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__6() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__6() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__5; +x_1 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__5; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__7() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__5; +x_1 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__5; x_2 = lean_unsigned_to_nat(0u); -x_3 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__6; +x_3 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__6; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -5576,17 +5923,17 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__8() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__5; +x_2 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__5; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__9() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__9() { _start: { lean_object* x_1; @@ -5594,19 +5941,19 @@ x_1 = lean_mk_string(";"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__10() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__9; +x_2 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__9; x_3 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); return x_3; } } -lean_object* l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3(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; @@ -5621,12 +5968,12 @@ x_9 = l_Array_empty___closed__1; x_10 = lean_array_push(x_9, x_1); x_11 = l___private_Init_Lean_Elab_Term_8__expandCDot___closed__4; x_12 = lean_array_push(x_10, x_11); -x_13 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__4; +x_13 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__4; x_14 = lean_array_push(x_12, x_13); -x_15 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__8; +x_15 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__8; x_16 = lean_name_mk_numeral(x_15, x_7); x_17 = lean_box(0); -x_18 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__7; +x_18 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__7; x_19 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_19, 0, x_8); lean_ctor_set(x_19, 1, x_18); @@ -5643,9 +5990,9 @@ x_25 = l_Lean_Parser_Term_letPatDecl___elambda__1___closed__2; x_26 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_26, 0, x_25); lean_ctor_set(x_26, 1, x_24); -x_27 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__2; +x_27 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__2; x_28 = lean_array_push(x_27, x_26); -x_29 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__10; +x_29 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__10; x_30 = lean_array_push(x_28, x_29); x_31 = lean_array_push(x_30, x_2); x_32 = l_Lean_Parser_Term_let___elambda__1___closed__2; @@ -5668,12 +6015,12 @@ x_37 = l_Array_empty___closed__1; x_38 = lean_array_push(x_37, x_1); x_39 = l___private_Init_Lean_Elab_Term_8__expandCDot___closed__4; x_40 = lean_array_push(x_38, x_39); -x_41 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__4; +x_41 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__4; x_42 = lean_array_push(x_40, x_41); -x_43 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__8; +x_43 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__8; x_44 = lean_name_mk_numeral(x_43, x_34); x_45 = lean_box(0); -x_46 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__7; +x_46 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__7; x_47 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_47, 0, x_36); lean_ctor_set(x_47, 1, x_46); @@ -5690,9 +6037,9 @@ x_53 = l_Lean_Parser_Term_letPatDecl___elambda__1___closed__2; x_54 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_54, 0, x_53); lean_ctor_set(x_54, 1, x_52); -x_55 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__2; +x_55 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__2; x_56 = lean_array_push(x_55, x_54); -x_57 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__10; +x_57 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__10; x_58 = lean_array_push(x_56, x_57); x_59 = lean_array_push(x_58, x_2); x_60 = l_Lean_Parser_Term_let___elambda__1___closed__2; @@ -5706,7 +6053,7 @@ return x_62; } } } -lean_object* l_List_head_x21___at___private_Init_Lean_Elab_Quotation_7__getHeadInfo___spec__1(lean_object* x_1) { +lean_object* l_List_head_x21___at___private_Init_Lean_Elab_Quotation_8__getHeadInfo___spec__1(lean_object* x_1) { _start: { if (lean_obj_tag(x_1) == 0) @@ -5726,7 +6073,7 @@ return x_5; } } } -lean_object* _init_l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_7__getHeadInfo___spec__2___closed__1() { +lean_object* _init_l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_8__getHeadInfo___spec__2___closed__1() { _start: { lean_object* x_1; lean_object* x_2; @@ -5735,17 +6082,17 @@ x_2 = l_Lean_mkAtom(x_1); return x_2; } } -lean_object* _init_l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_7__getHeadInfo___spec__2___closed__2() { +lean_object* _init_l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_8__getHeadInfo___spec__2___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_declareBuiltinParser___closed__8; -x_2 = l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_7__getHeadInfo___spec__2___closed__1; +x_2 = l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_8__getHeadInfo___spec__2___closed__1; x_3 = lean_array_push(x_1, x_2); return x_3; } } -lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_7__getHeadInfo___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_8__getHeadInfo___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -5768,7 +6115,7 @@ x_8 = lean_array_fget(x_3, x_2); x_9 = lean_box(0); x_10 = x_9; x_11 = lean_array_fset(x_3, x_2, x_10); -x_12 = l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_7__getHeadInfo___spec__2___closed__2; +x_12 = l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_8__getHeadInfo___spec__2___closed__2; lean_inc(x_8); x_13 = lean_array_push(x_12, x_8); x_14 = l_Lean_Elab_Term_mkExplicitBinder___closed__4; @@ -5789,7 +6136,7 @@ goto _start; } } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__1___closed__1() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___lambda__1___closed__1() { _start: { lean_object* x_1; @@ -5797,27 +6144,27 @@ x_1 = lean_mk_string("match_syntax: unexpected pattern kind "); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__1___closed__2() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___lambda__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__1___closed__1; +x_1 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___lambda__1___closed__1; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__1___closed__3() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___lambda__1___closed__3() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__1___closed__2; +x_1 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___lambda__1___closed__2; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; lean_object* x_6; 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; @@ -5831,7 +6178,7 @@ x_10 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_10, 0, x_9); x_11 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_11, 0, x_10); -x_12 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__1___closed__3; +x_12 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___lambda__1___closed__3; x_13 = lean_alloc_ctor(8, 2, 0); lean_ctor_set(x_13, 0, x_12); lean_ctor_set(x_13, 1, x_11); @@ -5839,7 +6186,7 @@ x_14 = l_Lean_Elab_Term_throwError___rarg(x_1, x_13, x_3, x_4); return x_14; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__2___closed__1() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___lambda__2___closed__1() { _start: { lean_object* x_1; @@ -5847,22 +6194,22 @@ x_1 = lean_mk_string("Syntax.getArgs"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__2___closed__2() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___lambda__2___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__2___closed__1; +x_1 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___lambda__2___closed__1; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__2___closed__3() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___lambda__2___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__2___closed__1; +x_1 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___lambda__2___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__2___closed__2; +x_3 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___lambda__2___closed__2; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -5870,7 +6217,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__2___closed__4() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___lambda__2___closed__4() { _start: { lean_object* x_1; @@ -5878,17 +6225,17 @@ x_1 = lean_mk_string("getArgs"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__2___closed__5() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___lambda__2___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__13; -x_2 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__2___closed__4; +x_1 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__13; +x_2 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___lambda__2___closed__4; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___lambda__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { lean_object* x_8; uint8_t x_9; @@ -5909,16 +6256,16 @@ x_16 = l_Array_empty___closed__1; x_17 = lean_array_push(x_16, x_2); x_18 = l___private_Init_Lean_Elab_Term_8__expandCDot___closed__4; x_19 = lean_array_push(x_17, x_18); -x_20 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__4; +x_20 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__4; x_21 = lean_array_push(x_19, x_20); x_22 = l_Lean_Parser_Term_app___elambda__1___closed__1; x_23 = lean_name_mk_string(x_1, x_22); -x_24 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__2___closed__5; +x_24 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___lambda__2___closed__5; lean_inc(x_10); x_25 = lean_name_mk_numeral(x_24, x_10); x_26 = l_Lean_Parser_Syntax_paren___elambda__1___closed__1; x_27 = lean_name_mk_string(x_3, x_26); -x_28 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__2___closed__4; +x_28 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___lambda__2___closed__4; x_29 = lean_name_mk_string(x_27, x_28); x_30 = lean_box(0); x_31 = lean_alloc_ctor(0, 2, 0); @@ -5927,7 +6274,7 @@ lean_ctor_set(x_31, 1, x_30); x_32 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_32, 0, x_31); lean_ctor_set(x_32, 1, x_30); -x_33 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__2___closed__3; +x_33 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___lambda__2___closed__3; x_34 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_34, 0, x_13); lean_ctor_set(x_34, 1, x_33); @@ -5940,9 +6287,9 @@ x_37 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_37, 0, x_4); lean_ctor_set(x_37, 1, x_36); x_38 = lean_array_push(x_16, x_37); -x_39 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__8; +x_39 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__8; x_40 = lean_name_mk_numeral(x_39, x_10); -x_41 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__7; +x_41 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__7; x_42 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_42, 0, x_13); lean_ctor_set(x_42, 1, x_41); @@ -5961,9 +6308,9 @@ x_48 = lean_array_push(x_21, x_47); x_49 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_49, 0, x_15); lean_ctor_set(x_49, 1, x_48); -x_50 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__2; +x_50 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__2; x_51 = lean_array_push(x_50, x_49); -x_52 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__10; +x_52 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__10; x_53 = lean_array_push(x_51, x_52); x_54 = lean_array_push(x_53, x_5); x_55 = lean_alloc_ctor(1, 2, 0); @@ -5991,16 +6338,16 @@ x_63 = l_Array_empty___closed__1; x_64 = lean_array_push(x_63, x_2); x_65 = l___private_Init_Lean_Elab_Term_8__expandCDot___closed__4; x_66 = lean_array_push(x_64, x_65); -x_67 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__4; +x_67 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__4; x_68 = lean_array_push(x_66, x_67); x_69 = l_Lean_Parser_Term_app___elambda__1___closed__1; x_70 = lean_name_mk_string(x_1, x_69); -x_71 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__2___closed__5; +x_71 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___lambda__2___closed__5; lean_inc(x_56); x_72 = lean_name_mk_numeral(x_71, x_56); x_73 = l_Lean_Parser_Syntax_paren___elambda__1___closed__1; x_74 = lean_name_mk_string(x_3, x_73); -x_75 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__2___closed__4; +x_75 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___lambda__2___closed__4; x_76 = lean_name_mk_string(x_74, x_75); x_77 = lean_box(0); x_78 = lean_alloc_ctor(0, 2, 0); @@ -6009,7 +6356,7 @@ lean_ctor_set(x_78, 1, x_77); 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___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__2___closed__3; +x_80 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___lambda__2___closed__3; x_81 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_81, 0, x_60); lean_ctor_set(x_81, 1, x_80); @@ -6022,9 +6369,9 @@ x_84 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_84, 0, x_4); lean_ctor_set(x_84, 1, x_83); x_85 = lean_array_push(x_63, x_84); -x_86 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__8; +x_86 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__8; x_87 = lean_name_mk_numeral(x_86, x_56); -x_88 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__7; +x_88 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__7; x_89 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_89, 0, x_60); lean_ctor_set(x_89, 1, x_88); @@ -6043,9 +6390,9 @@ x_95 = lean_array_push(x_68, x_94); x_96 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_96, 0, x_62); lean_ctor_set(x_96, 1, x_95); -x_97 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__2; +x_97 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__2; x_98 = lean_array_push(x_97, x_96); -x_99 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__10; +x_99 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__10; x_100 = lean_array_push(x_98, x_99); x_101 = lean_array_push(x_100, x_5); x_102 = lean_alloc_ctor(1, 2, 0); @@ -6058,7 +6405,7 @@ return x_103; } } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__3___closed__1() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___lambda__3___closed__1() { _start: { lean_object* x_1; @@ -6066,27 +6413,27 @@ x_1 = lean_mk_string("match_syntax: antiquotation must be variable "); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__3___closed__2() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___lambda__3___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__3___closed__1; +x_1 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___lambda__3___closed__1; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__3___closed__3() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___lambda__3___closed__3() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__3___closed__2; +x_1 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___lambda__3___closed__2; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___lambda__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; lean_object* x_6; 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; @@ -6100,7 +6447,7 @@ x_10 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_10, 0, x_9); x_11 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_11, 0, x_10); -x_12 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__3___closed__3; +x_12 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___lambda__3___closed__3; x_13 = lean_alloc_ctor(8, 2, 0); lean_ctor_set(x_13, 0, x_12); lean_ctor_set(x_13, 1, x_11); @@ -6108,16 +6455,16 @@ x_14 = l_Lean_Elab_Term_throwError___rarg(x_1, x_13, x_3, x_4); return x_14; } } -lean_object* l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__4(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___lambda__4(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; lean_object* x_6; -x_5 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__21; +x_5 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__21; x_6 = l_Lean_Elab_Term_throwError___rarg(x_1, x_5, x_3, x_4); return x_6; } } -lean_object* l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__5(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___lambda__5(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_7; uint8_t x_8; @@ -6137,12 +6484,12 @@ x_15 = l_Array_empty___closed__1; x_16 = lean_array_push(x_15, x_2); x_17 = l___private_Init_Lean_Elab_Term_8__expandCDot___closed__4; x_18 = lean_array_push(x_16, x_17); -x_19 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__4; +x_19 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__4; x_20 = lean_array_push(x_18, x_19); -x_21 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__8; +x_21 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__8; x_22 = lean_name_mk_numeral(x_21, x_9); x_23 = lean_box(0); -x_24 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__7; +x_24 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__7; x_25 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_25, 0, x_12); lean_ctor_set(x_25, 1, x_24); @@ -6157,9 +6504,9 @@ x_29 = lean_array_push(x_20, x_28); x_30 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_30, 0, x_14); lean_ctor_set(x_30, 1, x_29); -x_31 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__2; +x_31 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__2; x_32 = lean_array_push(x_31, x_30); -x_33 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__10; +x_33 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__10; x_34 = lean_array_push(x_32, x_33); x_35 = lean_array_push(x_34, x_4); x_36 = lean_alloc_ctor(1, 2, 0); @@ -6186,12 +6533,12 @@ x_44 = l_Array_empty___closed__1; x_45 = lean_array_push(x_44, x_2); x_46 = l___private_Init_Lean_Elab_Term_8__expandCDot___closed__4; x_47 = lean_array_push(x_45, x_46); -x_48 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__4; +x_48 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__4; x_49 = lean_array_push(x_47, x_48); -x_50 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__8; +x_50 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__8; x_51 = lean_name_mk_numeral(x_50, x_37); x_52 = lean_box(0); -x_53 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__7; +x_53 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__7; x_54 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_54, 0, x_41); lean_ctor_set(x_54, 1, x_53); @@ -6206,9 +6553,9 @@ x_58 = lean_array_push(x_49, x_57); x_59 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_59, 0, x_43); lean_ctor_set(x_59, 1, x_58); -x_60 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__2; +x_60 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__2; x_61 = lean_array_push(x_60, x_59); -x_62 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__10; +x_62 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__10; x_63 = lean_array_push(x_61, x_62); x_64 = lean_array_push(x_63, x_4); x_65 = lean_alloc_ctor(1, 2, 0); @@ -6221,23 +6568,23 @@ return x_66; } } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___closed__1() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___closed__1() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__1___boxed), 3, 0); +x_1 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__1___boxed), 3, 0); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___closed__2() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___closed__2() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___boxed), 3, 0); +x_1 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__2___boxed), 3, 0); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___closed__3() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___closed__3() { _start: { lean_object* x_1; @@ -6245,12 +6592,12 @@ x_1 = lean_alloc_closure((void*)(l_ReaderT_pure___at_Lean_Elab_Term_HeadInfo_Inh return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___closed__4() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___closed__3; +x_2 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___closed__3; x_3 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_1); @@ -6258,12 +6605,12 @@ lean_ctor_set(x_3, 2, x_2); return x_3; } } -lean_object* l___private_Init_Lean_Elab_Quotation_7__getHeadInfo(lean_object* x_1) { +lean_object* l___private_Init_Lean_Elab_Quotation_8__getHeadInfo(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; uint8_t x_5; x_2 = lean_ctor_get(x_1, 0); -x_3 = l_List_head_x21___at___private_Init_Lean_Elab_Quotation_7__getHeadInfo___spec__1(x_2); +x_3 = l_List_head_x21___at___private_Init_Lean_Elab_Quotation_8__getHeadInfo___spec__1(x_2); x_4 = l_Lean_Parser_Term_id___elambda__1___closed__2; lean_inc(x_3); x_5 = l_Lean_Syntax_isOfKind(x_3, x_4); @@ -6282,7 +6629,7 @@ x_9 = l_Lean_Syntax_isOfKind(x_3, x_8); if (x_9 == 0) { lean_object* x_10; lean_object* x_11; lean_object* x_12; -x_10 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__1___boxed), 4, 1); +x_10 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___lambda__1___boxed), 4, 1); lean_closure_set(x_10, 0, x_3); x_11 = lean_box(0); x_12 = lean_alloc_ctor(0, 3, 0); @@ -6312,13 +6659,13 @@ if (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 = l_Lean_Syntax_getArgs(x_14); x_19 = lean_unsigned_to_nat(0u); -x_20 = l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_7__getHeadInfo___spec__2(x_8, x_19, x_18); +x_20 = l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_8__getHeadInfo___spec__2(x_8, x_19, x_18); x_21 = l_Lean_Syntax_getKind(x_14); x_22 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_22, 0, x_21); x_23 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_23, 0, x_20); -x_24 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___closed__1; +x_24 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___closed__1; x_25 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_25, 0, x_22); lean_ctor_set(x_25, 1, x_23); @@ -6336,13 +6683,13 @@ 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; x_29 = lean_unsigned_to_nat(0u); -x_30 = l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_7__getHeadInfo___spec__2(x_8, x_29, x_26); +x_30 = l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_8__getHeadInfo___spec__2(x_8, x_29, x_26); x_31 = l_Lean_Syntax_getKind(x_14); x_32 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_32, 0, x_31); x_33 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_33, 0, x_30); -x_34 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___closed__2; +x_34 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___closed__2; x_35 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_35, 0, x_32); lean_ctor_set(x_35, 1, x_33); @@ -6360,7 +6707,7 @@ x_38 = l_Lean_Syntax_getArg(x_37, x_13); lean_dec(x_37); x_39 = l_Lean_Parser_Term_explicitUniv___elambda__1___closed__2; x_40 = l_Lean_nameToExprAux___main___closed__4; -x_41 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__2___boxed), 7, 4); +x_41 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___lambda__2___boxed), 7, 4); lean_closure_set(x_41, 0, x_39); lean_closure_set(x_41, 1, x_38); lean_closure_set(x_41, 2, x_40); @@ -6434,7 +6781,7 @@ if (x_53 == 0) { lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_dec(x_51); -x_54 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__3___boxed), 4, 1); +x_54 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___lambda__3___boxed), 4, 1); lean_closure_set(x_54, 0, x_52); x_55 = lean_box(0); x_56 = lean_alloc_ctor(0, 3, 0); @@ -6447,7 +6794,7 @@ else { lean_object* x_57; lean_object* x_58; lean_object* x_59; x_57 = lean_box(0); -x_58 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___boxed), 4, 1); +x_58 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___boxed), 4, 1); lean_closure_set(x_58, 0, x_52); x_59 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_59, 0, x_51); @@ -6461,7 +6808,7 @@ else lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_dec(x_52); lean_dec(x_51); -x_60 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__4___boxed), 4, 1); +x_60 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___lambda__4___boxed), 4, 1); lean_closure_set(x_60, 0, x_14); x_61 = lean_box(0); x_62 = lean_alloc_ctor(0, 3, 0); @@ -6615,7 +6962,7 @@ else { lean_object* x_100; lean_dec(x_14); -x_100 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___closed__4; +x_100 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___closed__4; return x_100; } } @@ -6624,7 +6971,7 @@ else { lean_object* x_101; lean_dec(x_3); -x_101 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___closed__4; +x_101 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___closed__4; return x_101; } } @@ -6632,7 +6979,7 @@ else { lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; x_102 = l_Lean_Parser_Term_explicitUniv___elambda__1___closed__2; -x_103 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__5___boxed), 6, 3); +x_103 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___lambda__5___boxed), 6, 3); lean_closure_set(x_103, 0, x_102); lean_closure_set(x_103, 1, x_3); lean_closure_set(x_103, 2, x_4); @@ -6645,97 +6992,97 @@ return x_105; } } } -lean_object* l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__1(x_1, x_2, x_3); +x_4 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__1(x_1, x_2, x_3); lean_dec(x_2); return x_4; } } -lean_object* l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__2(x_1, x_2, x_3); +x_4 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__2(x_1, x_2, x_3); lean_dec(x_2); return x_4; } } -lean_object* l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; -x_5 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3(x_1, x_2, x_3, x_4); +x_5 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3(x_1, x_2, x_3, x_4); lean_dec(x_3); return x_5; } } -lean_object* l_List_head_x21___at___private_Init_Lean_Elab_Quotation_7__getHeadInfo___spec__1___boxed(lean_object* x_1) { +lean_object* l_List_head_x21___at___private_Init_Lean_Elab_Quotation_8__getHeadInfo___spec__1___boxed(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l_List_head_x21___at___private_Init_Lean_Elab_Quotation_7__getHeadInfo___spec__1(x_1); +x_2 = l_List_head_x21___at___private_Init_Lean_Elab_Quotation_8__getHeadInfo___spec__1(x_1); lean_dec(x_1); return x_2; } } -lean_object* l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; -x_5 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__1(x_1, x_2, x_3, x_4); +x_5 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___lambda__1(x_1, x_2, x_3, x_4); lean_dec(x_2); return x_5; } } -lean_object* l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { lean_object* x_8; -x_8 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +x_8 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___lambda__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7); lean_dec(x_6); return x_8; } } -lean_object* l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___lambda__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; -x_5 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__3(x_1, x_2, x_3, x_4); +x_5 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___lambda__3(x_1, x_2, x_3, x_4); lean_dec(x_2); return x_5; } } -lean_object* l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___lambda__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; -x_5 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__4(x_1, x_2, x_3, x_4); +x_5 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___lambda__4(x_1, x_2, x_3, x_4); lean_dec(x_2); return x_5; } } -lean_object* l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__5___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___lambda__5___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_7; -x_7 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__5(x_1, x_2, x_3, x_4, x_5, x_6); +x_7 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___lambda__5(x_1, x_2, x_3, x_4, x_5, x_6); lean_dec(x_5); return x_7; } } -lean_object* l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___boxed(lean_object* x_1) { +lean_object* l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___boxed(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo(x_1); +x_2 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo(x_1); lean_dec(x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_8__explodeHeadPat___lambda__1___closed__1() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_9__explodeHeadPat___lambda__1___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -6747,69 +7094,69 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_8__explodeHeadPat___lambda__1___closed__2() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_9__explodeHeadPat___lambda__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Array_empty___closed__1; -x_2 = l___private_Init_Lean_Elab_Quotation_8__explodeHeadPat___lambda__1___closed__1; +x_2 = l___private_Init_Lean_Elab_Quotation_9__explodeHeadPat___lambda__1___closed__1; x_3 = lean_array_push(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_8__explodeHeadPat___lambda__1___closed__3() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_9__explodeHeadPat___lambda__1___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Term_hole___elambda__1___closed__1; -x_2 = l___private_Init_Lean_Elab_Quotation_8__explodeHeadPat___lambda__1___closed__2; +x_2 = l___private_Init_Lean_Elab_Quotation_9__explodeHeadPat___lambda__1___closed__2; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); return x_3; } } -lean_object* l___private_Init_Lean_Elab_Quotation_8__explodeHeadPat___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Init_Lean_Elab_Quotation_9__explodeHeadPat___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; lean_object* x_5; -x_4 = l___private_Init_Lean_Elab_Quotation_8__explodeHeadPat___lambda__1___closed__3; +x_4 = l___private_Init_Lean_Elab_Quotation_9__explodeHeadPat___lambda__1___closed__3; x_5 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_5, 0, x_4); lean_ctor_set(x_5, 1, x_3); return x_5; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_8__explodeHeadPat___closed__1() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_9__explodeHeadPat___closed__1() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_8__explodeHeadPat___lambda__1___boxed), 3, 0); +x_1 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_9__explodeHeadPat___lambda__1___boxed), 3, 0); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_8__explodeHeadPat___closed__2() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_9__explodeHeadPat___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Unhygienic_MonadQuotation___closed__1; -x_2 = l___private_Init_Lean_Elab_Quotation_8__explodeHeadPat___closed__1; +x_2 = l___private_Init_Lean_Elab_Quotation_9__explodeHeadPat___closed__1; x_3 = lean_alloc_closure((void*)(l_ReaderT_bind___at___private_Init_Lean_Elab_Quotation_1__quoteName___main___spec__1___rarg), 4, 2); lean_closure_set(x_3, 0, x_1); lean_closure_set(x_3, 1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_8__explodeHeadPat___closed__3() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_9__explodeHeadPat___closed__3() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_Quotation_8__explodeHeadPat___closed__2; +x_1 = l___private_Init_Lean_Elab_Quotation_9__explodeHeadPat___closed__2; x_2 = l_Lean_Unhygienic_run___rarg(x_1); return x_2; } } -lean_object* l___private_Init_Lean_Elab_Quotation_8__explodeHeadPat(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l___private_Init_Lean_Elab_Quotation_9__explodeHeadPat(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; lean_object* x_6; @@ -6852,7 +7199,7 @@ lean_dec(x_6); x_16 = lean_ctor_get(x_10, 2); lean_inc(x_16); lean_dec(x_10); -x_17 = l___private_Init_Lean_Elab_Quotation_8__explodeHeadPat___closed__3; +x_17 = l___private_Init_Lean_Elab_Quotation_9__explodeHeadPat___closed__3; x_18 = l_List_replicate___rarg(x_1, x_17); x_19 = lean_apply_3(x_16, x_13, x_3, x_4); if (lean_obj_tag(x_19) == 0) @@ -6924,7 +7271,7 @@ lean_dec(x_6); x_33 = lean_ctor_get(x_10, 2); lean_inc(x_33); lean_dec(x_10); -x_34 = l___private_Init_Lean_Elab_Quotation_8__explodeHeadPat___closed__3; +x_34 = l___private_Init_Lean_Elab_Quotation_9__explodeHeadPat___closed__3; x_35 = l_List_replicate___rarg(x_1, x_34); x_36 = lean_apply_3(x_33, x_31, x_3, x_4); if (lean_obj_tag(x_36) == 0) @@ -7140,17 +7487,17 @@ return x_81; } } } -lean_object* l___private_Init_Lean_Elab_Quotation_8__explodeHeadPat___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Init_Lean_Elab_Quotation_9__explodeHeadPat___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Elab_Quotation_8__explodeHeadPat___lambda__1(x_1, x_2, x_3); +x_4 = l___private_Init_Lean_Elab_Quotation_9__explodeHeadPat___lambda__1(x_1, x_2, x_3); lean_dec(x_2); lean_dec(x_1); return x_4; } } -lean_object* l_List_map___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__1(lean_object* x_1) { +lean_object* l_List_map___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__1(lean_object* x_1) { _start: { if (lean_obj_tag(x_1) == 0) @@ -7168,9 +7515,9 @@ if (x_3 == 0) lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; x_4 = lean_ctor_get(x_1, 0); x_5 = lean_ctor_get(x_1, 1); -x_6 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo(x_4); +x_6 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo(x_4); lean_dec(x_4); -x_7 = l_List_map___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__1(x_5); +x_7 = l_List_map___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__1(x_5); lean_ctor_set(x_1, 1, x_7); lean_ctor_set(x_1, 0, x_6); return x_1; @@ -7183,9 +7530,9 @@ x_9 = lean_ctor_get(x_1, 1); lean_inc(x_9); lean_inc(x_8); lean_dec(x_1); -x_10 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo(x_8); +x_10 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo(x_8); lean_dec(x_8); -x_11 = l_List_map___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__1(x_9); +x_11 = l_List_map___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__1(x_9); x_12 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_12, 0, x_10); lean_ctor_set(x_12, 1, x_11); @@ -7194,7 +7541,7 @@ return x_12; } } } -lean_object* _init_l_List_head_x21___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__2___closed__1() { +lean_object* _init_l_List_head_x21___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__2___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -7204,11 +7551,11 @@ x_3 = l_monadInhabited___rarg(x_1, x_2); return x_3; } } -lean_object* _init_l_List_head_x21___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__2___closed__2() { +lean_object* _init_l_List_head_x21___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__2___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_List_head_x21___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__2___closed__1; +x_1 = l_List_head_x21___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__2___closed__1; x_2 = l_Lean_stxInh; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -7216,25 +7563,25 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -lean_object* _init_l_List_head_x21___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__2___closed__3() { +lean_object* _init_l_List_head_x21___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__2___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Elab_Term_HeadInfo_Inhabited; -x_2 = l_List_head_x21___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__2___closed__2; +x_2 = l_List_head_x21___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__2___closed__2; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); return x_3; } } -lean_object* l_List_head_x21___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__2(lean_object* x_1) { +lean_object* l_List_head_x21___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__2(lean_object* x_1) { _start: { if (lean_obj_tag(x_1) == 0) { lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_2 = l_List_head_x21___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__2___closed__3; +x_2 = l_List_head_x21___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__2___closed__3; x_3 = l_List_head_x21___rarg___closed__2; x_4 = lean_panic_fn(x_2, x_3); return x_4; @@ -7248,7 +7595,7 @@ return x_5; } } } -lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__3(lean_object* x_1, lean_object* x_2) { +lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__3(lean_object* x_1, lean_object* x_2) { _start: { if (lean_obj_tag(x_2) == 0) @@ -7278,7 +7625,7 @@ goto _start; } } } -lean_object* l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__4(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__4(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_2) == 0) @@ -7351,7 +7698,7 @@ goto _start; } } } -lean_object* _init_l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__5___closed__1() { +lean_object* _init_l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__5___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -7361,7 +7708,7 @@ x_3 = l_List_lengthAux___main___rarg(x_1, x_2); return x_3; } } -lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__5(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__5(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_1) == 0) @@ -7383,9 +7730,9 @@ if (x_6 == 0) lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; x_7 = lean_ctor_get(x_1, 0); x_8 = lean_ctor_get(x_1, 1); -x_9 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__5___closed__1; +x_9 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__5___closed__1; lean_inc(x_2); -x_10 = l___private_Init_Lean_Elab_Quotation_8__explodeHeadPat(x_9, x_7, x_2, x_3); +x_10 = l___private_Init_Lean_Elab_Quotation_9__explodeHeadPat(x_9, x_7, x_2, x_3); if (lean_obj_tag(x_10) == 0) { lean_object* x_11; lean_object* x_12; lean_object* x_13; @@ -7394,7 +7741,7 @@ lean_inc(x_11); x_12 = lean_ctor_get(x_10, 1); lean_inc(x_12); lean_dec(x_10); -x_13 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__5(x_8, x_2, x_12); +x_13 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__5(x_8, x_2, x_12); if (lean_obj_tag(x_13) == 0) { uint8_t x_14; @@ -7483,9 +7830,9 @@ x_28 = lean_ctor_get(x_1, 1); lean_inc(x_28); lean_inc(x_27); lean_dec(x_1); -x_29 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__5___closed__1; +x_29 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__5___closed__1; lean_inc(x_2); -x_30 = l___private_Init_Lean_Elab_Quotation_8__explodeHeadPat(x_29, x_27, x_2, x_3); +x_30 = l___private_Init_Lean_Elab_Quotation_9__explodeHeadPat(x_29, x_27, x_2, x_3); if (lean_obj_tag(x_30) == 0) { lean_object* x_31; lean_object* x_32; lean_object* x_33; @@ -7494,7 +7841,7 @@ lean_inc(x_31); x_32 = lean_ctor_get(x_30, 1); lean_inc(x_32); lean_dec(x_30); -x_33 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__5(x_28, x_2, x_32); +x_33 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__5(x_28, x_2, x_32); if (lean_obj_tag(x_33) == 0) { lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; @@ -7578,7 +7925,7 @@ return x_46; } } } -lean_object* l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__6(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__6(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_2) == 0) @@ -7651,7 +7998,7 @@ goto _start; } } } -lean_object* l_List_map___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__7(lean_object* x_1) { +lean_object* l_List_map___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__7(lean_object* x_1) { _start: { if (lean_obj_tag(x_1) == 0) @@ -7672,7 +8019,7 @@ x_5 = lean_ctor_get(x_1, 1); x_6 = lean_ctor_get(x_4, 1); lean_inc(x_6); lean_dec(x_4); -x_7 = l_List_map___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__7(x_5); +x_7 = l_List_map___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__7(x_5); lean_ctor_set(x_1, 1, x_7); lean_ctor_set(x_1, 0, x_6); return x_1; @@ -7688,7 +8035,7 @@ lean_dec(x_1); x_10 = lean_ctor_get(x_8, 1); lean_inc(x_10); lean_dec(x_8); -x_11 = l_List_map___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__7(x_9); +x_11 = l_List_map___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__7(x_9); x_12 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_12, 0, x_10); lean_ctor_set(x_12, 1, x_11); @@ -7697,7 +8044,7 @@ return x_12; } } } -lean_object* _init_l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__8___closed__1() { +lean_object* _init_l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__8___closed__1() { _start: { lean_object* x_1; @@ -7705,22 +8052,22 @@ x_1 = lean_mk_string("Syntax.getArg"); return x_1; } } -lean_object* _init_l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__8___closed__2() { +lean_object* _init_l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__8___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__8___closed__1; +x_1 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__8___closed__1; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -lean_object* _init_l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__8___closed__3() { +lean_object* _init_l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__8___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__8___closed__1; +x_1 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__8___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__8___closed__2; +x_3 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__8___closed__2; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -7728,7 +8075,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -lean_object* _init_l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__8___closed__4() { +lean_object* _init_l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__8___closed__4() { _start: { lean_object* x_1; @@ -7736,51 +8083,51 @@ x_1 = lean_mk_string("getArg"); return x_1; } } -lean_object* _init_l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__8___closed__5() { +lean_object* _init_l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__8___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__13; -x_2 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__8___closed__4; +x_1 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__13; +x_2 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__8___closed__4; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__8___closed__6() { +lean_object* _init_l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__8___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__15; -x_2 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__8___closed__4; +x_1 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__15; +x_2 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__8___closed__4; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__8___closed__7() { +lean_object* _init_l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__8___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__8___closed__6; +x_2 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__8___closed__6; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -lean_object* _init_l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__8___closed__8() { +lean_object* _init_l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__8___closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__8___closed__7; +x_2 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__8___closed__7; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__8(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__8(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_1) == 0) @@ -7808,12 +8155,12 @@ x_11 = lean_ctor_get(x_9, 1); lean_inc(x_11); lean_dec(x_9); x_12 = lean_box(0); -x_13 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__8___closed__5; +x_13 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__8___closed__5; lean_inc(x_10); x_14 = lean_name_mk_numeral(x_13, x_10); x_15 = lean_box(0); -x_16 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__8___closed__3; -x_17 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__8___closed__8; +x_16 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__8___closed__3; +x_17 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__8___closed__8; x_18 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_18, 0, x_12); lean_ctor_set(x_18, 1, x_16); @@ -7828,9 +8175,9 @@ 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 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__8; +x_26 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__8; x_27 = lean_name_mk_numeral(x_26, x_10); -x_28 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__7; +x_28 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__7; x_29 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_29, 0, x_12); lean_ctor_set(x_29, 1, x_28); @@ -7860,7 +8207,7 @@ x_44 = lean_array_push(x_36, x_43); x_45 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_45, 0, x_34); lean_ctor_set(x_45, 1, x_44); -x_46 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__8(x_8, x_2, x_11); +x_46 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__8(x_8, x_2, x_11); x_47 = !lean_is_exclusive(x_46); if (x_47 == 0) { @@ -7902,12 +8249,12 @@ x_56 = lean_ctor_get(x_54, 1); lean_inc(x_56); lean_dec(x_54); x_57 = lean_box(0); -x_58 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__8___closed__5; +x_58 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__8___closed__5; lean_inc(x_55); x_59 = lean_name_mk_numeral(x_58, x_55); x_60 = lean_box(0); -x_61 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__8___closed__3; -x_62 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__8___closed__8; +x_61 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__8___closed__3; +x_62 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__8___closed__8; x_63 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_63, 0, x_57); lean_ctor_set(x_63, 1, x_61); @@ -7922,9 +8269,9 @@ x_69 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_69, 0, x_68); lean_ctor_set(x_69, 1, x_67); x_70 = lean_array_push(x_64, x_69); -x_71 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__8; +x_71 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__8; x_72 = lean_name_mk_numeral(x_71, x_55); -x_73 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__7; +x_73 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__7; x_74 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_74, 0, x_57); lean_ctor_set(x_74, 1, x_73); @@ -7954,7 +8301,7 @@ x_89 = lean_array_push(x_81, x_88); x_90 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_90, 0, x_79); lean_ctor_set(x_90, 1, x_89); -x_91 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__8(x_53, x_2, x_56); +x_91 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__8(x_53, x_2, x_56); x_92 = lean_ctor_get(x_91, 0); lean_inc(x_92); x_93 = lean_ctor_get(x_91, 1); @@ -7982,7 +8329,7 @@ return x_96; } } } -lean_object* l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__9(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__9(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_2) == 0) @@ -8055,7 +8402,7 @@ goto _start; } } } -lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__10(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__10(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { if (lean_obj_tag(x_2) == 0) @@ -8080,7 +8427,7 @@ x_9 = lean_ctor_get(x_2, 1); x_10 = lean_unsigned_to_nat(0u); x_11 = l_List_lengthAux___main___rarg(x_1, x_10); lean_inc(x_3); -x_12 = l___private_Init_Lean_Elab_Quotation_8__explodeHeadPat(x_11, x_8, x_3, x_4); +x_12 = l___private_Init_Lean_Elab_Quotation_9__explodeHeadPat(x_11, x_8, x_3, x_4); if (lean_obj_tag(x_12) == 0) { lean_object* x_13; lean_object* x_14; lean_object* x_15; @@ -8089,7 +8436,7 @@ lean_inc(x_13); x_14 = lean_ctor_get(x_12, 1); lean_inc(x_14); lean_dec(x_12); -x_15 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__10(x_1, x_9, x_3, x_14); +x_15 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__10(x_1, x_9, x_3, x_14); if (lean_obj_tag(x_15) == 0) { uint8_t x_16; @@ -8181,7 +8528,7 @@ lean_dec(x_2); x_31 = lean_unsigned_to_nat(0u); x_32 = l_List_lengthAux___main___rarg(x_1, x_31); lean_inc(x_3); -x_33 = l___private_Init_Lean_Elab_Quotation_8__explodeHeadPat(x_32, x_29, x_3, x_4); +x_33 = l___private_Init_Lean_Elab_Quotation_9__explodeHeadPat(x_32, x_29, x_3, x_4); if (lean_obj_tag(x_33) == 0) { lean_object* x_34; lean_object* x_35; lean_object* x_36; @@ -8190,7 +8537,7 @@ lean_inc(x_34); x_35 = lean_ctor_get(x_33, 1); lean_inc(x_35); lean_dec(x_33); -x_36 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__10(x_1, x_30, x_3, x_35); +x_36 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__10(x_1, x_30, x_3, x_35); if (lean_obj_tag(x_36) == 0) { lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; @@ -8274,7 +8621,7 @@ return x_49; } } } -lean_object* l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__11(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__11(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_2) == 0) @@ -8347,7 +8694,7 @@ goto _start; } } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__1() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__1() { _start: { lean_object* x_1; @@ -8355,27 +8702,27 @@ x_1 = lean_mk_string("non-exhaustive 'match_syntax'"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__2() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__1; +x_1 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__1; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__3() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__3() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__2; +x_1 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__2; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__4() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__4() { _start: { lean_object* x_1; @@ -8383,22 +8730,22 @@ x_1 = lean_mk_string("Syntax.isOfKind"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__5() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__5() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__4; +x_1 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__4; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__6() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__4; +x_1 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__4; x_2 = lean_unsigned_to_nat(0u); -x_3 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__5; +x_3 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__5; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -8406,7 +8753,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__7() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__7() { _start: { lean_object* x_1; @@ -8414,51 +8761,51 @@ x_1 = lean_mk_string("isOfKind"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__8() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__13; -x_2 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__7; +x_1 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__13; +x_2 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__7; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__9() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__15; -x_2 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__7; +x_1 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__15; +x_2 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__7; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__10() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__9; +x_2 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__9; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__11() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__10; +x_2 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__10; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__12() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__12() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -8470,27 +8817,27 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__13() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__13() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Array_empty___closed__1; -x_2 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__12; +x_2 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__12; x_3 = lean_array_push(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__14() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__14() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__13; +x_1 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__13; x_2 = l___private_Init_Lean_Elab_Term_8__expandCDot___closed__4; x_3 = lean_array_push(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__15() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__15() { _start: { lean_object* x_1; @@ -8498,22 +8845,22 @@ x_1 = lean_mk_string("coe"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__16() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__16() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__15; +x_1 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__15; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__17() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__17() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__15; +x_1 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__15; x_2 = lean_unsigned_to_nat(0u); -x_3 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__16; +x_3 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__16; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -8521,41 +8868,41 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__18() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__18() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__15; +x_2 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__15; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__19() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__19() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__18; +x_2 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__18; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__20() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__20() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__19; +x_2 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__19; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__21() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__21() { _start: { lean_object* x_1; @@ -8563,19 +8910,19 @@ x_1 = lean_mk_string("then"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__22() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__22() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__21; +x_2 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__21; x_3 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__23() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__23() { _start: { lean_object* x_1; @@ -8583,19 +8930,19 @@ x_1 = lean_mk_string("else"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__24() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__24() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__23; +x_2 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__23; x_3 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__25() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__25() { _start: { lean_object* x_1; @@ -8603,19 +8950,19 @@ x_1 = lean_mk_string("&&"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__26() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__26() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__25; +x_2 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__25; x_3 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__27() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__27() { _start: { lean_object* x_1; @@ -8623,22 +8970,22 @@ x_1 = lean_mk_string("Array.size"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__28() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__28() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__27; +x_1 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__27; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__29() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__29() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__27; +x_1 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__27; x_2 = lean_unsigned_to_nat(0u); -x_3 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__28; +x_3 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__28; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -8646,7 +8993,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__30() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__30() { _start: { lean_object* x_1; @@ -8654,75 +9001,75 @@ x_1 = lean_mk_string("size"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__31() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__31() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__5; -x_2 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__30; +x_1 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__5; +x_2 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__30; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__32() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__32() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__31; +x_2 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__31; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__33() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__33() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__32; +x_2 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__32; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__34() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__34() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__15; -x_2 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__2___closed__4; +x_1 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__15; +x_2 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___lambda__2___closed__4; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__35() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__35() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__34; +x_2 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__34; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__36() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__36() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__35; +x_2 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__35; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__37() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__37() { _start: { lean_object* x_1; @@ -8730,19 +9077,19 @@ x_1 = lean_mk_string("=="); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__38() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__38() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__37; +x_2 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__37; x_3 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); return x_3; } } -lean_object* l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { if (lean_obj_tag(x_2) == 0) @@ -8750,7 +9097,7 @@ if (lean_obj_tag(x_2) == 0) if (lean_obj_tag(x_3) == 0) { lean_object* x_6; lean_object* x_7; -x_6 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__3; +x_6 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__3; x_7 = l_Lean_Elab_Term_throwError___rarg(x_1, x_6, x_4, x_5); return x_7; } @@ -8793,7 +9140,7 @@ if (lean_obj_tag(x_3) == 0) { lean_object* x_15; lean_object* x_16; lean_dec(x_2); -x_15 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__3; +x_15 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__3; x_16 = l_Lean_Elab_Term_throwError___rarg(x_1, x_15, x_4, x_5); return x_16; } @@ -8805,12 +9152,12 @@ lean_inc(x_17); x_18 = lean_ctor_get(x_2, 1); lean_inc(x_18); lean_inc(x_3); -x_19 = l_List_map___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__1(x_3); +x_19 = l_List_map___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__1(x_3); x_20 = l_List_zip___rarg___closed__1; x_21 = l_List_zipWith___main___rarg(x_20, x_19, x_3); -x_22 = l_List_head_x21___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__2(x_21); +x_22 = l_List_head_x21___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__2(x_21); x_23 = l_List_tail_x21___rarg(x_21); -x_24 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__3(x_22, x_23); +x_24 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__3(x_22, x_23); lean_dec(x_23); lean_dec(x_22); x_25 = lean_ctor_get(x_24, 0); @@ -8823,9 +9170,9 @@ if (lean_obj_tag(x_26) == 0) lean_object* x_27; lean_object* x_28; lean_object* x_29; x_27 = lean_box(0); lean_inc(x_21); -x_28 = l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__4(x_25, x_21, x_27); +x_28 = l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__4(x_25, x_21, x_27); lean_inc(x_4); -x_29 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__5(x_28, x_4, x_5); +x_29 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__5(x_28, x_4, x_5); if (lean_obj_tag(x_29) == 0) { lean_object* x_30; lean_object* x_31; lean_object* x_32; uint8_t x_33; @@ -8884,7 +9231,7 @@ lean_ctor_set(x_47, 8, x_45); lean_ctor_set(x_47, 9, x_34); lean_ctor_set_uint8(x_47, sizeof(void*)*10, x_46); lean_inc(x_1); -x_48 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main(x_1, x_32, x_30, x_47, x_31); +x_48 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main(x_1, x_32, x_30, x_47, x_31); if (lean_obj_tag(x_48) == 0) { lean_object* x_49; @@ -8919,9 +9266,9 @@ if (x_53 == 0) lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; x_54 = lean_ctor_get(x_52, 0); x_55 = lean_box(0); -x_56 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__8; +x_56 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__8; x_57 = lean_name_mk_numeral(x_56, x_54); -x_58 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__7; +x_58 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__7; x_59 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_59, 0, x_55); lean_ctor_set(x_59, 1, x_58); @@ -8932,16 +9279,16 @@ x_61 = lean_array_push(x_60, x_59); x_62 = l___private_Init_Lean_Elab_Term_8__expandCDot___closed__4; x_63 = lean_array_push(x_61, x_62); x_64 = lean_array_push(x_63, x_62); -x_65 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__4; +x_65 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__4; x_66 = lean_array_push(x_64, x_65); x_67 = lean_array_push(x_66, x_17); x_68 = l_Lean_Parser_Term_letIdDecl___elambda__1___closed__2; x_69 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_69, 0, x_68); lean_ctor_set(x_69, 1, x_67); -x_70 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__2; +x_70 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__2; x_71 = lean_array_push(x_70, x_69); -x_72 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__10; +x_72 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__10; x_73 = lean_array_push(x_71, x_72); x_74 = lean_array_push(x_73, x_50); x_75 = l_Lean_Parser_Term_let___elambda__1___closed__2; @@ -8960,9 +9307,9 @@ lean_inc(x_78); lean_inc(x_77); lean_dec(x_52); x_79 = lean_box(0); -x_80 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__8; +x_80 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__8; x_81 = lean_name_mk_numeral(x_80, x_77); -x_82 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__7; +x_82 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__7; x_83 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_83, 0, x_79); lean_ctor_set(x_83, 1, x_82); @@ -8973,16 +9320,16 @@ x_85 = lean_array_push(x_84, x_83); x_86 = l___private_Init_Lean_Elab_Term_8__expandCDot___closed__4; x_87 = lean_array_push(x_85, x_86); x_88 = lean_array_push(x_87, x_86); -x_89 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__4; +x_89 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__4; x_90 = lean_array_push(x_88, x_89); x_91 = lean_array_push(x_90, x_17); x_92 = l_Lean_Parser_Term_letIdDecl___elambda__1___closed__2; x_93 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_93, 0, x_92); lean_ctor_set(x_93, 1, x_91); -x_94 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__2; +x_94 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__2; x_95 = lean_array_push(x_94, x_93); -x_96 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__10; +x_96 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__10; x_97 = lean_array_push(x_95, x_96); x_98 = lean_array_push(x_97, x_50); x_99 = l_Lean_Parser_Term_let___elambda__1___closed__2; @@ -9006,9 +9353,9 @@ lean_dec(x_48); x_104 = lean_ctor_get(x_49, 0); lean_inc(x_104); lean_dec(x_49); -x_105 = l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__6(x_25, x_21, x_27); +x_105 = l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__6(x_25, x_21, x_27); lean_dec(x_25); -x_106 = l_List_map___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__7(x_105); +x_106 = l_List_map___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__7(x_105); x_107 = !lean_is_exclusive(x_103); if (x_107 == 0) { @@ -9028,7 +9375,7 @@ lean_ctor_set(x_110, 7, x_44); lean_ctor_set(x_110, 8, x_45); lean_ctor_set(x_110, 9, x_108); lean_ctor_set_uint8(x_110, sizeof(void*)*10, x_46); -x_111 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main(x_1, x_2, x_106, x_110, x_103); +x_111 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main(x_1, x_2, x_106, x_110, x_103); if (lean_obj_tag(x_111) == 0) { lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; uint8_t x_145; @@ -9044,11 +9391,11 @@ x_116 = lean_ctor_get(x_114, 1); lean_inc(x_116); lean_dec(x_114); x_117 = lean_box(0); -x_118 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__8; +x_118 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__8; lean_inc(x_115); x_119 = lean_name_mk_numeral(x_118, x_115); -x_120 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__6; -x_121 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__11; +x_120 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__6; +x_121 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__11; x_122 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_122, 0, x_117); lean_ctor_set(x_122, 1, x_120); @@ -9063,9 +9410,9 @@ x_128 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_128, 0, x_127); lean_ctor_set(x_128, 1, x_126); x_129 = lean_array_push(x_123, x_128); -x_130 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__8; +x_130 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__8; x_131 = lean_name_mk_numeral(x_130, x_115); -x_132 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__7; +x_132 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__7; x_133 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_133, 0, x_117); lean_ctor_set(x_133, 1, x_132); @@ -9104,21 +9451,21 @@ lean_ctor_set(x_148, 3, x_27); x_149 = lean_array_push(x_123, x_148); x_150 = lean_array_push(x_149, x_125); x_151 = lean_array_push(x_150, x_125); -x_152 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__4; +x_152 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__4; x_153 = lean_array_push(x_151, x_152); x_154 = lean_array_push(x_153, x_17); x_155 = l_Lean_Parser_Term_letIdDecl___elambda__1___closed__2; x_156 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_156, 0, x_155); lean_ctor_set(x_156, 1, x_154); -x_157 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__2; +x_157 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__2; x_158 = lean_array_push(x_157, x_156); -x_159 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__10; +x_159 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__10; x_160 = lean_array_push(x_158, x_159); -x_161 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__18; +x_161 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__18; x_162 = lean_name_mk_numeral(x_161, x_146); -x_163 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__17; -x_164 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__20; +x_163 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__17; +x_164 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__20; x_165 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_165, 0, x_117); lean_ctor_set(x_165, 1, x_163); @@ -9134,12 +9481,12 @@ x_170 = lean_array_push(x_169, x_143); x_171 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_171, 0, x_138); lean_ctor_set(x_171, 1, x_170); -x_172 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__14; +x_172 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__14; x_173 = lean_array_push(x_172, x_171); -x_174 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__22; +x_174 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__22; x_175 = lean_array_push(x_173, x_174); x_176 = lean_array_push(x_175, x_102); -x_177 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__24; +x_177 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__24; x_178 = lean_array_push(x_176, x_177); x_179 = lean_array_push(x_178, x_112); x_180 = l_Lean_Parser_Term_if___elambda__1___closed__2; @@ -9172,21 +9519,21 @@ lean_ctor_set(x_188, 3, x_27); x_189 = lean_array_push(x_123, x_188); x_190 = lean_array_push(x_189, x_125); x_191 = lean_array_push(x_190, x_125); -x_192 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__4; +x_192 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__4; x_193 = lean_array_push(x_191, x_192); x_194 = lean_array_push(x_193, x_17); x_195 = l_Lean_Parser_Term_letIdDecl___elambda__1___closed__2; x_196 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_196, 0, x_195); lean_ctor_set(x_196, 1, x_194); -x_197 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__2; +x_197 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__2; x_198 = lean_array_push(x_197, x_196); -x_199 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__10; +x_199 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__10; x_200 = lean_array_push(x_198, x_199); -x_201 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__18; +x_201 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__18; x_202 = lean_name_mk_numeral(x_201, x_185); -x_203 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__17; -x_204 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__20; +x_203 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__17; +x_204 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__20; x_205 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_205, 0, x_117); lean_ctor_set(x_205, 1, x_203); @@ -9202,12 +9549,12 @@ x_210 = lean_array_push(x_209, x_143); x_211 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_211, 0, x_138); lean_ctor_set(x_211, 1, x_210); -x_212 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__14; +x_212 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__14; x_213 = lean_array_push(x_212, x_211); -x_214 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__22; +x_214 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__22; x_215 = lean_array_push(x_213, x_214); x_216 = lean_array_push(x_215, x_102); -x_217 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__24; +x_217 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__24; x_218 = lean_array_push(x_216, x_217); x_219 = lean_array_push(x_218, x_112); x_220 = l_Lean_Parser_Term_if___elambda__1___closed__2; @@ -9288,7 +9635,7 @@ lean_ctor_set(x_238, 7, x_44); lean_ctor_set(x_238, 8, x_45); lean_ctor_set(x_238, 9, x_235); lean_ctor_set_uint8(x_238, sizeof(void*)*10, x_46); -x_239 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main(x_1, x_2, x_106, x_238, x_237); +x_239 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main(x_1, x_2, x_106, x_238, x_237); if (lean_obj_tag(x_239) == 0) { lean_object* x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; lean_object* x_247; lean_object* x_248; lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; lean_object* x_255; lean_object* x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; lean_object* x_262; lean_object* x_263; lean_object* x_264; lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; lean_object* x_269; lean_object* x_270; lean_object* x_271; lean_object* x_272; lean_object* x_273; lean_object* x_274; lean_object* x_275; lean_object* x_276; lean_object* x_277; lean_object* x_278; lean_object* x_279; lean_object* x_280; lean_object* x_281; lean_object* x_282; lean_object* x_283; lean_object* x_284; lean_object* x_285; lean_object* x_286; lean_object* x_287; lean_object* x_288; lean_object* x_289; lean_object* x_290; lean_object* x_291; lean_object* x_292; lean_object* x_293; lean_object* x_294; lean_object* x_295; lean_object* x_296; lean_object* x_297; lean_object* x_298; lean_object* x_299; lean_object* x_300; lean_object* x_301; lean_object* x_302; lean_object* x_303; lean_object* x_304; lean_object* x_305; lean_object* x_306; lean_object* x_307; lean_object* x_308; lean_object* x_309; lean_object* x_310; lean_object* x_311; lean_object* x_312; lean_object* x_313; lean_object* x_314; @@ -9304,11 +9651,11 @@ x_244 = lean_ctor_get(x_242, 1); lean_inc(x_244); lean_dec(x_242); x_245 = lean_box(0); -x_246 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__8; +x_246 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__8; lean_inc(x_243); x_247 = lean_name_mk_numeral(x_246, x_243); -x_248 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__6; -x_249 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__11; +x_248 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__6; +x_249 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__11; x_250 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_250, 0, x_245); lean_ctor_set(x_250, 1, x_248); @@ -9323,9 +9670,9 @@ x_256 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_256, 0, x_255); lean_ctor_set(x_256, 1, x_254); x_257 = lean_array_push(x_251, x_256); -x_258 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__8; +x_258 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__8; x_259 = lean_name_mk_numeral(x_258, x_243); -x_260 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__7; +x_260 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__7; x_261 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_261, 0, x_245); lean_ctor_set(x_261, 1, x_260); @@ -9371,21 +9718,21 @@ lean_ctor_set(x_277, 3, x_27); x_278 = lean_array_push(x_251, x_277); x_279 = lean_array_push(x_278, x_253); x_280 = lean_array_push(x_279, x_253); -x_281 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__4; +x_281 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__4; x_282 = lean_array_push(x_280, x_281); x_283 = lean_array_push(x_282, x_17); x_284 = l_Lean_Parser_Term_letIdDecl___elambda__1___closed__2; x_285 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_285, 0, x_284); lean_ctor_set(x_285, 1, x_283); -x_286 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__2; +x_286 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__2; x_287 = lean_array_push(x_286, x_285); -x_288 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__10; +x_288 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__10; x_289 = lean_array_push(x_287, x_288); -x_290 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__18; +x_290 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__18; x_291 = lean_name_mk_numeral(x_290, x_273); -x_292 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__17; -x_293 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__20; +x_292 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__17; +x_293 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__20; x_294 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_294, 0, x_245); lean_ctor_set(x_294, 1, x_292); @@ -9401,12 +9748,12 @@ x_299 = lean_array_push(x_298, x_271); x_300 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_300, 0, x_266); lean_ctor_set(x_300, 1, x_299); -x_301 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__14; +x_301 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__14; x_302 = lean_array_push(x_301, x_300); -x_303 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__22; +x_303 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__22; x_304 = lean_array_push(x_302, x_303); x_305 = lean_array_push(x_304, x_102); -x_306 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__24; +x_306 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__24; x_307 = lean_array_push(x_305, x_306); x_308 = lean_array_push(x_307, x_240); x_309 = l_Lean_Parser_Term_if___elambda__1___closed__2; @@ -9562,7 +9909,7 @@ lean_ctor_set(x_342, 8, x_340); lean_ctor_set(x_342, 9, x_328); lean_ctor_set_uint8(x_342, sizeof(void*)*10, x_341); lean_inc(x_1); -x_343 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main(x_1, x_32, x_30, x_342, x_331); +x_343 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main(x_1, x_32, x_30, x_342, x_331); if (lean_obj_tag(x_343) == 0) { lean_object* x_344; @@ -9604,9 +9951,9 @@ if (lean_is_exclusive(x_347)) { x_350 = lean_box(0); } x_351 = lean_box(0); -x_352 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__8; +x_352 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__8; x_353 = lean_name_mk_numeral(x_352, x_348); -x_354 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__7; +x_354 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__7; x_355 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_355, 0, x_351); lean_ctor_set(x_355, 1, x_354); @@ -9617,16 +9964,16 @@ x_357 = lean_array_push(x_356, x_355); x_358 = l___private_Init_Lean_Elab_Term_8__expandCDot___closed__4; x_359 = lean_array_push(x_357, x_358); x_360 = lean_array_push(x_359, x_358); -x_361 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__4; +x_361 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__4; x_362 = lean_array_push(x_360, x_361); x_363 = lean_array_push(x_362, x_17); x_364 = l_Lean_Parser_Term_letIdDecl___elambda__1___closed__2; x_365 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_365, 0, x_364); lean_ctor_set(x_365, 1, x_363); -x_366 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__2; +x_366 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__2; x_367 = lean_array_push(x_366, x_365); -x_368 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__10; +x_368 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__10; x_369 = lean_array_push(x_367, x_368); x_370 = lean_array_push(x_369, x_345); x_371 = l_Lean_Parser_Term_let___elambda__1___closed__2; @@ -9653,9 +10000,9 @@ lean_dec(x_343); x_376 = lean_ctor_get(x_344, 0); lean_inc(x_376); lean_dec(x_344); -x_377 = l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__6(x_25, x_21, x_27); +x_377 = l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__6(x_25, x_21, x_27); lean_dec(x_25); -x_378 = l_List_map___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__7(x_377); +x_378 = l_List_map___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__7(x_377); x_379 = lean_ctor_get(x_375, 0); lean_inc(x_379); x_380 = lean_ctor_get(x_375, 1); @@ -9704,7 +10051,7 @@ lean_ctor_set(x_388, 7, x_339); lean_ctor_set(x_388, 8, x_340); lean_ctor_set(x_388, 9, x_384); lean_ctor_set_uint8(x_388, sizeof(void*)*10, x_341); -x_389 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main(x_1, x_2, x_378, x_388, x_387); +x_389 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main(x_1, x_2, x_378, x_388, x_387); if (lean_obj_tag(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; lean_object* x_398; lean_object* x_399; lean_object* x_400; lean_object* x_401; lean_object* x_402; lean_object* x_403; lean_object* x_404; lean_object* x_405; lean_object* x_406; lean_object* x_407; lean_object* x_408; lean_object* x_409; lean_object* x_410; lean_object* x_411; lean_object* x_412; lean_object* x_413; lean_object* x_414; lean_object* x_415; lean_object* x_416; lean_object* x_417; lean_object* x_418; lean_object* x_419; lean_object* x_420; lean_object* x_421; lean_object* x_422; lean_object* x_423; lean_object* x_424; lean_object* x_425; lean_object* x_426; lean_object* x_427; lean_object* x_428; lean_object* x_429; lean_object* x_430; lean_object* x_431; lean_object* x_432; lean_object* x_433; lean_object* x_434; lean_object* x_435; lean_object* x_436; lean_object* x_437; lean_object* x_438; lean_object* x_439; lean_object* x_440; lean_object* x_441; lean_object* x_442; lean_object* x_443; lean_object* x_444; lean_object* x_445; lean_object* x_446; lean_object* x_447; lean_object* x_448; lean_object* x_449; lean_object* x_450; lean_object* x_451; lean_object* x_452; lean_object* x_453; lean_object* x_454; lean_object* x_455; lean_object* x_456; lean_object* x_457; lean_object* x_458; lean_object* x_459; lean_object* x_460; lean_object* x_461; lean_object* x_462; lean_object* x_463; lean_object* x_464; @@ -9720,11 +10067,11 @@ x_394 = lean_ctor_get(x_392, 1); lean_inc(x_394); lean_dec(x_392); x_395 = lean_box(0); -x_396 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__8; +x_396 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__8; lean_inc(x_393); x_397 = lean_name_mk_numeral(x_396, x_393); -x_398 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__6; -x_399 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__11; +x_398 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__6; +x_399 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__11; x_400 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_400, 0, x_395); lean_ctor_set(x_400, 1, x_398); @@ -9739,9 +10086,9 @@ x_406 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_406, 0, x_405); lean_ctor_set(x_406, 1, x_404); x_407 = lean_array_push(x_401, x_406); -x_408 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__8; +x_408 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__8; x_409 = lean_name_mk_numeral(x_408, x_393); -x_410 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__7; +x_410 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__7; x_411 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_411, 0, x_395); lean_ctor_set(x_411, 1, x_410); @@ -9787,21 +10134,21 @@ lean_ctor_set(x_427, 3, x_27); x_428 = lean_array_push(x_401, x_427); x_429 = lean_array_push(x_428, x_403); x_430 = lean_array_push(x_429, x_403); -x_431 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__4; +x_431 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__4; x_432 = lean_array_push(x_430, x_431); x_433 = lean_array_push(x_432, x_17); x_434 = l_Lean_Parser_Term_letIdDecl___elambda__1___closed__2; x_435 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_435, 0, x_434); lean_ctor_set(x_435, 1, x_433); -x_436 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__2; +x_436 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__2; x_437 = lean_array_push(x_436, x_435); -x_438 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__10; +x_438 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__10; x_439 = lean_array_push(x_437, x_438); -x_440 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__18; +x_440 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__18; x_441 = lean_name_mk_numeral(x_440, x_423); -x_442 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__17; -x_443 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__20; +x_442 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__17; +x_443 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__20; x_444 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_444, 0, x_395); lean_ctor_set(x_444, 1, x_442); @@ -9817,12 +10164,12 @@ x_449 = lean_array_push(x_448, x_421); x_450 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_450, 0, x_416); lean_ctor_set(x_450, 1, x_449); -x_451 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__14; +x_451 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__14; x_452 = lean_array_push(x_451, x_450); -x_453 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__22; +x_453 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__22; x_454 = lean_array_push(x_452, x_453); x_455 = lean_array_push(x_454, x_374); -x_456 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__24; +x_456 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__24; x_457 = lean_array_push(x_455, x_456); x_458 = lean_array_push(x_457, x_390); x_459 = l_Lean_Parser_Term_if___elambda__1___closed__2; @@ -9954,7 +10301,7 @@ x_478 = lean_array_get_size(x_477); lean_dec(x_477); lean_inc(x_478); x_479 = l_List_range(x_478); -x_480 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__8(x_479, x_4, x_5); +x_480 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__8(x_479, x_4, x_5); x_481 = lean_ctor_get(x_480, 0); lean_inc(x_481); x_482 = lean_ctor_get(x_480, 1); @@ -9962,9 +10309,9 @@ lean_inc(x_482); lean_dec(x_480); x_483 = lean_box(0); lean_inc(x_21); -x_484 = l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__9(x_25, x_21, x_483); +x_484 = l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__9(x_25, x_21, x_483); lean_inc(x_4); -x_485 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__10(x_481, x_484, x_4, x_482); +x_485 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__10(x_481, x_484, x_4, x_482); if (lean_obj_tag(x_485) == 0) { lean_object* x_486; lean_object* x_487; lean_object* x_488; uint8_t x_489; @@ -10023,7 +10370,7 @@ lean_ctor_set(x_503, 8, x_501); lean_ctor_set(x_503, 9, x_490); lean_ctor_set_uint8(x_503, sizeof(void*)*10, x_502); lean_inc(x_1); -x_504 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main(x_1, x_488, x_486, x_503, x_487); +x_504 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main(x_1, x_488, x_486, x_503, x_487); if (lean_obj_tag(x_504) == 0) { lean_object* x_505; @@ -10059,9 +10406,9 @@ if (x_509 == 0) lean_object* x_510; lean_object* x_511; lean_object* x_512; lean_object* x_513; lean_object* x_514; lean_object* x_515; lean_object* x_516; lean_object* x_517; lean_object* x_518; lean_object* x_519; lean_object* x_520; lean_object* x_521; lean_object* x_522; lean_object* x_523; lean_object* x_524; lean_object* x_525; lean_object* x_526; lean_object* x_527; lean_object* x_528; lean_object* x_529; lean_object* x_530; lean_object* x_531; lean_object* x_532; x_510 = lean_ctor_get(x_508, 0); x_511 = lean_box(0); -x_512 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__8; +x_512 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__8; x_513 = lean_name_mk_numeral(x_512, x_510); -x_514 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__7; +x_514 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__7; x_515 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_515, 0, x_511); lean_ctor_set(x_515, 1, x_514); @@ -10072,16 +10419,16 @@ x_517 = lean_array_push(x_516, x_515); x_518 = l___private_Init_Lean_Elab_Term_8__expandCDot___closed__4; x_519 = lean_array_push(x_517, x_518); x_520 = lean_array_push(x_519, x_518); -x_521 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__4; +x_521 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__4; x_522 = lean_array_push(x_520, x_521); x_523 = lean_array_push(x_522, x_17); x_524 = l_Lean_Parser_Term_letIdDecl___elambda__1___closed__2; x_525 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_525, 0, x_524); lean_ctor_set(x_525, 1, x_523); -x_526 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__2; +x_526 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__2; x_527 = lean_array_push(x_526, x_525); -x_528 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__10; +x_528 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__10; x_529 = lean_array_push(x_527, x_528); x_530 = lean_array_push(x_529, x_506); x_531 = l_Lean_Parser_Term_let___elambda__1___closed__2; @@ -10100,9 +10447,9 @@ lean_inc(x_534); lean_inc(x_533); lean_dec(x_508); x_535 = lean_box(0); -x_536 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__8; +x_536 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__8; x_537 = lean_name_mk_numeral(x_536, x_533); -x_538 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__7; +x_538 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__7; x_539 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_539, 0, x_535); lean_ctor_set(x_539, 1, x_538); @@ -10113,16 +10460,16 @@ x_541 = lean_array_push(x_540, x_539); x_542 = l___private_Init_Lean_Elab_Term_8__expandCDot___closed__4; x_543 = lean_array_push(x_541, x_542); x_544 = lean_array_push(x_543, x_542); -x_545 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__4; +x_545 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__4; x_546 = lean_array_push(x_544, x_545); x_547 = lean_array_push(x_546, x_17); x_548 = l_Lean_Parser_Term_letIdDecl___elambda__1___closed__2; x_549 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_549, 0, x_548); lean_ctor_set(x_549, 1, x_547); -x_550 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__2; +x_550 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__2; x_551 = lean_array_push(x_550, x_549); -x_552 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__10; +x_552 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__10; x_553 = lean_array_push(x_551, x_552); x_554 = lean_array_push(x_553, x_506); x_555 = l_Lean_Parser_Term_let___elambda__1___closed__2; @@ -10146,9 +10493,9 @@ lean_dec(x_504); x_560 = lean_ctor_get(x_505, 0); lean_inc(x_560); lean_dec(x_505); -x_561 = l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__11(x_25, x_21, x_483); +x_561 = l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__11(x_25, x_21, x_483); lean_dec(x_25); -x_562 = l_List_map___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__7(x_561); +x_562 = l_List_map___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__7(x_561); x_563 = !lean_is_exclusive(x_559); if (x_563 == 0) { @@ -10168,7 +10515,7 @@ lean_ctor_set(x_566, 7, x_500); lean_ctor_set(x_566, 8, x_501); lean_ctor_set(x_566, 9, x_564); lean_ctor_set_uint8(x_566, sizeof(void*)*10, x_502); -x_567 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main(x_1, x_2, x_562, x_566, x_559); +x_567 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main(x_1, x_2, x_562, x_566, x_559); if (lean_obj_tag(x_567) == 0) { lean_object* x_568; lean_object* x_569; lean_object* x_570; lean_object* x_571; lean_object* x_572; lean_object* x_573; lean_object* x_574; lean_object* x_575; lean_object* x_576; lean_object* x_577; lean_object* x_578; lean_object* x_579; lean_object* x_580; lean_object* x_581; lean_object* x_582; lean_object* x_583; lean_object* x_584; lean_object* x_585; lean_object* x_586; lean_object* x_587; lean_object* x_588; lean_object* x_589; lean_object* x_590; lean_object* x_591; lean_object* x_592; lean_object* x_593; lean_object* x_594; lean_object* x_595; lean_object* x_596; lean_object* x_597; lean_object* x_598; lean_object* x_599; lean_object* x_600; lean_object* x_601; lean_object* x_602; lean_object* x_603; lean_object* x_604; lean_object* x_605; lean_object* x_606; lean_object* x_607; lean_object* x_608; lean_object* x_609; lean_object* x_610; lean_object* x_611; lean_object* x_612; lean_object* x_613; lean_object* x_614; lean_object* x_615; lean_object* x_616; lean_object* x_617; lean_object* x_618; lean_object* x_619; lean_object* x_620; lean_object* x_621; lean_object* x_622; lean_object* x_623; lean_object* x_624; lean_object* x_625; lean_object* x_626; lean_object* x_627; lean_object* x_628; lean_object* x_629; lean_object* x_630; lean_object* x_631; lean_object* x_632; lean_object* x_633; lean_object* x_634; lean_object* x_635; lean_object* x_636; lean_object* x_637; lean_object* x_638; lean_object* x_639; lean_object* x_640; lean_object* x_641; lean_object* x_642; lean_object* x_643; lean_object* x_644; lean_object* x_645; lean_object* x_646; lean_object* x_647; lean_object* x_648; lean_object* x_649; lean_object* x_650; lean_object* x_651; uint8_t x_652; @@ -10184,11 +10531,11 @@ x_572 = lean_ctor_get(x_570, 1); lean_inc(x_572); lean_dec(x_570); x_573 = lean_box(0); -x_574 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__8; +x_574 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__8; lean_inc(x_571); x_575 = lean_name_mk_numeral(x_574, x_571); -x_576 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__6; -x_577 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__11; +x_576 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__6; +x_577 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__11; x_578 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_578, 0, x_573); lean_ctor_set(x_578, 1, x_576); @@ -10203,10 +10550,10 @@ x_584 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_584, 0, x_583); lean_ctor_set(x_584, 1, x_582); x_585 = lean_array_push(x_579, x_584); -x_586 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__8; +x_586 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__8; lean_inc(x_571); x_587 = lean_name_mk_numeral(x_586, x_571); -x_588 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__7; +x_588 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__7; x_589 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_589, 0, x_573); lean_ctor_set(x_589, 1, x_588); @@ -10230,13 +10577,13 @@ x_599 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_599, 0, x_594); lean_ctor_set(x_599, 1, x_598); x_600 = lean_array_push(x_579, x_599); -x_601 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__26; +x_601 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__26; x_602 = lean_array_push(x_600, x_601); -x_603 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__31; +x_603 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__31; lean_inc(x_571); x_604 = lean_name_mk_numeral(x_603, x_571); -x_605 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__29; -x_606 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__33; +x_605 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__29; +x_606 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__33; x_607 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_607, 0, x_573); lean_ctor_set(x_607, 1, x_605); @@ -10248,10 +10595,10 @@ x_610 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_610, 0, x_583); lean_ctor_set(x_610, 1, x_609); x_611 = lean_array_push(x_579, x_610); -x_612 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__2___closed__5; +x_612 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___lambda__2___closed__5; x_613 = lean_name_mk_numeral(x_612, x_571); -x_614 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__2___closed__3; -x_615 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__36; +x_614 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___lambda__2___closed__3; +x_615 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__36; x_616 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_616, 0, x_573); lean_ctor_set(x_616, 1, x_614); @@ -10273,9 +10620,9 @@ x_625 = l_Lean_nullKind___closed__2; x_626 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_626, 0, x_625); lean_ctor_set(x_626, 1, x_624); -x_627 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__56; +x_627 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__53; x_628 = lean_array_push(x_627, x_626); -x_629 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__64; +x_629 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__61; x_630 = lean_array_push(x_628, x_629); x_631 = l_Lean_Parser_Term_paren___elambda__1___closed__1; x_632 = lean_alloc_ctor(1, 2, 0); @@ -10286,7 +10633,7 @@ x_634 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_634, 0, x_594); lean_ctor_set(x_634, 1, x_633); x_635 = lean_array_push(x_579, x_634); -x_636 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__38; +x_636 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__38; x_637 = lean_array_push(x_635, x_636); x_638 = l_Nat_repr(x_478); x_639 = l_Lean_numLitKind; @@ -10324,21 +10671,21 @@ lean_ctor_set(x_655, 3, x_483); x_656 = lean_array_push(x_579, x_655); x_657 = lean_array_push(x_656, x_581); x_658 = lean_array_push(x_657, x_581); -x_659 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__4; +x_659 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__4; x_660 = lean_array_push(x_658, x_659); x_661 = lean_array_push(x_660, x_17); x_662 = l_Lean_Parser_Term_letIdDecl___elambda__1___closed__2; x_663 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_663, 0, x_662); lean_ctor_set(x_663, 1, x_661); -x_664 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__2; +x_664 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__2; x_665 = lean_array_push(x_664, x_663); -x_666 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__10; +x_666 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__10; x_667 = lean_array_push(x_665, x_666); -x_668 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__18; +x_668 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__18; x_669 = lean_name_mk_numeral(x_668, x_653); -x_670 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__17; -x_671 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__20; +x_670 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__17; +x_671 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__20; x_672 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_672, 0, x_573); lean_ctor_set(x_672, 1, x_670); @@ -10354,12 +10701,12 @@ x_677 = lean_array_push(x_676, x_650); x_678 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_678, 0, x_594); lean_ctor_set(x_678, 1, x_677); -x_679 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__14; +x_679 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__14; x_680 = lean_array_push(x_679, x_678); -x_681 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__22; +x_681 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__22; x_682 = lean_array_push(x_680, x_681); x_683 = lean_array_push(x_682, x_558); -x_684 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__24; +x_684 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__24; x_685 = lean_array_push(x_683, x_684); x_686 = lean_array_push(x_685, x_568); x_687 = l_Lean_Parser_Term_if___elambda__1___closed__2; @@ -10392,21 +10739,21 @@ lean_ctor_set(x_695, 3, x_483); x_696 = lean_array_push(x_579, x_695); x_697 = lean_array_push(x_696, x_581); x_698 = lean_array_push(x_697, x_581); -x_699 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__4; +x_699 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__4; x_700 = lean_array_push(x_698, x_699); x_701 = lean_array_push(x_700, x_17); x_702 = l_Lean_Parser_Term_letIdDecl___elambda__1___closed__2; x_703 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_703, 0, x_702); lean_ctor_set(x_703, 1, x_701); -x_704 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__2; +x_704 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__2; x_705 = lean_array_push(x_704, x_703); -x_706 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__10; +x_706 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__10; x_707 = lean_array_push(x_705, x_706); -x_708 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__18; +x_708 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__18; x_709 = lean_name_mk_numeral(x_708, x_692); -x_710 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__17; -x_711 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__20; +x_710 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__17; +x_711 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__20; x_712 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_712, 0, x_573); lean_ctor_set(x_712, 1, x_710); @@ -10422,12 +10769,12 @@ x_717 = lean_array_push(x_716, x_650); x_718 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_718, 0, x_594); lean_ctor_set(x_718, 1, x_717); -x_719 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__14; +x_719 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__14; x_720 = lean_array_push(x_719, x_718); -x_721 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__22; +x_721 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__22; x_722 = lean_array_push(x_720, x_721); x_723 = lean_array_push(x_722, x_558); -x_724 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__24; +x_724 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__24; x_725 = lean_array_push(x_723, x_724); x_726 = lean_array_push(x_725, x_568); x_727 = l_Lean_Parser_Term_if___elambda__1___closed__2; @@ -10509,7 +10856,7 @@ lean_ctor_set(x_745, 7, x_500); lean_ctor_set(x_745, 8, x_501); lean_ctor_set(x_745, 9, x_742); lean_ctor_set_uint8(x_745, sizeof(void*)*10, x_502); -x_746 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main(x_1, x_2, x_562, x_745, x_744); +x_746 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main(x_1, x_2, x_562, x_745, x_744); if (lean_obj_tag(x_746) == 0) { lean_object* x_747; lean_object* x_748; lean_object* x_749; lean_object* x_750; lean_object* x_751; lean_object* x_752; lean_object* x_753; lean_object* x_754; lean_object* x_755; lean_object* x_756; lean_object* x_757; lean_object* x_758; lean_object* x_759; lean_object* x_760; lean_object* x_761; lean_object* x_762; lean_object* x_763; lean_object* x_764; lean_object* x_765; lean_object* x_766; lean_object* x_767; lean_object* x_768; lean_object* x_769; lean_object* x_770; lean_object* x_771; lean_object* x_772; lean_object* x_773; lean_object* x_774; lean_object* x_775; lean_object* x_776; lean_object* x_777; lean_object* x_778; lean_object* x_779; lean_object* x_780; lean_object* x_781; lean_object* x_782; lean_object* x_783; lean_object* x_784; lean_object* x_785; lean_object* x_786; lean_object* x_787; lean_object* x_788; lean_object* x_789; lean_object* x_790; lean_object* x_791; lean_object* x_792; lean_object* x_793; lean_object* x_794; lean_object* x_795; lean_object* x_796; lean_object* x_797; lean_object* x_798; lean_object* x_799; lean_object* x_800; lean_object* x_801; lean_object* x_802; lean_object* x_803; lean_object* x_804; lean_object* x_805; lean_object* x_806; lean_object* x_807; lean_object* x_808; lean_object* x_809; lean_object* x_810; lean_object* x_811; lean_object* x_812; lean_object* x_813; lean_object* x_814; lean_object* x_815; lean_object* x_816; lean_object* x_817; lean_object* x_818; lean_object* x_819; lean_object* x_820; lean_object* x_821; lean_object* x_822; lean_object* x_823; lean_object* x_824; lean_object* x_825; lean_object* x_826; lean_object* x_827; lean_object* x_828; lean_object* x_829; lean_object* x_830; lean_object* x_831; lean_object* x_832; lean_object* x_833; lean_object* x_834; lean_object* x_835; lean_object* x_836; lean_object* x_837; lean_object* x_838; lean_object* x_839; lean_object* x_840; lean_object* x_841; lean_object* x_842; lean_object* x_843; lean_object* x_844; lean_object* x_845; lean_object* x_846; lean_object* x_847; lean_object* x_848; lean_object* x_849; lean_object* x_850; lean_object* x_851; lean_object* x_852; lean_object* x_853; lean_object* x_854; lean_object* x_855; lean_object* x_856; lean_object* x_857; lean_object* x_858; lean_object* x_859; lean_object* x_860; lean_object* x_861; lean_object* x_862; lean_object* x_863; lean_object* x_864; lean_object* x_865; lean_object* x_866; lean_object* x_867; lean_object* x_868; lean_object* x_869; lean_object* x_870; lean_object* x_871; lean_object* x_872; @@ -10525,11 +10872,11 @@ x_751 = lean_ctor_get(x_749, 1); lean_inc(x_751); lean_dec(x_749); x_752 = lean_box(0); -x_753 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__8; +x_753 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__8; lean_inc(x_750); x_754 = lean_name_mk_numeral(x_753, x_750); -x_755 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__6; -x_756 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__11; +x_755 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__6; +x_756 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__11; x_757 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_757, 0, x_752); lean_ctor_set(x_757, 1, x_755); @@ -10544,10 +10891,10 @@ x_763 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_763, 0, x_762); lean_ctor_set(x_763, 1, x_761); x_764 = lean_array_push(x_758, x_763); -x_765 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__8; +x_765 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__8; lean_inc(x_750); x_766 = lean_name_mk_numeral(x_765, x_750); -x_767 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__7; +x_767 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__7; x_768 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_768, 0, x_752); lean_ctor_set(x_768, 1, x_767); @@ -10571,13 +10918,13 @@ x_778 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_778, 0, x_773); lean_ctor_set(x_778, 1, x_777); x_779 = lean_array_push(x_758, x_778); -x_780 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__26; +x_780 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__26; x_781 = lean_array_push(x_779, x_780); -x_782 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__31; +x_782 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__31; lean_inc(x_750); x_783 = lean_name_mk_numeral(x_782, x_750); -x_784 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__29; -x_785 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__33; +x_784 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__29; +x_785 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__33; x_786 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_786, 0, x_752); lean_ctor_set(x_786, 1, x_784); @@ -10589,10 +10936,10 @@ x_789 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_789, 0, x_762); lean_ctor_set(x_789, 1, x_788); x_790 = lean_array_push(x_758, x_789); -x_791 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__2___closed__5; +x_791 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___lambda__2___closed__5; x_792 = lean_name_mk_numeral(x_791, x_750); -x_793 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__2___closed__3; -x_794 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__36; +x_793 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___lambda__2___closed__3; +x_794 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__36; x_795 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_795, 0, x_752); lean_ctor_set(x_795, 1, x_793); @@ -10614,9 +10961,9 @@ x_804 = l_Lean_nullKind___closed__2; x_805 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_805, 0, x_804); lean_ctor_set(x_805, 1, x_803); -x_806 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__56; +x_806 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__53; x_807 = lean_array_push(x_806, x_805); -x_808 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__64; +x_808 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__61; x_809 = lean_array_push(x_807, x_808); x_810 = l_Lean_Parser_Term_paren___elambda__1___closed__1; x_811 = lean_alloc_ctor(1, 2, 0); @@ -10627,7 +10974,7 @@ x_813 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_813, 0, x_773); lean_ctor_set(x_813, 1, x_812); x_814 = lean_array_push(x_758, x_813); -x_815 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__38; +x_815 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__38; x_816 = lean_array_push(x_814, x_815); x_817 = l_Nat_repr(x_478); x_818 = l_Lean_numLitKind; @@ -10672,21 +11019,21 @@ lean_ctor_set(x_835, 3, x_483); x_836 = lean_array_push(x_758, x_835); x_837 = lean_array_push(x_836, x_760); x_838 = lean_array_push(x_837, x_760); -x_839 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__4; +x_839 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__4; x_840 = lean_array_push(x_838, x_839); x_841 = lean_array_push(x_840, x_17); x_842 = l_Lean_Parser_Term_letIdDecl___elambda__1___closed__2; x_843 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_843, 0, x_842); lean_ctor_set(x_843, 1, x_841); -x_844 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__2; +x_844 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__2; x_845 = lean_array_push(x_844, x_843); -x_846 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__10; +x_846 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__10; x_847 = lean_array_push(x_845, x_846); -x_848 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__18; +x_848 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__18; x_849 = lean_name_mk_numeral(x_848, x_831); -x_850 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__17; -x_851 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__20; +x_850 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__17; +x_851 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__20; x_852 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_852, 0, x_752); lean_ctor_set(x_852, 1, x_850); @@ -10702,12 +11049,12 @@ x_857 = lean_array_push(x_856, x_829); x_858 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_858, 0, x_773); lean_ctor_set(x_858, 1, x_857); -x_859 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__14; +x_859 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__14; x_860 = lean_array_push(x_859, x_858); -x_861 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__22; +x_861 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__22; x_862 = lean_array_push(x_860, x_861); x_863 = lean_array_push(x_862, x_558); -x_864 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__24; +x_864 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__24; x_865 = lean_array_push(x_863, x_864); x_866 = lean_array_push(x_865, x_747); x_867 = l_Lean_Parser_Term_if___elambda__1___closed__2; @@ -10865,7 +11212,7 @@ lean_ctor_set(x_900, 8, x_898); lean_ctor_set(x_900, 9, x_886); lean_ctor_set_uint8(x_900, sizeof(void*)*10, x_899); lean_inc(x_1); -x_901 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main(x_1, x_488, x_486, x_900, x_889); +x_901 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main(x_1, x_488, x_486, x_900, x_889); if (lean_obj_tag(x_901) == 0) { lean_object* x_902; @@ -10908,9 +11255,9 @@ if (lean_is_exclusive(x_905)) { x_908 = lean_box(0); } x_909 = lean_box(0); -x_910 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__8; +x_910 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__8; x_911 = lean_name_mk_numeral(x_910, x_906); -x_912 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__7; +x_912 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__7; x_913 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_913, 0, x_909); lean_ctor_set(x_913, 1, x_912); @@ -10921,16 +11268,16 @@ x_915 = lean_array_push(x_914, x_913); x_916 = l___private_Init_Lean_Elab_Term_8__expandCDot___closed__4; x_917 = lean_array_push(x_915, x_916); x_918 = lean_array_push(x_917, x_916); -x_919 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__4; +x_919 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__4; x_920 = lean_array_push(x_918, x_919); x_921 = lean_array_push(x_920, x_17); x_922 = l_Lean_Parser_Term_letIdDecl___elambda__1___closed__2; x_923 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_923, 0, x_922); lean_ctor_set(x_923, 1, x_921); -x_924 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__2; +x_924 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__2; x_925 = lean_array_push(x_924, x_923); -x_926 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__10; +x_926 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__10; x_927 = lean_array_push(x_925, x_926); x_928 = lean_array_push(x_927, x_903); x_929 = l_Lean_Parser_Term_let___elambda__1___closed__2; @@ -10957,9 +11304,9 @@ lean_dec(x_901); x_934 = lean_ctor_get(x_902, 0); lean_inc(x_934); lean_dec(x_902); -x_935 = l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__11(x_25, x_21, x_483); +x_935 = l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__11(x_25, x_21, x_483); lean_dec(x_25); -x_936 = l_List_map___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__7(x_935); +x_936 = l_List_map___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__7(x_935); x_937 = lean_ctor_get(x_933, 0); lean_inc(x_937); x_938 = lean_ctor_get(x_933, 1); @@ -11008,7 +11355,7 @@ lean_ctor_set(x_946, 7, x_897); lean_ctor_set(x_946, 8, x_898); lean_ctor_set(x_946, 9, x_942); lean_ctor_set_uint8(x_946, sizeof(void*)*10, x_899); -x_947 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main(x_1, x_2, x_936, x_946, x_945); +x_947 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main(x_1, x_2, x_936, x_946, x_945); if (lean_obj_tag(x_947) == 0) { lean_object* x_948; lean_object* x_949; lean_object* x_950; lean_object* x_951; lean_object* x_952; lean_object* x_953; lean_object* x_954; lean_object* x_955; lean_object* x_956; lean_object* x_957; lean_object* x_958; lean_object* x_959; lean_object* x_960; lean_object* x_961; lean_object* x_962; lean_object* x_963; lean_object* x_964; lean_object* x_965; lean_object* x_966; lean_object* x_967; lean_object* x_968; lean_object* x_969; lean_object* x_970; lean_object* x_971; lean_object* x_972; lean_object* x_973; lean_object* x_974; lean_object* x_975; lean_object* x_976; lean_object* x_977; lean_object* x_978; lean_object* x_979; lean_object* x_980; lean_object* x_981; lean_object* x_982; lean_object* x_983; lean_object* x_984; lean_object* x_985; lean_object* x_986; lean_object* x_987; lean_object* x_988; lean_object* x_989; lean_object* x_990; lean_object* x_991; lean_object* x_992; lean_object* x_993; lean_object* x_994; lean_object* x_995; lean_object* x_996; lean_object* x_997; lean_object* x_998; lean_object* x_999; lean_object* x_1000; lean_object* x_1001; lean_object* x_1002; lean_object* x_1003; lean_object* x_1004; lean_object* x_1005; lean_object* x_1006; lean_object* x_1007; lean_object* x_1008; lean_object* x_1009; lean_object* x_1010; lean_object* x_1011; lean_object* x_1012; lean_object* x_1013; lean_object* x_1014; lean_object* x_1015; lean_object* x_1016; lean_object* x_1017; lean_object* x_1018; lean_object* x_1019; lean_object* x_1020; lean_object* x_1021; lean_object* x_1022; lean_object* x_1023; lean_object* x_1024; lean_object* x_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; lean_object* x_1036; lean_object* x_1037; lean_object* x_1038; lean_object* x_1039; lean_object* x_1040; lean_object* x_1041; lean_object* x_1042; lean_object* x_1043; lean_object* x_1044; lean_object* x_1045; lean_object* x_1046; lean_object* x_1047; lean_object* x_1048; lean_object* x_1049; lean_object* x_1050; lean_object* x_1051; lean_object* x_1052; lean_object* x_1053; lean_object* x_1054; lean_object* x_1055; lean_object* x_1056; lean_object* x_1057; lean_object* x_1058; lean_object* x_1059; lean_object* x_1060; lean_object* x_1061; lean_object* x_1062; lean_object* x_1063; lean_object* x_1064; lean_object* x_1065; lean_object* x_1066; lean_object* x_1067; lean_object* x_1068; lean_object* x_1069; lean_object* x_1070; lean_object* x_1071; lean_object* x_1072; lean_object* x_1073; @@ -11024,11 +11371,11 @@ x_952 = lean_ctor_get(x_950, 1); lean_inc(x_952); lean_dec(x_950); x_953 = lean_box(0); -x_954 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__8; +x_954 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__8; lean_inc(x_951); x_955 = lean_name_mk_numeral(x_954, x_951); -x_956 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__6; -x_957 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__11; +x_956 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__6; +x_957 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__11; x_958 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_958, 0, x_953); lean_ctor_set(x_958, 1, x_956); @@ -11043,10 +11390,10 @@ x_964 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_964, 0, x_963); lean_ctor_set(x_964, 1, x_962); x_965 = lean_array_push(x_959, x_964); -x_966 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__8; +x_966 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__8; lean_inc(x_951); x_967 = lean_name_mk_numeral(x_966, x_951); -x_968 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__7; +x_968 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__7; x_969 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_969, 0, x_953); lean_ctor_set(x_969, 1, x_968); @@ -11070,13 +11417,13 @@ x_979 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_979, 0, x_974); lean_ctor_set(x_979, 1, x_978); x_980 = lean_array_push(x_959, x_979); -x_981 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__26; +x_981 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__26; x_982 = lean_array_push(x_980, x_981); -x_983 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__31; +x_983 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__31; lean_inc(x_951); x_984 = lean_name_mk_numeral(x_983, x_951); -x_985 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__29; -x_986 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__33; +x_985 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__29; +x_986 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__33; x_987 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_987, 0, x_953); lean_ctor_set(x_987, 1, x_985); @@ -11088,10 +11435,10 @@ x_990 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_990, 0, x_963); lean_ctor_set(x_990, 1, x_989); x_991 = lean_array_push(x_959, x_990); -x_992 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__2___closed__5; +x_992 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___lambda__2___closed__5; x_993 = lean_name_mk_numeral(x_992, x_951); -x_994 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__2___closed__3; -x_995 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__36; +x_994 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___lambda__2___closed__3; +x_995 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__36; x_996 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_996, 0, x_953); lean_ctor_set(x_996, 1, x_994); @@ -11113,9 +11460,9 @@ x_1005 = l_Lean_nullKind___closed__2; x_1006 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1006, 0, x_1005); lean_ctor_set(x_1006, 1, x_1004); -x_1007 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__56; +x_1007 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__53; x_1008 = lean_array_push(x_1007, x_1006); -x_1009 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__64; +x_1009 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__61; x_1010 = lean_array_push(x_1008, x_1009); x_1011 = l_Lean_Parser_Term_paren___elambda__1___closed__1; x_1012 = lean_alloc_ctor(1, 2, 0); @@ -11126,7 +11473,7 @@ x_1014 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1014, 0, x_974); lean_ctor_set(x_1014, 1, x_1013); x_1015 = lean_array_push(x_959, x_1014); -x_1016 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__38; +x_1016 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__38; x_1017 = lean_array_push(x_1015, x_1016); x_1018 = l_Nat_repr(x_478); x_1019 = l_Lean_numLitKind; @@ -11171,21 +11518,21 @@ lean_ctor_set(x_1036, 3, x_483); x_1037 = lean_array_push(x_959, x_1036); x_1038 = lean_array_push(x_1037, x_961); x_1039 = lean_array_push(x_1038, x_961); -x_1040 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__4; +x_1040 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__4; x_1041 = lean_array_push(x_1039, x_1040); x_1042 = lean_array_push(x_1041, x_17); x_1043 = l_Lean_Parser_Term_letIdDecl___elambda__1___closed__2; x_1044 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1044, 0, x_1043); lean_ctor_set(x_1044, 1, x_1042); -x_1045 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__2; +x_1045 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__2; x_1046 = lean_array_push(x_1045, x_1044); -x_1047 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__10; +x_1047 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__10; x_1048 = lean_array_push(x_1046, x_1047); -x_1049 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__18; +x_1049 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__18; x_1050 = lean_name_mk_numeral(x_1049, x_1032); -x_1051 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__17; -x_1052 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__20; +x_1051 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__17; +x_1052 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__20; x_1053 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_1053, 0, x_953); lean_ctor_set(x_1053, 1, x_1051); @@ -11201,12 +11548,12 @@ x_1058 = lean_array_push(x_1057, x_1030); x_1059 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1059, 0, x_974); lean_ctor_set(x_1059, 1, x_1058); -x_1060 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__14; +x_1060 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__14; x_1061 = lean_array_push(x_1060, x_1059); -x_1062 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__22; +x_1062 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__22; x_1063 = lean_array_push(x_1061, x_1062); x_1064 = lean_array_push(x_1063, x_932); -x_1065 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__24; +x_1065 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__24; x_1066 = lean_array_push(x_1064, x_1065); x_1067 = lean_array_push(x_1066, x_948); x_1068 = l_Lean_Parser_Term_if___elambda__1___closed__2; @@ -11336,88 +11683,88 @@ return x_1085; } } } -lean_object* l_List_head_x21___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__2___boxed(lean_object* x_1) { +lean_object* l_List_head_x21___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__2___boxed(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = l_List_head_x21___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__2(x_1); +x_2 = l_List_head_x21___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__2(x_1); lean_dec(x_1); return x_2; } } -lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__3___boxed(lean_object* x_1, lean_object* x_2) { +lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__3___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__3(x_1, x_2); +x_3 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__3(x_1, x_2); lean_dec(x_2); lean_dec(x_1); return x_3; } } -lean_object* l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__4(x_1, x_2, x_3); +x_4 = l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__4(x_1, x_2, x_3); lean_dec(x_1); return x_4; } } -lean_object* l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__6___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__6___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__6(x_1, x_2, x_3); +x_4 = l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__6(x_1, x_2, x_3); lean_dec(x_1); return x_4; } } -lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__8___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__8___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__8(x_1, x_2, x_3); +x_4 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__8(x_1, x_2, x_3); lean_dec(x_2); return x_4; } } -lean_object* l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__9___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__9___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__9(x_1, x_2, x_3); +x_4 = l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__9(x_1, x_2, x_3); lean_dec(x_1); return x_4; } } -lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__10___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__10___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; -x_5 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__10(x_1, x_2, x_3, x_4); +x_5 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__10(x_1, x_2, x_3, x_4); lean_dec(x_1); return x_5; } } -lean_object* l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__11___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__11___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__11(x_1, x_2, x_3); +x_4 = l_List_filterAux___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__11(x_1, x_2, x_3); lean_dec(x_1); return x_4; } } -lean_object* l___private_Init_Lean_Elab_Quotation_9__compileStxMatch(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Init_Lean_Elab_Quotation_10__compileStxMatch(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; -x_6 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main(x_1, x_2, x_3, x_4, x_5); +x_6 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main(x_1, x_2, x_3, x_4, x_5); return x_6; } } -lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_10__getPatternVarsAux___main___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_11__getPatternVarsAux___main___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_1) == 0) @@ -11440,7 +11787,7 @@ lean_object* x_7; lean_object* x_8; lean_object* x_9; x_7 = lean_ctor_get(x_1, 0); x_8 = lean_ctor_get(x_1, 1); lean_inc(x_2); -x_9 = l___private_Init_Lean_Elab_Quotation_10__getPatternVarsAux___main(x_7, x_2, x_3); +x_9 = l___private_Init_Lean_Elab_Quotation_11__getPatternVarsAux___main(x_7, x_2, x_3); lean_dec(x_7); if (lean_obj_tag(x_9) == 0) { @@ -11450,7 +11797,7 @@ lean_inc(x_10); x_11 = lean_ctor_get(x_9, 1); lean_inc(x_11); lean_dec(x_9); -x_12 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_10__getPatternVarsAux___main___spec__1(x_8, x_2, x_11); +x_12 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_11__getPatternVarsAux___main___spec__1(x_8, x_2, x_11); if (lean_obj_tag(x_12) == 0) { uint8_t x_13; @@ -11540,7 +11887,7 @@ lean_inc(x_27); lean_inc(x_26); lean_dec(x_1); lean_inc(x_2); -x_28 = l___private_Init_Lean_Elab_Quotation_10__getPatternVarsAux___main(x_26, x_2, x_3); +x_28 = l___private_Init_Lean_Elab_Quotation_11__getPatternVarsAux___main(x_26, x_2, x_3); lean_dec(x_26); if (lean_obj_tag(x_28) == 0) { @@ -11550,7 +11897,7 @@ lean_inc(x_29); x_30 = lean_ctor_get(x_28, 1); lean_inc(x_30); lean_dec(x_28); -x_31 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_10__getPatternVarsAux___main___spec__1(x_27, x_2, x_30); +x_31 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_11__getPatternVarsAux___main___spec__1(x_27, x_2, x_30); if (lean_obj_tag(x_31) == 0) { lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; @@ -11634,7 +11981,7 @@ return x_44; } } } -lean_object* l___private_Init_Lean_Elab_Quotation_10__getPatternVarsAux___main(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Init_Lean_Elab_Quotation_11__getPatternVarsAux___main(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_1) == 1) @@ -11646,7 +11993,7 @@ if (x_5 == 0) { lean_object* x_6; lean_object* x_7; x_6 = l_Array_toList___rarg(x_4); -x_7 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_10__getPatternVarsAux___main___spec__1(x_6, x_2, x_3); +x_7 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_11__getPatternVarsAux___main___spec__1(x_6, x_2, x_3); if (lean_obj_tag(x_7) == 0) { uint8_t x_8; @@ -11744,7 +12091,7 @@ x_32 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_32, 0, x_31); x_33 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_33, 0, x_32); -x_34 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__3___closed__3; +x_34 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___lambda__3___closed__3; x_35 = lean_alloc_ctor(8, 2, 0); lean_ctor_set(x_35, 0, x_34); lean_ctor_set(x_35, 1, x_33); @@ -11916,33 +12263,33 @@ return x_76; } } } -lean_object* l___private_Init_Lean_Elab_Quotation_10__getPatternVarsAux___main___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Init_Lean_Elab_Quotation_11__getPatternVarsAux___main___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Elab_Quotation_10__getPatternVarsAux___main(x_1, x_2, x_3); +x_4 = l___private_Init_Lean_Elab_Quotation_11__getPatternVarsAux___main(x_1, x_2, x_3); lean_dec(x_1); return x_4; } } -lean_object* l___private_Init_Lean_Elab_Quotation_10__getPatternVarsAux(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Init_Lean_Elab_Quotation_11__getPatternVarsAux(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Elab_Quotation_10__getPatternVarsAux___main(x_1, x_2, x_3); +x_4 = l___private_Init_Lean_Elab_Quotation_11__getPatternVarsAux___main(x_1, x_2, x_3); return x_4; } } -lean_object* l___private_Init_Lean_Elab_Quotation_10__getPatternVarsAux___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Init_Lean_Elab_Quotation_11__getPatternVarsAux___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Elab_Quotation_10__getPatternVarsAux(x_1, x_2, x_3); +x_4 = l___private_Init_Lean_Elab_Quotation_11__getPatternVarsAux(x_1, x_2, x_3); lean_dec(x_1); return x_4; } } -lean_object* l___private_Init_Lean_Elab_Quotation_11__getPatternVars(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Init_Lean_Elab_Quotation_12__getPatternVars(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -11982,13 +12329,13 @@ return x_12; else { lean_object* x_13; -x_13 = l___private_Init_Lean_Elab_Quotation_10__getPatternVarsAux___main(x_1, x_2, x_3); +x_13 = l___private_Init_Lean_Elab_Quotation_11__getPatternVarsAux___main(x_1, x_2, x_3); lean_dec(x_1); return x_13; } } } -lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_1) == 0) @@ -12011,7 +12358,7 @@ lean_object* x_7; lean_object* x_8; lean_object* x_9; x_7 = lean_ctor_get(x_1, 0); x_8 = lean_ctor_get(x_1, 1); lean_inc(x_2); -x_9 = l___private_Init_Lean_Elab_Quotation_11__getPatternVars(x_7, x_2, x_3); +x_9 = l___private_Init_Lean_Elab_Quotation_12__getPatternVars(x_7, x_2, x_3); if (lean_obj_tag(x_9) == 0) { lean_object* x_10; lean_object* x_11; lean_object* x_12; @@ -12020,7 +12367,7 @@ lean_inc(x_10); x_11 = lean_ctor_get(x_9, 1); lean_inc(x_11); lean_dec(x_9); -x_12 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___spec__1(x_8, x_2, x_11); +x_12 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___spec__1(x_8, x_2, x_11); if (lean_obj_tag(x_12) == 0) { uint8_t x_13; @@ -12110,7 +12457,7 @@ lean_inc(x_27); lean_inc(x_26); lean_dec(x_1); lean_inc(x_2); -x_28 = l___private_Init_Lean_Elab_Quotation_11__getPatternVars(x_26, x_2, x_3); +x_28 = l___private_Init_Lean_Elab_Quotation_12__getPatternVars(x_26, x_2, x_3); if (lean_obj_tag(x_28) == 0) { lean_object* x_29; lean_object* x_30; lean_object* x_31; @@ -12119,7 +12466,7 @@ lean_inc(x_29); x_30 = lean_ctor_get(x_28, 1); lean_inc(x_30); lean_dec(x_28); -x_31 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___spec__1(x_27, x_2, x_30); +x_31 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___spec__1(x_27, x_2, x_30); if (lean_obj_tag(x_31) == 0) { lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; @@ -12203,7 +12550,7 @@ return x_44; } } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__1() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__1() { _start: { lean_object* x_1; @@ -12211,22 +12558,22 @@ x_1 = lean_mk_string("rhs"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__2() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__1; +x_1 = l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__1; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__3() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__1; +x_1 = l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__2; +x_3 = l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__2; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -12234,91 +12581,91 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__4() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__1; +x_2 = l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__5() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__56; +x_1 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__53; x_2 = l___private_Init_Lean_Elab_Term_8__expandCDot___closed__4; x_3 = lean_array_push(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__6() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__5; -x_2 = l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__64; +x_1 = l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__5; +x_2 = l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__61; x_3 = lean_array_push(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__7() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Term_paren___elambda__1___closed__1; -x_2 = l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__6; +x_2 = l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__6; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__8() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___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___private_Init_Lean_Elab_Quotation_8__explodeHeadPat___lambda__1___closed__3; +x_2 = l___private_Init_Lean_Elab_Quotation_9__explodeHeadPat___lambda__1___closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__9() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_nullKind___closed__2; -x_2 = l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__8; +x_2 = l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__8; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__10() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Elab_Term_expandCDot_x3f___closed__2; -x_2 = l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__9; +x_2 = l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__9; x_3 = lean_array_push(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__11() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__10; +x_1 = l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__10; x_2 = l_Lean_Elab_Term_expandCDot_x3f___closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__12() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__12() { _start: { lean_object* x_1; lean_object* x_2; @@ -12327,7 +12674,7 @@ x_2 = l_Lean_mkAtom(x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__13() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__13() { _start: { lean_object* x_1; lean_object* x_2; @@ -12336,17 +12683,17 @@ x_2 = l_Lean_mkAtom(x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__14() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__14() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_PersistentHashMap_mkCollisionNode___rarg___closed__1; -x_2 = l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__12; +x_2 = l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__12; x_3 = lean_array_push(x_1, x_2); return x_3; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__15() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__15() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -12358,7 +12705,7 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -lean_object* l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { if (lean_obj_tag(x_2) == 0) @@ -12385,7 +12732,7 @@ x_12 = lean_ctor_get(x_9, 0); x_13 = lean_ctor_get(x_9, 1); lean_inc(x_4); lean_inc(x_12); -x_14 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___spec__1(x_12, x_4, x_5); +x_14 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___spec__1(x_12, x_4, x_5); if (lean_obj_tag(x_14) == 0) { lean_object* x_15; lean_object* x_16; lean_object* x_17; @@ -12405,10 +12752,10 @@ x_20 = lean_ctor_get(x_18, 1); lean_inc(x_20); lean_dec(x_18); x_21 = lean_box(0); -x_22 = l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__4; +x_22 = l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__4; x_23 = lean_name_mk_numeral(x_22, x_19); x_24 = lean_box(0); -x_25 = l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__3; +x_25 = l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__3; x_26 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_26, 0, x_21); lean_ctor_set(x_26, 1, x_25); @@ -12423,7 +12770,7 @@ x_32 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_32, 0, x_31); lean_ctor_set(x_32, 1, x_30); x_33 = lean_array_push(x_27, x_32); -x_34 = l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__7; +x_34 = l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__7; x_35 = lean_array_push(x_33, x_34); x_36 = l_Lean_Parser_Term_app___elambda__1___closed__2; x_37 = lean_alloc_ctor(1, 2, 0); @@ -12470,7 +12817,7 @@ lean_ctor_set(x_52, 7, x_49); lean_ctor_set(x_52, 8, x_50); lean_ctor_set(x_52, 9, x_39); lean_ctor_set_uint8(x_52, sizeof(void*)*10, x_51); -x_53 = l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main(x_1, x_11, x_2, x_52, x_20); +x_53 = l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main(x_1, x_11, x_2, x_52, x_20); if (lean_obj_tag(x_53) == 0) { lean_object* x_54; lean_object* x_55; lean_object* x_56; uint8_t x_57; @@ -12495,9 +12842,9 @@ lean_ctor_set(x_60, 3, x_24); x_61 = lean_array_push(x_27, x_60); x_62 = lean_array_push(x_61, x_29); x_63 = lean_array_push(x_62, x_29); -x_64 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__4; +x_64 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__4; x_65 = lean_array_push(x_63, x_64); -x_66 = l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__11; +x_66 = l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__11; x_67 = lean_array_push(x_66, x_13); x_68 = l_Lean_Parser_Term_fun___elambda__1___closed__2; x_69 = lean_alloc_ctor(1, 2, 0); @@ -12508,9 +12855,9 @@ x_71 = l_Lean_Parser_Term_letIdDecl___elambda__1___closed__2; x_72 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_72, 0, x_71); lean_ctor_set(x_72, 1, x_70); -x_73 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__2; +x_73 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__2; x_74 = lean_array_push(x_73, x_72); -x_75 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__10; +x_75 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__10; x_76 = lean_array_push(x_74, x_75); x_77 = lean_array_push(x_76, x_54); x_78 = l_Lean_Parser_Term_let___elambda__1___closed__2; @@ -12537,9 +12884,9 @@ lean_ctor_set(x_83, 3, x_24); x_84 = lean_array_push(x_27, x_83); x_85 = lean_array_push(x_84, x_29); x_86 = lean_array_push(x_85, x_29); -x_87 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__4; +x_87 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__4; x_88 = lean_array_push(x_86, x_87); -x_89 = l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__11; +x_89 = l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__11; x_90 = lean_array_push(x_89, x_13); x_91 = l_Lean_Parser_Term_fun___elambda__1___closed__2; x_92 = lean_alloc_ctor(1, 2, 0); @@ -12550,9 +12897,9 @@ x_94 = l_Lean_Parser_Term_letIdDecl___elambda__1___closed__2; x_95 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_95, 0, x_94); lean_ctor_set(x_95, 1, x_93); -x_96 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__2; +x_96 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__2; x_97 = lean_array_push(x_96, x_95); -x_98 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__10; +x_98 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__10; x_99 = lean_array_push(x_97, x_98); x_100 = lean_array_push(x_99, x_54); x_101 = l_Lean_Parser_Term_let___elambda__1___closed__2; @@ -12646,7 +12993,7 @@ lean_ctor_set(x_127, 7, x_124); lean_ctor_set(x_127, 8, x_125); lean_ctor_set(x_127, 9, x_113); lean_ctor_set_uint8(x_127, sizeof(void*)*10, x_126); -x_128 = l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main(x_1, x_11, x_2, x_127, x_116); +x_128 = l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main(x_1, x_11, x_2, x_127, x_116); if (lean_obj_tag(x_128) == 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; @@ -12678,9 +13025,9 @@ lean_ctor_set(x_136, 3, x_24); x_137 = lean_array_push(x_27, x_136); x_138 = lean_array_push(x_137, x_29); x_139 = lean_array_push(x_138, x_29); -x_140 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__4; +x_140 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__4; x_141 = lean_array_push(x_139, x_140); -x_142 = l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__11; +x_142 = l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__11; x_143 = lean_array_push(x_142, x_13); x_144 = l_Lean_Parser_Term_fun___elambda__1___closed__2; x_145 = lean_alloc_ctor(1, 2, 0); @@ -12691,9 +13038,9 @@ x_147 = l_Lean_Parser_Term_letIdDecl___elambda__1___closed__2; x_148 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_148, 0, x_147); lean_ctor_set(x_148, 1, x_146); -x_149 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__2; +x_149 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__2; x_150 = lean_array_push(x_149, x_148); -x_151 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__10; +x_151 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__10; x_152 = lean_array_push(x_150, x_151); x_153 = lean_array_push(x_152, x_129); x_154 = l_Lean_Parser_Term_let___elambda__1___closed__2; @@ -12758,9 +13105,9 @@ x_167 = l_Lean_nullKind___closed__2; x_168 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_168, 0, x_167); lean_ctor_set(x_168, 1, x_163); -x_169 = l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__14; +x_169 = l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__14; x_170 = lean_array_push(x_169, x_168); -x_171 = l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__13; +x_171 = l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__13; x_172 = lean_array_push(x_170, x_171); x_173 = lean_array_push(x_172, x_13); x_174 = l_Lean_Parser_Term_fun___elambda__1___closed__2; @@ -12774,10 +13121,10 @@ x_178 = lean_ctor_get(x_176, 1); lean_inc(x_178); lean_dec(x_176); x_179 = lean_box(0); -x_180 = l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__4; +x_180 = l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__4; x_181 = lean_name_mk_numeral(x_180, x_177); x_182 = lean_box(0); -x_183 = l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__3; +x_183 = l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__3; x_184 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_184, 0, x_179); lean_ctor_set(x_184, 1, x_183); @@ -12785,7 +13132,7 @@ lean_ctor_set(x_184, 2, x_181); lean_ctor_set(x_184, 3, x_182); x_185 = l_Array_empty___closed__1; x_186 = lean_array_push(x_185, x_184); -x_187 = l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__15; +x_187 = l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__15; x_188 = lean_array_push(x_186, x_187); x_189 = l_Lean_Parser_Term_id___elambda__1___closed__2; x_190 = lean_alloc_ctor(1, 2, 0); @@ -12833,7 +13180,7 @@ lean_ctor_set(x_205, 7, x_202); lean_ctor_set(x_205, 8, x_203); lean_ctor_set(x_205, 9, x_192); lean_ctor_set_uint8(x_205, sizeof(void*)*10, x_204); -x_206 = l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main(x_1, x_11, x_17, x_205, x_178); +x_206 = l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main(x_1, x_11, x_17, x_205, x_178); if (lean_obj_tag(x_206) == 0) { lean_object* x_207; lean_object* x_208; lean_object* x_209; uint8_t x_210; @@ -12858,16 +13205,16 @@ lean_ctor_set(x_213, 3, x_182); x_214 = lean_array_push(x_185, x_213); x_215 = lean_array_push(x_214, x_187); x_216 = lean_array_push(x_215, x_187); -x_217 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__4; +x_217 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__4; x_218 = lean_array_push(x_216, x_217); x_219 = lean_array_push(x_218, x_175); x_220 = l_Lean_Parser_Term_letIdDecl___elambda__1___closed__2; x_221 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_221, 0, x_220); lean_ctor_set(x_221, 1, x_219); -x_222 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__2; +x_222 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__2; x_223 = lean_array_push(x_222, x_221); -x_224 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__10; +x_224 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__10; x_225 = lean_array_push(x_223, x_224); x_226 = lean_array_push(x_225, x_207); x_227 = l_Lean_Parser_Term_let___elambda__1___closed__2; @@ -12894,16 +13241,16 @@ lean_ctor_set(x_232, 3, x_182); x_233 = lean_array_push(x_185, x_232); x_234 = lean_array_push(x_233, x_187); x_235 = lean_array_push(x_234, x_187); -x_236 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__4; +x_236 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__4; x_237 = lean_array_push(x_235, x_236); x_238 = lean_array_push(x_237, x_175); x_239 = l_Lean_Parser_Term_letIdDecl___elambda__1___closed__2; x_240 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_240, 0, x_239); lean_ctor_set(x_240, 1, x_238); -x_241 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__2; +x_241 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__2; x_242 = lean_array_push(x_241, x_240); -x_243 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__10; +x_243 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__10; x_244 = lean_array_push(x_242, x_243); x_245 = lean_array_push(x_244, x_207); x_246 = l_Lean_Parser_Term_let___elambda__1___closed__2; @@ -12997,7 +13344,7 @@ lean_ctor_set(x_272, 7, x_269); lean_ctor_set(x_272, 8, x_270); lean_ctor_set(x_272, 9, x_258); lean_ctor_set_uint8(x_272, sizeof(void*)*10, x_271); -x_273 = l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main(x_1, x_11, x_17, x_272, x_261); +x_273 = l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main(x_1, x_11, x_17, x_272, x_261); if (lean_obj_tag(x_273) == 0) { lean_object* x_274; lean_object* x_275; lean_object* x_276; lean_object* x_277; lean_object* x_278; lean_object* x_279; lean_object* x_280; lean_object* x_281; lean_object* x_282; lean_object* x_283; lean_object* x_284; lean_object* x_285; lean_object* x_286; lean_object* x_287; lean_object* x_288; lean_object* x_289; lean_object* x_290; lean_object* x_291; lean_object* x_292; lean_object* x_293; lean_object* x_294; lean_object* x_295; lean_object* x_296; lean_object* x_297; @@ -13029,16 +13376,16 @@ lean_ctor_set(x_281, 3, x_182); x_282 = lean_array_push(x_185, x_281); x_283 = lean_array_push(x_282, x_187); x_284 = lean_array_push(x_283, x_187); -x_285 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__4; +x_285 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__4; x_286 = lean_array_push(x_284, x_285); x_287 = lean_array_push(x_286, x_175); x_288 = l_Lean_Parser_Term_letIdDecl___elambda__1___closed__2; x_289 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_289, 0, x_288); lean_ctor_set(x_289, 1, x_287); -x_290 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__2; +x_290 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__2; x_291 = lean_array_push(x_290, x_289); -x_292 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__10; +x_292 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__10; x_293 = lean_array_push(x_291, x_292); x_294 = lean_array_push(x_293, x_274); x_295 = l_Lean_Parser_Term_let___elambda__1___closed__2; @@ -13090,9 +13437,9 @@ x_302 = l_Lean_nullKind___closed__2; x_303 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_303, 0, x_302); lean_ctor_set(x_303, 1, x_163); -x_304 = l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__14; +x_304 = l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__14; x_305 = lean_array_push(x_304, x_303); -x_306 = l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__13; +x_306 = l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__13; x_307 = lean_array_push(x_305, x_306); x_308 = lean_array_push(x_307, x_13); x_309 = l_Lean_Parser_Term_fun___elambda__1___closed__2; @@ -13106,10 +13453,10 @@ x_313 = lean_ctor_get(x_311, 1); lean_inc(x_313); lean_dec(x_311); x_314 = lean_box(0); -x_315 = l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__4; +x_315 = l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__4; x_316 = lean_name_mk_numeral(x_315, x_312); x_317 = lean_box(0); -x_318 = l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__3; +x_318 = l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__3; x_319 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_319, 0, x_314); lean_ctor_set(x_319, 1, x_318); @@ -13117,7 +13464,7 @@ lean_ctor_set(x_319, 2, x_316); lean_ctor_set(x_319, 3, x_317); x_320 = l_Array_empty___closed__1; x_321 = lean_array_push(x_320, x_319); -x_322 = l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__15; +x_322 = l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__15; x_323 = lean_array_push(x_321, x_322); x_324 = l_Lean_Parser_Term_id___elambda__1___closed__2; x_325 = lean_alloc_ctor(1, 2, 0); @@ -13195,7 +13542,7 @@ lean_ctor_set(x_347, 7, x_344); lean_ctor_set(x_347, 8, x_345); lean_ctor_set(x_347, 9, x_332); lean_ctor_set_uint8(x_347, sizeof(void*)*10, x_346); -x_348 = l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main(x_1, x_11, x_326, x_347, x_336); +x_348 = l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main(x_1, x_11, x_326, x_347, x_336); if (lean_obj_tag(x_348) == 0) { lean_object* x_349; lean_object* x_350; lean_object* x_351; lean_object* x_352; lean_object* x_353; lean_object* x_354; lean_object* x_355; lean_object* x_356; lean_object* x_357; lean_object* x_358; lean_object* x_359; lean_object* x_360; 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; @@ -13227,16 +13574,16 @@ lean_ctor_set(x_356, 3, x_317); x_357 = lean_array_push(x_320, x_356); x_358 = lean_array_push(x_357, x_322); x_359 = lean_array_push(x_358, x_322); -x_360 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__4; +x_360 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__4; x_361 = lean_array_push(x_359, x_360); x_362 = lean_array_push(x_361, x_310); x_363 = l_Lean_Parser_Term_letIdDecl___elambda__1___closed__2; x_364 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_364, 0, x_363); lean_ctor_set(x_364, 1, x_362); -x_365 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__2; +x_365 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__2; x_366 = lean_array_push(x_365, x_364); -x_367 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__10; +x_367 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__10; x_368 = lean_array_push(x_366, x_367); x_369 = lean_array_push(x_368, x_349); x_370 = l_Lean_Parser_Term_let___elambda__1___closed__2; @@ -13323,7 +13670,7 @@ lean_inc(x_382); lean_dec(x_9); lean_inc(x_4); lean_inc(x_382); -x_384 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___spec__1(x_382, x_4, x_5); +x_384 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___spec__1(x_382, x_4, x_5); if (lean_obj_tag(x_384) == 0) { lean_object* x_385; lean_object* x_386; lean_object* x_387; @@ -13343,10 +13690,10 @@ x_390 = lean_ctor_get(x_388, 1); lean_inc(x_390); lean_dec(x_388); x_391 = lean_box(0); -x_392 = l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__4; +x_392 = l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__4; x_393 = lean_name_mk_numeral(x_392, x_389); x_394 = lean_box(0); -x_395 = l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__3; +x_395 = l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__3; x_396 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_396, 0, x_391); lean_ctor_set(x_396, 1, x_395); @@ -13361,7 +13708,7 @@ x_402 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_402, 0, x_401); lean_ctor_set(x_402, 1, x_400); x_403 = lean_array_push(x_397, x_402); -x_404 = l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__7; +x_404 = l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__7; x_405 = lean_array_push(x_403, x_404); x_406 = l_Lean_Parser_Term_app___elambda__1___closed__2; x_407 = lean_alloc_ctor(1, 2, 0); @@ -13440,7 +13787,7 @@ lean_ctor_set(x_429, 7, x_426); lean_ctor_set(x_429, 8, x_427); lean_ctor_set(x_429, 9, x_414); lean_ctor_set_uint8(x_429, sizeof(void*)*10, x_428); -x_430 = l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main(x_1, x_381, x_2, x_429, x_418); +x_430 = l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main(x_1, x_381, x_2, x_429, x_418); if (lean_obj_tag(x_430) == 0) { lean_object* x_431; lean_object* x_432; lean_object* x_433; lean_object* x_434; lean_object* x_435; lean_object* x_436; lean_object* x_437; lean_object* x_438; lean_object* x_439; lean_object* x_440; lean_object* x_441; lean_object* x_442; 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; @@ -13472,9 +13819,9 @@ lean_ctor_set(x_438, 3, x_394); x_439 = lean_array_push(x_397, x_438); x_440 = lean_array_push(x_439, x_399); x_441 = lean_array_push(x_440, x_399); -x_442 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__4; +x_442 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__4; x_443 = lean_array_push(x_441, x_442); -x_444 = l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__11; +x_444 = l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__11; x_445 = lean_array_push(x_444, x_383); x_446 = l_Lean_Parser_Term_fun___elambda__1___closed__2; x_447 = lean_alloc_ctor(1, 2, 0); @@ -13485,9 +13832,9 @@ x_449 = l_Lean_Parser_Term_letIdDecl___elambda__1___closed__2; x_450 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_450, 0, x_449); lean_ctor_set(x_450, 1, x_448); -x_451 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__2; +x_451 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__2; x_452 = lean_array_push(x_451, x_450); -x_453 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__10; +x_453 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__10; x_454 = lean_array_push(x_452, x_453); x_455 = lean_array_push(x_454, x_431); x_456 = l_Lean_Parser_Term_let___elambda__1___closed__2; @@ -13551,9 +13898,9 @@ x_467 = l_Lean_nullKind___closed__2; x_468 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_468, 0, x_467); lean_ctor_set(x_468, 1, x_465); -x_469 = l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__14; +x_469 = l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__14; x_470 = lean_array_push(x_469, x_468); -x_471 = l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__13; +x_471 = l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__13; x_472 = lean_array_push(x_470, x_471); x_473 = lean_array_push(x_472, x_383); x_474 = l_Lean_Parser_Term_fun___elambda__1___closed__2; @@ -13567,10 +13914,10 @@ x_478 = lean_ctor_get(x_476, 1); lean_inc(x_478); lean_dec(x_476); x_479 = lean_box(0); -x_480 = l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__4; +x_480 = l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__4; x_481 = lean_name_mk_numeral(x_480, x_477); x_482 = lean_box(0); -x_483 = l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__3; +x_483 = l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__3; x_484 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_484, 0, x_479); lean_ctor_set(x_484, 1, x_483); @@ -13578,7 +13925,7 @@ lean_ctor_set(x_484, 2, x_481); lean_ctor_set(x_484, 3, x_482); x_485 = l_Array_empty___closed__1; x_486 = lean_array_push(x_485, x_484); -x_487 = l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__15; +x_487 = l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__15; x_488 = lean_array_push(x_486, x_487); x_489 = l_Lean_Parser_Term_id___elambda__1___closed__2; x_490 = lean_alloc_ctor(1, 2, 0); @@ -13662,7 +14009,7 @@ lean_ctor_set(x_513, 7, x_510); lean_ctor_set(x_513, 8, x_511); lean_ctor_set(x_513, 9, x_498); lean_ctor_set_uint8(x_513, sizeof(void*)*10, x_512); -x_514 = l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main(x_1, x_381, x_492, x_513, x_502); +x_514 = l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main(x_1, x_381, x_492, x_513, x_502); if (lean_obj_tag(x_514) == 0) { lean_object* x_515; lean_object* x_516; lean_object* x_517; lean_object* x_518; lean_object* x_519; lean_object* x_520; lean_object* x_521; lean_object* x_522; lean_object* x_523; lean_object* x_524; lean_object* x_525; lean_object* x_526; lean_object* x_527; lean_object* x_528; lean_object* x_529; lean_object* x_530; lean_object* x_531; lean_object* x_532; lean_object* x_533; lean_object* x_534; lean_object* x_535; lean_object* x_536; lean_object* x_537; lean_object* x_538; @@ -13694,16 +14041,16 @@ lean_ctor_set(x_522, 3, x_482); x_523 = lean_array_push(x_485, x_522); x_524 = lean_array_push(x_523, x_487); x_525 = lean_array_push(x_524, x_487); -x_526 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__4; +x_526 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__4; x_527 = lean_array_push(x_525, x_526); x_528 = lean_array_push(x_527, x_475); x_529 = l_Lean_Parser_Term_letIdDecl___elambda__1___closed__2; x_530 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_530, 0, x_529); lean_ctor_set(x_530, 1, x_528); -x_531 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__2; +x_531 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__2; x_532 = lean_array_push(x_531, x_530); -x_533 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__10; +x_533 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__10; x_534 = lean_array_push(x_532, x_533); x_535 = lean_array_push(x_534, x_515); x_536 = l_Lean_Parser_Term_let___elambda__1___closed__2; @@ -13802,7 +14149,7 @@ if (lean_is_exclusive(x_547)) { } lean_inc(x_4); lean_inc(x_549); -x_552 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___spec__1(x_549, x_4, x_5); +x_552 = l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___spec__1(x_549, x_4, x_5); if (lean_obj_tag(x_552) == 0) { lean_object* x_553; lean_object* x_554; lean_object* x_555; @@ -13822,10 +14169,10 @@ x_558 = lean_ctor_get(x_556, 1); lean_inc(x_558); lean_dec(x_556); x_559 = lean_box(0); -x_560 = l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__4; +x_560 = l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__4; x_561 = lean_name_mk_numeral(x_560, x_557); x_562 = lean_box(0); -x_563 = l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__3; +x_563 = l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__3; x_564 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_564, 0, x_559); lean_ctor_set(x_564, 1, x_563); @@ -13840,7 +14187,7 @@ x_570 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_570, 0, x_569); lean_ctor_set(x_570, 1, x_568); x_571 = lean_array_push(x_565, x_570); -x_572 = l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__7; +x_572 = l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__7; x_573 = lean_array_push(x_571, x_572); x_574 = l_Lean_Parser_Term_app___elambda__1___closed__2; x_575 = lean_alloc_ctor(1, 2, 0); @@ -13924,7 +14271,7 @@ lean_ctor_set(x_598, 7, x_595); lean_ctor_set(x_598, 8, x_596); lean_ctor_set(x_598, 9, x_583); lean_ctor_set_uint8(x_598, sizeof(void*)*10, x_597); -x_599 = l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main(x_1, x_548, x_577, x_598, x_587); +x_599 = l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main(x_1, x_548, x_577, x_598, x_587); if (lean_obj_tag(x_599) == 0) { lean_object* x_600; lean_object* x_601; lean_object* x_602; lean_object* x_603; lean_object* x_604; lean_object* x_605; lean_object* x_606; lean_object* x_607; lean_object* x_608; lean_object* x_609; lean_object* x_610; lean_object* x_611; lean_object* x_612; lean_object* x_613; lean_object* x_614; lean_object* x_615; lean_object* x_616; lean_object* x_617; lean_object* x_618; lean_object* x_619; lean_object* x_620; lean_object* x_621; lean_object* x_622; lean_object* x_623; lean_object* x_624; lean_object* x_625; lean_object* x_626; lean_object* x_627; @@ -13956,9 +14303,9 @@ lean_ctor_set(x_607, 3, x_562); x_608 = lean_array_push(x_565, x_607); x_609 = lean_array_push(x_608, x_567); x_610 = lean_array_push(x_609, x_567); -x_611 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__4; +x_611 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__4; x_612 = lean_array_push(x_610, x_611); -x_613 = l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__11; +x_613 = l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__11; x_614 = lean_array_push(x_613, x_550); x_615 = l_Lean_Parser_Term_fun___elambda__1___closed__2; x_616 = lean_alloc_ctor(1, 2, 0); @@ -13969,9 +14316,9 @@ x_618 = l_Lean_Parser_Term_letIdDecl___elambda__1___closed__2; x_619 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_619, 0, x_618); lean_ctor_set(x_619, 1, x_617); -x_620 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__2; +x_620 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__2; x_621 = lean_array_push(x_620, x_619); -x_622 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__10; +x_622 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__10; x_623 = lean_array_push(x_621, x_622); x_624 = lean_array_push(x_623, x_600); x_625 = l_Lean_Parser_Term_let___elambda__1___closed__2; @@ -14034,9 +14381,9 @@ x_636 = l_Lean_nullKind___closed__2; x_637 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_637, 0, x_636); lean_ctor_set(x_637, 1, x_634); -x_638 = l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__14; +x_638 = l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__14; x_639 = lean_array_push(x_638, x_637); -x_640 = l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__13; +x_640 = l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__13; x_641 = lean_array_push(x_639, x_640); x_642 = lean_array_push(x_641, x_550); x_643 = l_Lean_Parser_Term_fun___elambda__1___closed__2; @@ -14050,10 +14397,10 @@ x_647 = lean_ctor_get(x_645, 1); lean_inc(x_647); lean_dec(x_645); x_648 = lean_box(0); -x_649 = l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__4; +x_649 = l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__4; x_650 = lean_name_mk_numeral(x_649, x_646); x_651 = lean_box(0); -x_652 = l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__3; +x_652 = l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__3; x_653 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_653, 0, x_648); lean_ctor_set(x_653, 1, x_652); @@ -14061,7 +14408,7 @@ lean_ctor_set(x_653, 2, x_650); lean_ctor_set(x_653, 3, x_651); x_654 = l_Array_empty___closed__1; x_655 = lean_array_push(x_654, x_653); -x_656 = l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__15; +x_656 = l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__15; x_657 = lean_array_push(x_655, x_656); x_658 = l_Lean_Parser_Term_id___elambda__1___closed__2; x_659 = lean_alloc_ctor(1, 2, 0); @@ -14149,7 +14496,7 @@ lean_ctor_set(x_682, 7, x_679); lean_ctor_set(x_682, 8, x_680); lean_ctor_set(x_682, 9, x_667); lean_ctor_set_uint8(x_682, sizeof(void*)*10, x_681); -x_683 = l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main(x_1, x_548, x_661, x_682, x_671); +x_683 = l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main(x_1, x_548, x_661, x_682, x_671); if (lean_obj_tag(x_683) == 0) { lean_object* x_684; lean_object* x_685; lean_object* x_686; lean_object* x_687; lean_object* x_688; lean_object* x_689; lean_object* x_690; lean_object* x_691; lean_object* x_692; lean_object* x_693; lean_object* x_694; lean_object* x_695; lean_object* x_696; lean_object* x_697; lean_object* x_698; lean_object* x_699; lean_object* x_700; lean_object* x_701; lean_object* x_702; lean_object* x_703; lean_object* x_704; lean_object* x_705; lean_object* x_706; lean_object* x_707; @@ -14181,16 +14528,16 @@ lean_ctor_set(x_691, 3, x_651); x_692 = lean_array_push(x_654, x_691); x_693 = lean_array_push(x_692, x_656); x_694 = lean_array_push(x_693, x_656); -x_695 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__4; +x_695 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__4; x_696 = lean_array_push(x_694, x_695); x_697 = lean_array_push(x_696, x_644); x_698 = l_Lean_Parser_Term_letIdDecl___elambda__1___closed__2; x_699 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_699, 0, x_698); lean_ctor_set(x_699, 1, x_697); -x_700 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__2; +x_700 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__2; x_701 = lean_array_push(x_700, x_699); -x_702 = l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__10; +x_702 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__10; x_703 = lean_array_push(x_701, x_702); x_704 = lean_array_push(x_703, x_684); x_705 = l_Lean_Parser_Term_let___elambda__1___closed__2; @@ -14269,11 +14616,11 @@ return x_715; } } } -lean_object* l___private_Init_Lean_Elab_Quotation_12__letBindRhss(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Init_Lean_Elab_Quotation_13__letBindRhss(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; -x_6 = l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main(x_1, x_2, x_3, x_4, x_5); +x_6 = l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main(x_1, x_2, x_3, x_4, x_5); return x_6; } } @@ -14401,7 +14748,7 @@ else { lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; x_39 = l_Lean_Syntax_getArg(x_27, x_15); -x_40 = l___private_Init_Lean_Elab_Quotation_4__elimAntiquotChoices___main(x_39); +x_40 = l___private_Init_Lean_Elab_Quotation_5__elimAntiquotChoices___main(x_39); x_41 = l_Lean_Syntax_setArg(x_27, x_15, x_40); x_42 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_42, 0, x_41); @@ -14450,7 +14797,7 @@ lean_ctor_set(x_14, 0, x_5); lean_ctor_set(x_14, 1, x_13); x_15 = l_Array_toList___rarg(x_11); lean_dec(x_11); -x_16 = l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main(x_1, x_14, x_15, x_2, x_12); +x_16 = l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main(x_1, x_14, x_15, x_2, x_12); return x_16; } else @@ -14534,7 +14881,7 @@ x_5 = l_Lean_Elab_Term_addBuiltinTermElab(x_2, x_3, x_4, x_1); return x_5; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_13__exprPlaceholder___closed__1() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_14__exprPlaceholder___closed__1() { _start: { lean_object* x_1; lean_object* x_2; @@ -14543,15 +14890,15 @@ x_2 = l_Lean_mkMVar(x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_13__exprPlaceholder() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_14__exprPlaceholder() { _start: { lean_object* x_1; -x_1 = l___private_Init_Lean_Elab_Quotation_13__exprPlaceholder___closed__1; +x_1 = l___private_Init_Lean_Elab_Quotation_14__exprPlaceholder___closed__1; return x_1; } } -lean_object* _init_l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__1___closed__1() { +lean_object* _init_l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__toPreterm___main___spec__1___closed__1() { _start: { lean_object* x_1; @@ -14559,7 +14906,7 @@ x_1 = lean_mk_string("fieldNotation"); return x_1; } } -lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__toPreterm___main___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_3) == 0) @@ -14575,7 +14922,7 @@ lean_inc(x_4); x_5 = lean_ctor_get(x_3, 1); lean_inc(x_5); lean_dec(x_3); -x_6 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__1___closed__1; +x_6 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__toPreterm___main___spec__1___closed__1; lean_inc(x_1); x_7 = lean_name_mk_string(x_1, x_6); x_8 = lean_box(0); @@ -14589,7 +14936,7 @@ goto _start; } } } -lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__toPreterm___main___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_3) == 0) @@ -14605,7 +14952,7 @@ lean_inc(x_4); x_5 = lean_ctor_get(x_3, 1); lean_inc(x_5); lean_dec(x_3); -x_6 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__1___closed__1; +x_6 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__toPreterm___main___spec__1___closed__1; lean_inc(x_1); x_7 = lean_name_mk_string(x_1, x_6); x_8 = lean_box(0); @@ -14619,7 +14966,7 @@ goto _start; } } } -lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__3(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__toPreterm___main___spec__3(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_3) == 0) @@ -14635,7 +14982,7 @@ lean_inc(x_4); x_5 = lean_ctor_get(x_3, 1); lean_inc(x_5); lean_dec(x_3); -x_6 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__1___closed__1; +x_6 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__toPreterm___main___spec__1___closed__1; lean_inc(x_1); x_7 = lean_name_mk_string(x_1, x_6); x_8 = lean_box(0); @@ -14649,7 +14996,7 @@ goto _start; } } } -lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__4(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__toPreterm___main___spec__4(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_3) == 0) @@ -14665,7 +15012,7 @@ lean_inc(x_4); x_5 = lean_ctor_get(x_3, 1); lean_inc(x_5); lean_dec(x_3); -x_6 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__1___closed__1; +x_6 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__toPreterm___main___spec__1___closed__1; lean_inc(x_1); x_7 = lean_name_mk_string(x_1, x_6); x_8 = lean_box(0); @@ -14679,7 +15026,7 @@ goto _start; } } } -lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__5(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__toPreterm___main___spec__5(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_3) == 0) @@ -14695,7 +15042,7 @@ lean_inc(x_4); x_5 = lean_ctor_get(x_3, 1); lean_inc(x_5); lean_dec(x_3); -x_6 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__1___closed__1; +x_6 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__toPreterm___main___spec__1___closed__1; lean_inc(x_1); x_7 = lean_name_mk_string(x_1, x_6); x_8 = lean_box(0); @@ -14709,7 +15056,7 @@ goto _start; } } } -lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__6(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__toPreterm___main___spec__6(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_3) == 0) @@ -14725,7 +15072,7 @@ lean_inc(x_4); x_5 = lean_ctor_get(x_3, 1); lean_inc(x_5); lean_dec(x_3); -x_6 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__1___closed__1; +x_6 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__toPreterm___main___spec__1___closed__1; lean_inc(x_1); x_7 = lean_name_mk_string(x_1, x_6); x_8 = lean_box(0); @@ -14739,7 +15086,7 @@ goto _start; } } } -lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__7(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__toPreterm___main___spec__7(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_3) == 0) @@ -14755,7 +15102,7 @@ lean_inc(x_4); x_5 = lean_ctor_get(x_3, 1); lean_inc(x_5); lean_dec(x_3); -x_6 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__1___closed__1; +x_6 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__toPreterm___main___spec__1___closed__1; lean_inc(x_1); x_7 = lean_name_mk_string(x_1, x_6); x_8 = lean_box(0); @@ -14769,7 +15116,7 @@ goto _start; } } } -lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__8(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__toPreterm___main___spec__8(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_3) == 0) @@ -14785,7 +15132,7 @@ lean_inc(x_4); x_5 = lean_ctor_get(x_3, 1); lean_inc(x_5); lean_dec(x_3); -x_6 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__1___closed__1; +x_6 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__toPreterm___main___spec__1___closed__1; lean_inc(x_1); x_7 = lean_name_mk_string(x_1, x_6); x_8 = lean_box(0); @@ -14799,7 +15146,7 @@ goto _start; } } } -lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__9(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__toPreterm___main___spec__9(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_3) == 0) @@ -14815,7 +15162,7 @@ lean_inc(x_4); x_5 = lean_ctor_get(x_3, 1); lean_inc(x_5); lean_dec(x_3); -x_6 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__1___closed__1; +x_6 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__toPreterm___main___spec__1___closed__1; lean_inc(x_1); x_7 = lean_name_mk_string(x_1, x_6); x_8 = lean_box(0); @@ -14829,7 +15176,7 @@ goto _start; } } } -lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__10(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__toPreterm___main___spec__10(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_3) == 0) @@ -14845,7 +15192,7 @@ lean_inc(x_4); x_5 = lean_ctor_get(x_3, 1); lean_inc(x_5); lean_dec(x_3); -x_6 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__1___closed__1; +x_6 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__toPreterm___main___spec__1___closed__1; lean_inc(x_1); x_7 = lean_name_mk_string(x_1, x_6); x_8 = lean_box(0); @@ -14859,7 +15206,7 @@ goto _start; } } } -lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__11(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__toPreterm___main___spec__11(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_3) == 0) @@ -14875,7 +15222,7 @@ lean_inc(x_4); x_5 = lean_ctor_get(x_3, 1); lean_inc(x_5); lean_dec(x_3); -x_6 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__1___closed__1; +x_6 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__toPreterm___main___spec__1___closed__1; lean_inc(x_1); x_7 = lean_name_mk_string(x_1, x_6); x_8 = lean_box(0); @@ -14889,7 +15236,7 @@ goto _start; } } } -lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__12(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__toPreterm___main___spec__12(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_3) == 0) @@ -14905,7 +15252,7 @@ lean_inc(x_4); x_5 = lean_ctor_get(x_3, 1); lean_inc(x_5); lean_dec(x_3); -x_6 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__1___closed__1; +x_6 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__toPreterm___main___spec__1___closed__1; lean_inc(x_1); x_7 = lean_name_mk_string(x_1, x_6); x_8 = lean_box(0); @@ -14919,7 +15266,7 @@ goto _start; } } } -lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__13(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__toPreterm___main___spec__13(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { if (lean_obj_tag(x_3) == 0) @@ -14935,7 +15282,7 @@ lean_inc(x_4); x_5 = lean_ctor_get(x_3, 1); lean_inc(x_5); lean_dec(x_3); -x_6 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__1___closed__1; +x_6 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__toPreterm___main___spec__1___closed__1; lean_inc(x_1); x_7 = lean_name_mk_string(x_1, x_6); x_8 = lean_box(0); @@ -14949,7 +15296,7 @@ goto _start; } } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__1___closed__1() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___lambda__1___closed__1() { _start: { lean_object* x_1; @@ -14957,22 +15304,22 @@ x_1 = lean_mk_string("HasBeq.beq"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__1___closed__2() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___lambda__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__1___closed__1; +x_1 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___lambda__1___closed__1; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__1___closed__3() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___lambda__1___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__1___closed__1; +x_1 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___lambda__1___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__1___closed__2; +x_3 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___lambda__1___closed__2; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -14980,7 +15327,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__1___closed__4() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___lambda__1___closed__4() { _start: { lean_object* x_1; @@ -14988,7 +15335,7 @@ x_1 = lean_mk_string("HasBeq"); return x_1; } } -lean_object* l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; @@ -15005,7 +15352,7 @@ x_14 = lean_name_mk_string(x_12, x_13); x_15 = l_Lean_Parser_Term_id___elambda__1___closed__1; x_16 = lean_name_mk_string(x_12, x_15); x_17 = lean_box(0); -x_18 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__1___closed__4; +x_18 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___lambda__1___closed__4; lean_inc(x_1); x_19 = lean_name_mk_string(x_1, x_18); x_20 = l_Lean_Parser_Term_beq___elambda__1___closed__1; @@ -15019,7 +15366,7 @@ lean_ctor_set(x_24, 1, x_23); x_25 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_25, 0, x_24); lean_ctor_set(x_25, 1, x_23); -x_26 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__1___closed__3; +x_26 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___lambda__1___closed__3; x_27 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_27, 0, x_17); lean_ctor_set(x_27, 1, x_26); @@ -15053,7 +15400,7 @@ lean_ctor_set(x_41, 1, x_6); return x_41; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__2___closed__1() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___lambda__2___closed__1() { _start: { lean_object* x_1; lean_object* x_2; @@ -15062,13 +15409,13 @@ x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__2___closed__2() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___lambda__2___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = l_Lean_Parser_Term_and___elambda__1___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__2___closed__1; +x_3 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___lambda__2___closed__1; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -15076,7 +15423,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -lean_object* l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___lambda__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; @@ -15105,7 +15452,7 @@ lean_ctor_set(x_22, 1, x_21); x_23 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_23, 0, x_22); lean_ctor_set(x_23, 1, x_21); -x_24 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__2___closed__2; +x_24 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___lambda__2___closed__2; x_25 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_25, 0, x_17); lean_ctor_set(x_25, 1, x_24); @@ -15139,7 +15486,7 @@ lean_ctor_set(x_39, 1, x_6); return x_39; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__3___closed__1() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___lambda__3___closed__1() { _start: { lean_object* x_1; @@ -15147,22 +15494,22 @@ x_1 = lean_mk_string("ite"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__3___closed__2() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___lambda__3___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__3___closed__1; +x_1 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___lambda__3___closed__1; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__3___closed__3() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___lambda__3___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__3___closed__1; +x_1 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___lambda__3___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__3___closed__2; +x_3 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___lambda__3___closed__2; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -15170,7 +15517,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -lean_object* l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___lambda__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; @@ -15187,7 +15534,7 @@ x_15 = lean_name_mk_string(x_13, x_14); x_16 = l_Lean_Parser_Term_id___elambda__1___closed__1; x_17 = lean_name_mk_string(x_13, x_16); x_18 = lean_box(0); -x_19 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__3___closed__1; +x_19 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___lambda__3___closed__1; lean_inc(x_1); x_20 = lean_name_mk_string(x_1, x_19); lean_inc(x_20); @@ -15199,7 +15546,7 @@ lean_ctor_set(x_23, 1, x_22); x_24 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_24, 0, x_23); lean_ctor_set(x_24, 1, x_22); -x_25 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__3___closed__3; +x_25 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___lambda__3___closed__3; x_26 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_26, 0, x_18); lean_ctor_set(x_26, 1, x_25); @@ -15239,7 +15586,7 @@ lean_ctor_set(x_43, 1, x_7); return x_43; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__1() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___closed__1() { _start: { lean_object* x_1; @@ -15247,27 +15594,27 @@ x_1 = lean_mk_string("stxQuot: unimplemented kind "); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__2() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__1; +x_1 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___closed__1; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__3() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___closed__3() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__2; +x_1 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___closed__2; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__4() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___closed__4() { _start: { lean_object* x_1; @@ -15275,7 +15622,7 @@ x_1 = lean_mk_string("expr"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__5() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___closed__5() { _start: { lean_object* x_1; lean_object* x_2; @@ -15284,7 +15631,7 @@ x_2 = l_Lean_mkNatLit(x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__6() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___closed__6() { _start: { lean_object* x_1; lean_object* x_2; @@ -15293,7 +15640,7 @@ x_2 = l_Lean_mkStrLit(x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__7() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -15305,7 +15652,7 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -lean_object* l___private_Init_Lean_Elab_Quotation_14__toPreterm___main(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Init_Lean_Elab_Quotation_15__toPreterm___main(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; lean_object* x_5; lean_object* x_95; lean_object* x_96; @@ -15324,7 +15671,7 @@ lean_object* x_106; lean_object* x_107; uint8_t x_108; lean_dec(x_4); x_106 = lean_ctor_get(x_95, 1); lean_inc(x_106); -x_107 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__4; +x_107 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___closed__4; x_108 = lean_string_dec_eq(x_106, x_107); lean_dec(x_106); if (x_108 == 0) @@ -15433,7 +15780,7 @@ x_139 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_139, 0, x_138); x_140 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_140, 0, x_139); -x_141 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__3; +x_141 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___closed__3; x_142 = lean_alloc_ctor(8, 2, 0); lean_ctor_set(x_142, 0, x_141); lean_ctor_set(x_142, 1, x_140); @@ -15458,7 +15805,7 @@ x_148 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_148, 0, x_147); x_149 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_149, 0, x_148); -x_150 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__3; +x_150 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___closed__3; x_151 = lean_alloc_ctor(8, 2, 0); lean_ctor_set(x_151, 0, x_150); lean_ctor_set(x_151, 1, x_149); @@ -15529,7 +15876,7 @@ x_175 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_175, 0, x_174); x_176 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_176, 0, x_175); -x_177 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__3; +x_177 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___closed__3; x_178 = lean_alloc_ctor(8, 2, 0); lean_ctor_set(x_178, 0, x_177); lean_ctor_set(x_178, 1, x_176); @@ -15554,7 +15901,7 @@ lean_dec(x_181); if (lean_obj_tag(x_183) == 0) { lean_object* x_184; lean_object* x_185; -x_184 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__5; +x_184 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___closed__5; x_185 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_185, 0, x_184); lean_ctor_set(x_185, 1, x_3); @@ -15591,7 +15938,7 @@ lean_dec(x_190); if (lean_obj_tag(x_191) == 0) { lean_object* x_192; lean_object* x_193; -x_192 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__6; +x_192 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___closed__6; x_193 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_193, 0, x_192); lean_ctor_set(x_193, 1, x_3); @@ -15626,7 +15973,7 @@ x_199 = lean_array_get(x_197, x_4, x_198); x_200 = lean_unsigned_to_nat(2u); x_201 = lean_array_get(x_197, x_4, x_200); lean_dec(x_4); -x_202 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__1___boxed), 6, 3); +x_202 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___lambda__1___boxed), 6, 3); lean_closure_set(x_202, 0, x_117); lean_closure_set(x_202, 1, x_199); lean_closure_set(x_202, 2, x_201); @@ -15654,7 +16001,7 @@ x_209 = lean_array_get(x_207, x_4, x_208); x_210 = lean_unsigned_to_nat(2u); x_211 = lean_array_get(x_207, x_4, x_210); lean_dec(x_4); -x_212 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__2___boxed), 6, 3); +x_212 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___lambda__2___boxed), 6, 3); lean_closure_set(x_212, 0, x_117); lean_closure_set(x_212, 1, x_209); lean_closure_set(x_212, 2, x_211); @@ -15729,7 +16076,7 @@ x_237 = lean_array_get(x_233, x_4, x_236); x_238 = lean_unsigned_to_nat(6u); x_239 = lean_array_get(x_233, x_4, x_238); lean_dec(x_4); -x_240 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__3___boxed), 7, 4); +x_240 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___lambda__3___boxed), 7, 4); lean_closure_set(x_240, 0, x_117); lean_closure_set(x_240, 1, x_235); lean_closure_set(x_240, 2, x_237); @@ -15756,7 +16103,7 @@ x_245 = l_Lean_stxInh; x_246 = lean_unsigned_to_nat(0u); x_247 = lean_array_get(x_245, x_4, x_246); lean_inc(x_2); -x_248 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main(x_247, x_2, x_3); +x_248 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main(x_247, x_2, x_3); if (lean_obj_tag(x_248) == 0) { lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; @@ -15768,7 +16115,7 @@ lean_dec(x_248); x_251 = lean_unsigned_to_nat(1u); x_252 = lean_array_get(x_245, x_4, x_251); lean_dec(x_4); -x_253 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main(x_252, x_2, x_250); +x_253 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main(x_252, x_2, x_250); if (lean_obj_tag(x_253) == 0) { uint8_t x_254; @@ -15904,7 +16251,7 @@ lean_dec(x_279); lean_dec(x_278); lean_dec(x_277); lean_dec(x_271); -x_282 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__7; +x_282 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___closed__7; x_283 = l_unreachable_x21___rarg(x_282); x_5 = x_283; goto block_94; @@ -15920,7 +16267,7 @@ lean_object* x_285; lean_object* x_286; lean_dec(x_278); lean_dec(x_277); lean_dec(x_271); -x_285 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__7; +x_285 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___closed__7; x_286 = l_unreachable_x21___rarg(x_285); x_5 = x_286; goto block_94; @@ -15935,7 +16282,7 @@ if (x_287 == 0) lean_object* x_288; lean_object* x_289; lean_dec(x_277); lean_dec(x_271); -x_288 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__7; +x_288 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___closed__7; x_289 = l_unreachable_x21___rarg(x_288); x_5 = x_289; goto block_94; @@ -15955,7 +16302,7 @@ if (x_293 == 0) { lean_object* x_294; lean_object* x_295; lean_dec(x_271); -x_294 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__7; +x_294 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___closed__7; x_295 = l_unreachable_x21___rarg(x_294); x_5 = x_295; goto block_94; @@ -16005,7 +16352,7 @@ lean_dec(x_274); lean_dec(x_273); lean_dec(x_272); lean_dec(x_271); -x_307 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__7; +x_307 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___closed__7; x_308 = l_unreachable_x21___rarg(x_307); x_5 = x_308; goto block_94; @@ -16019,7 +16366,7 @@ lean_dec(x_274); lean_dec(x_273); lean_dec(x_272); lean_dec(x_271); -x_309 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__7; +x_309 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___closed__7; x_310 = l_unreachable_x21___rarg(x_309); x_5 = x_310; goto block_94; @@ -16032,7 +16379,7 @@ lean_dec(x_274); lean_dec(x_273); lean_dec(x_272); lean_dec(x_271); -x_311 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__7; +x_311 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___closed__7; x_312 = l_unreachable_x21___rarg(x_311); x_5 = x_312; goto block_94; @@ -16044,7 +16391,7 @@ lean_object* x_313; lean_object* x_314; lean_dec(x_273); lean_dec(x_272); lean_dec(x_271); -x_313 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__7; +x_313 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___closed__7; x_314 = l_unreachable_x21___rarg(x_313); x_5 = x_314; goto block_94; @@ -16055,7 +16402,7 @@ else lean_object* x_315; lean_object* x_316; lean_dec(x_272); lean_dec(x_271); -x_315 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__7; +x_315 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___closed__7; x_316 = l_unreachable_x21___rarg(x_315); x_5 = x_316; goto block_94; @@ -16119,7 +16466,7 @@ lean_dec(x_338); x_340 = l_Lean_Syntax_getArg(x_339, x_318); lean_dec(x_339); lean_inc(x_2); -x_341 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main(x_340, x_2, x_3); +x_341 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main(x_340, x_2, x_3); if (lean_obj_tag(x_341) == 0) { lean_object* x_342; lean_object* x_343; lean_object* x_344; lean_object* x_345; lean_object* x_346; uint8_t x_347; lean_object* x_348; lean_object* x_349; lean_object* x_350; lean_object* x_351; lean_object* x_352; lean_object* x_353; lean_object* x_354; lean_object* x_355; lean_object* x_356; lean_object* x_357; lean_object* x_358; lean_object* x_359; lean_object* x_360; lean_object* x_361; lean_object* x_362; lean_object* x_363; uint8_t x_364; @@ -16172,7 +16519,7 @@ x_367 = lean_ctor_get(x_365, 1); lean_dec(x_367); lean_inc(x_348); lean_ctor_set(x_365, 1, x_348); -x_368 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main(x_363, x_2, x_351); +x_368 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main(x_363, x_2, x_351); if (lean_obj_tag(x_368) == 0) { uint8_t x_369; @@ -16255,7 +16602,7 @@ lean_ctor_set(x_390, 2, x_387); lean_ctor_set(x_390, 3, x_388); lean_ctor_set(x_390, 4, x_389); lean_ctor_set(x_2, 0, x_390); -x_391 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main(x_363, x_2, x_351); +x_391 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main(x_363, x_2, x_351); if (lean_obj_tag(x_391) == 0) { 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; @@ -16381,7 +16728,7 @@ lean_ctor_set(x_421, 7, x_411); lean_ctor_set(x_421, 8, x_412); lean_ctor_set(x_421, 9, x_413); lean_ctor_set_uint8(x_421, sizeof(void*)*10, x_414); -x_422 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main(x_363, x_421, x_351); +x_422 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main(x_363, x_421, x_351); if (lean_obj_tag(x_422) == 0) { 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; @@ -16480,7 +16827,7 @@ lean_inc(x_442); x_443 = lean_ctor_get(x_441, 1); lean_inc(x_443); lean_dec(x_441); -x_444 = l___private_Init_Lean_Elab_Quotation_13__exprPlaceholder; +x_444 = l___private_Init_Lean_Elab_Quotation_14__exprPlaceholder; x_445 = 0; lean_inc_n(x_440, 2); x_446 = lean_local_ctx_mk_local_decl(x_442, x_440, x_440, x_444, x_445); @@ -16519,7 +16866,7 @@ x_465 = lean_ctor_get(x_463, 1); lean_dec(x_465); lean_inc(x_446); lean_ctor_set(x_463, 1, x_446); -x_466 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main(x_461, x_2, x_449); +x_466 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main(x_461, x_2, x_449); if (lean_obj_tag(x_466) == 0) { uint8_t x_467; @@ -16602,7 +16949,7 @@ lean_ctor_set(x_488, 2, x_485); lean_ctor_set(x_488, 3, x_486); lean_ctor_set(x_488, 4, x_487); lean_ctor_set(x_2, 0, x_488); -x_489 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main(x_461, x_2, x_449); +x_489 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main(x_461, x_2, x_449); if (lean_obj_tag(x_489) == 0) { lean_object* x_490; lean_object* x_491; lean_object* x_492; lean_object* x_493; lean_object* x_494; lean_object* x_495; lean_object* x_496; lean_object* x_497; @@ -16728,7 +17075,7 @@ lean_ctor_set(x_519, 7, x_509); lean_ctor_set(x_519, 8, x_510); lean_ctor_set(x_519, 9, x_511); lean_ctor_set_uint8(x_519, sizeof(void*)*10, x_512); -x_520 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main(x_461, x_519, x_449); +x_520 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main(x_461, x_519, x_449); if (lean_obj_tag(x_520) == 0) { 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; @@ -16799,7 +17146,7 @@ lean_inc(x_535); x_536 = lean_ctor_get(x_534, 1); lean_inc(x_536); lean_dec(x_534); -x_537 = l___private_Init_Lean_Elab_Quotation_13__exprPlaceholder; +x_537 = l___private_Init_Lean_Elab_Quotation_14__exprPlaceholder; x_538 = 0; lean_inc_n(x_533, 2); x_539 = lean_local_ctx_mk_local_decl(x_535, x_533, x_533, x_537, x_538); @@ -16838,7 +17185,7 @@ x_558 = lean_ctor_get(x_556, 1); lean_dec(x_558); lean_inc(x_539); lean_ctor_set(x_556, 1, x_539); -x_559 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main(x_554, x_2, x_542); +x_559 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main(x_554, x_2, x_542); if (lean_obj_tag(x_559) == 0) { uint8_t x_560; @@ -16921,7 +17268,7 @@ lean_ctor_set(x_581, 2, x_578); lean_ctor_set(x_581, 3, x_579); lean_ctor_set(x_581, 4, x_580); lean_ctor_set(x_2, 0, x_581); -x_582 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main(x_554, x_2, x_542); +x_582 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main(x_554, x_2, x_542); if (lean_obj_tag(x_582) == 0) { lean_object* x_583; lean_object* x_584; lean_object* x_585; lean_object* x_586; lean_object* x_587; lean_object* x_588; lean_object* x_589; lean_object* x_590; @@ -17047,7 +17394,7 @@ lean_ctor_set(x_612, 7, x_602); lean_ctor_set(x_612, 8, x_603); lean_ctor_set(x_612, 9, x_604); lean_ctor_set_uint8(x_612, sizeof(void*)*10, x_605); -x_613 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main(x_554, x_612, x_542); +x_613 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main(x_554, x_612, x_542); if (lean_obj_tag(x_613) == 0) { 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; @@ -17176,7 +17523,7 @@ lean_dec(x_642); x_643 = lean_ctor_get(x_639, 1); lean_inc(x_643); lean_dec(x_639); -x_644 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__1(x_117, x_640, x_643); +x_644 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__toPreterm___main___spec__1(x_117, x_640, x_643); lean_ctor_set(x_633, 0, x_644); return x_633; } @@ -17189,7 +17536,7 @@ lean_dec(x_633); x_646 = lean_ctor_get(x_639, 1); lean_inc(x_646); lean_dec(x_639); -x_647 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__1(x_117, x_640, x_646); +x_647 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__toPreterm___main___spec__1(x_117, x_640, x_646); x_648 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_648, 0, x_647); lean_ctor_set(x_648, 1, x_645); @@ -17208,7 +17555,7 @@ lean_dec(x_650); x_651 = lean_ctor_get(x_639, 1); lean_inc(x_651); lean_dec(x_639); -x_652 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__2(x_117, x_640, x_651); +x_652 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__toPreterm___main___spec__2(x_117, x_640, x_651); lean_ctor_set(x_633, 0, x_652); return x_633; } @@ -17221,7 +17568,7 @@ lean_dec(x_633); x_654 = lean_ctor_get(x_639, 1); lean_inc(x_654); lean_dec(x_639); -x_655 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__2(x_117, x_640, x_654); +x_655 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__toPreterm___main___spec__2(x_117, x_640, x_654); x_656 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_656, 0, x_655); lean_ctor_set(x_656, 1, x_653); @@ -17240,7 +17587,7 @@ lean_dec(x_658); x_659 = lean_ctor_get(x_639, 1); lean_inc(x_659); lean_dec(x_639); -x_660 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__3(x_117, x_640, x_659); +x_660 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__toPreterm___main___spec__3(x_117, x_640, x_659); lean_ctor_set(x_633, 0, x_660); return x_633; } @@ -17253,7 +17600,7 @@ lean_dec(x_633); x_662 = lean_ctor_get(x_639, 1); lean_inc(x_662); lean_dec(x_639); -x_663 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__3(x_117, x_640, x_662); +x_663 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__toPreterm___main___spec__3(x_117, x_640, x_662); x_664 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_664, 0, x_663); lean_ctor_set(x_664, 1, x_661); @@ -17272,7 +17619,7 @@ lean_dec(x_666); x_667 = lean_ctor_get(x_639, 1); lean_inc(x_667); lean_dec(x_639); -x_668 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__4(x_117, x_640, x_667); +x_668 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__toPreterm___main___spec__4(x_117, x_640, x_667); lean_ctor_set(x_633, 0, x_668); return x_633; } @@ -17285,7 +17632,7 @@ lean_dec(x_633); x_670 = lean_ctor_get(x_639, 1); lean_inc(x_670); lean_dec(x_639); -x_671 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__4(x_117, x_640, x_670); +x_671 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__toPreterm___main___spec__4(x_117, x_640, x_670); x_672 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_672, 0, x_671); lean_ctor_set(x_672, 1, x_669); @@ -17308,7 +17655,7 @@ x_676 = lean_ctor_get(x_640, 0); lean_inc(x_676); lean_dec(x_640); x_677 = l_Lean_mkConst(x_676, x_632); -x_678 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__5(x_117, x_677, x_675); +x_678 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__toPreterm___main___spec__5(x_117, x_677, x_675); lean_ctor_set(x_633, 0, x_678); return x_633; } @@ -17325,7 +17672,7 @@ x_681 = lean_ctor_get(x_640, 0); lean_inc(x_681); lean_dec(x_640); x_682 = l_Lean_mkConst(x_681, x_632); -x_683 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__5(x_117, x_682, x_680); +x_683 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__toPreterm___main___spec__5(x_117, x_682, x_680); x_684 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_684, 0, x_683); lean_ctor_set(x_684, 1, x_679); @@ -17344,7 +17691,7 @@ lean_dec(x_686); x_687 = lean_ctor_get(x_639, 1); lean_inc(x_687); lean_dec(x_639); -x_688 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__6(x_117, x_640, x_687); +x_688 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__toPreterm___main___spec__6(x_117, x_640, x_687); lean_ctor_set(x_633, 0, x_688); return x_633; } @@ -17357,7 +17704,7 @@ lean_dec(x_633); x_690 = lean_ctor_get(x_639, 1); lean_inc(x_690); lean_dec(x_639); -x_691 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__6(x_117, x_640, x_690); +x_691 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__toPreterm___main___spec__6(x_117, x_640, x_690); x_692 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_692, 0, x_691); lean_ctor_set(x_692, 1, x_689); @@ -17376,7 +17723,7 @@ lean_dec(x_694); x_695 = lean_ctor_get(x_639, 1); lean_inc(x_695); lean_dec(x_639); -x_696 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__7(x_117, x_640, x_695); +x_696 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__toPreterm___main___spec__7(x_117, x_640, x_695); lean_ctor_set(x_633, 0, x_696); return x_633; } @@ -17389,7 +17736,7 @@ lean_dec(x_633); x_698 = lean_ctor_get(x_639, 1); lean_inc(x_698); lean_dec(x_639); -x_699 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__7(x_117, x_640, x_698); +x_699 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__toPreterm___main___spec__7(x_117, x_640, x_698); x_700 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_700, 0, x_699); lean_ctor_set(x_700, 1, x_697); @@ -17408,7 +17755,7 @@ lean_dec(x_702); x_703 = lean_ctor_get(x_639, 1); lean_inc(x_703); lean_dec(x_639); -x_704 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__8(x_117, x_640, x_703); +x_704 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__toPreterm___main___spec__8(x_117, x_640, x_703); lean_ctor_set(x_633, 0, x_704); return x_633; } @@ -17421,7 +17768,7 @@ lean_dec(x_633); x_706 = lean_ctor_get(x_639, 1); lean_inc(x_706); lean_dec(x_639); -x_707 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__8(x_117, x_640, x_706); +x_707 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__toPreterm___main___spec__8(x_117, x_640, x_706); x_708 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_708, 0, x_707); lean_ctor_set(x_708, 1, x_705); @@ -17440,7 +17787,7 @@ lean_dec(x_710); x_711 = lean_ctor_get(x_639, 1); lean_inc(x_711); lean_dec(x_639); -x_712 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__9(x_117, x_640, x_711); +x_712 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__toPreterm___main___spec__9(x_117, x_640, x_711); lean_ctor_set(x_633, 0, x_712); return x_633; } @@ -17453,7 +17800,7 @@ lean_dec(x_633); x_714 = lean_ctor_get(x_639, 1); lean_inc(x_714); lean_dec(x_639); -x_715 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__9(x_117, x_640, x_714); +x_715 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__toPreterm___main___spec__9(x_117, x_640, x_714); x_716 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_716, 0, x_715); lean_ctor_set(x_716, 1, x_713); @@ -17472,7 +17819,7 @@ lean_dec(x_718); x_719 = lean_ctor_get(x_639, 1); lean_inc(x_719); lean_dec(x_639); -x_720 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__10(x_117, x_640, x_719); +x_720 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__toPreterm___main___spec__10(x_117, x_640, x_719); lean_ctor_set(x_633, 0, x_720); return x_633; } @@ -17485,7 +17832,7 @@ lean_dec(x_633); x_722 = lean_ctor_get(x_639, 1); lean_inc(x_722); lean_dec(x_639); -x_723 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__10(x_117, x_640, x_722); +x_723 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__toPreterm___main___spec__10(x_117, x_640, x_722); x_724 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_724, 0, x_723); lean_ctor_set(x_724, 1, x_721); @@ -17504,7 +17851,7 @@ lean_dec(x_726); x_727 = lean_ctor_get(x_639, 1); lean_inc(x_727); lean_dec(x_639); -x_728 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__11(x_117, x_640, x_727); +x_728 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__toPreterm___main___spec__11(x_117, x_640, x_727); lean_ctor_set(x_633, 0, x_728); return x_633; } @@ -17517,7 +17864,7 @@ lean_dec(x_633); x_730 = lean_ctor_get(x_639, 1); lean_inc(x_730); lean_dec(x_639); -x_731 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__11(x_117, x_640, x_730); +x_731 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__toPreterm___main___spec__11(x_117, x_640, x_730); x_732 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_732, 0, x_731); lean_ctor_set(x_732, 1, x_729); @@ -17536,7 +17883,7 @@ lean_dec(x_734); x_735 = lean_ctor_get(x_639, 1); lean_inc(x_735); lean_dec(x_639); -x_736 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__12(x_117, x_640, x_735); +x_736 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__toPreterm___main___spec__12(x_117, x_640, x_735); lean_ctor_set(x_633, 0, x_736); return x_633; } @@ -17549,7 +17896,7 @@ lean_dec(x_633); x_738 = lean_ctor_get(x_639, 1); lean_inc(x_738); lean_dec(x_639); -x_739 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__12(x_117, x_640, x_738); +x_739 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__toPreterm___main___spec__12(x_117, x_640, x_738); x_740 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_740, 0, x_739); lean_ctor_set(x_740, 1, x_737); @@ -17568,7 +17915,7 @@ lean_dec(x_742); x_743 = lean_ctor_get(x_639, 1); lean_inc(x_743); lean_dec(x_639); -x_744 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__13(x_117, x_640, x_743); +x_744 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__toPreterm___main___spec__13(x_117, x_640, x_743); lean_ctor_set(x_633, 0, x_744); return x_633; } @@ -17581,7 +17928,7 @@ lean_dec(x_633); x_746 = lean_ctor_get(x_639, 1); lean_inc(x_746); lean_dec(x_639); -x_747 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__13(x_117, x_640, x_746); +x_747 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__toPreterm___main___spec__13(x_117, x_640, x_746); x_748 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_748, 0, x_747); lean_ctor_set(x_748, 1, x_745); @@ -17650,7 +17997,7 @@ x_761 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_761, 0, x_760); x_762 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_762, 0, x_761); -x_763 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__3; +x_763 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___closed__3; x_764 = lean_alloc_ctor(8, 2, 0); lean_ctor_set(x_764, 0, x_763); lean_ctor_set(x_764, 1, x_762); @@ -17679,7 +18026,7 @@ x_771 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_771, 0, x_770); x_772 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_772, 0, x_771); -x_773 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__3; +x_773 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___closed__3; x_774 = lean_alloc_ctor(8, 2, 0); lean_ctor_set(x_774, 0, x_773); lean_ctor_set(x_774, 1, x_772); @@ -17754,7 +18101,7 @@ x_799 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_799, 0, x_798); x_800 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_800, 0, x_799); -x_801 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__3; +x_801 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___closed__3; x_802 = lean_alloc_ctor(8, 2, 0); lean_ctor_set(x_802, 0, x_801); lean_ctor_set(x_802, 1, x_800); @@ -17778,7 +18125,7 @@ lean_dec(x_805); if (lean_obj_tag(x_807) == 0) { lean_object* x_808; lean_object* x_809; -x_808 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__5; +x_808 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___closed__5; x_809 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_809, 0, x_808); lean_ctor_set(x_809, 1, x_3); @@ -17814,7 +18161,7 @@ lean_dec(x_814); if (lean_obj_tag(x_815) == 0) { lean_object* x_816; lean_object* x_817; -x_816 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__6; +x_816 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___closed__6; x_817 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_817, 0, x_816); lean_ctor_set(x_817, 1, x_3); @@ -17848,7 +18195,7 @@ x_823 = lean_array_get(x_821, x_4, x_822); x_824 = lean_unsigned_to_nat(2u); x_825 = lean_array_get(x_821, x_4, x_824); lean_dec(x_4); -x_826 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__1___boxed), 6, 3); +x_826 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___lambda__1___boxed), 6, 3); lean_closure_set(x_826, 0, x_117); lean_closure_set(x_826, 1, x_823); lean_closure_set(x_826, 2, x_825); @@ -17875,7 +18222,7 @@ x_833 = lean_array_get(x_831, x_4, x_832); x_834 = lean_unsigned_to_nat(2u); x_835 = lean_array_get(x_831, x_4, x_834); lean_dec(x_4); -x_836 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__2___boxed), 6, 3); +x_836 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___lambda__2___boxed), 6, 3); lean_closure_set(x_836, 0, x_117); lean_closure_set(x_836, 1, x_833); lean_closure_set(x_836, 2, x_835); @@ -17948,7 +18295,7 @@ x_861 = lean_array_get(x_857, x_4, x_860); x_862 = lean_unsigned_to_nat(6u); x_863 = lean_array_get(x_857, x_4, x_862); lean_dec(x_4); -x_864 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__3___boxed), 7, 4); +x_864 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___lambda__3___boxed), 7, 4); lean_closure_set(x_864, 0, x_117); lean_closure_set(x_864, 1, x_859); lean_closure_set(x_864, 2, x_861); @@ -17974,7 +18321,7 @@ x_869 = l_Lean_stxInh; x_870 = lean_unsigned_to_nat(0u); x_871 = lean_array_get(x_869, x_4, x_870); lean_inc(x_2); -x_872 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main(x_871, x_2, x_3); +x_872 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main(x_871, x_2, x_3); 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; @@ -17986,7 +18333,7 @@ lean_dec(x_872); x_875 = lean_unsigned_to_nat(1u); x_876 = lean_array_get(x_869, x_4, x_875); lean_dec(x_4); -x_877 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main(x_876, x_2, x_874); +x_877 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main(x_876, x_2, x_874); if (lean_obj_tag(x_877) == 0) { lean_object* x_878; lean_object* x_879; lean_object* x_880; lean_object* x_881; lean_object* x_882; @@ -18123,7 +18470,7 @@ lean_dec(x_901); lean_dec(x_900); lean_dec(x_899); lean_dec(x_893); -x_904 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__7; +x_904 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___closed__7; x_905 = l_unreachable_x21___rarg(x_904); x_5 = x_905; goto block_94; @@ -18139,7 +18486,7 @@ lean_object* x_907; lean_object* x_908; lean_dec(x_900); lean_dec(x_899); lean_dec(x_893); -x_907 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__7; +x_907 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___closed__7; x_908 = l_unreachable_x21___rarg(x_907); x_5 = x_908; goto block_94; @@ -18154,7 +18501,7 @@ if (x_909 == 0) lean_object* x_910; lean_object* x_911; lean_dec(x_899); lean_dec(x_893); -x_910 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__7; +x_910 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___closed__7; x_911 = l_unreachable_x21___rarg(x_910); x_5 = x_911; goto block_94; @@ -18174,7 +18521,7 @@ if (x_915 == 0) { lean_object* x_916; lean_object* x_917; lean_dec(x_893); -x_916 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__7; +x_916 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___closed__7; x_917 = l_unreachable_x21___rarg(x_916); x_5 = x_917; goto block_94; @@ -18224,7 +18571,7 @@ lean_dec(x_896); lean_dec(x_895); lean_dec(x_894); lean_dec(x_893); -x_929 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__7; +x_929 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___closed__7; x_930 = l_unreachable_x21___rarg(x_929); x_5 = x_930; goto block_94; @@ -18238,7 +18585,7 @@ lean_dec(x_896); lean_dec(x_895); lean_dec(x_894); lean_dec(x_893); -x_931 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__7; +x_931 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___closed__7; x_932 = l_unreachable_x21___rarg(x_931); x_5 = x_932; goto block_94; @@ -18251,7 +18598,7 @@ lean_dec(x_896); lean_dec(x_895); lean_dec(x_894); lean_dec(x_893); -x_933 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__7; +x_933 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___closed__7; x_934 = l_unreachable_x21___rarg(x_933); x_5 = x_934; goto block_94; @@ -18263,7 +18610,7 @@ lean_object* x_935; lean_object* x_936; lean_dec(x_895); lean_dec(x_894); lean_dec(x_893); -x_935 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__7; +x_935 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___closed__7; x_936 = l_unreachable_x21___rarg(x_935); x_5 = x_936; goto block_94; @@ -18274,7 +18621,7 @@ else lean_object* x_937; lean_object* x_938; lean_dec(x_894); lean_dec(x_893); -x_937 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__7; +x_937 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___closed__7; x_938 = l_unreachable_x21___rarg(x_937); x_5 = x_938; goto block_94; @@ -18337,7 +18684,7 @@ lean_dec(x_960); x_962 = l_Lean_Syntax_getArg(x_961, x_940); lean_dec(x_961); lean_inc(x_2); -x_963 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main(x_962, x_2, x_3); +x_963 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main(x_962, x_2, x_3); if (lean_obj_tag(x_963) == 0) { lean_object* x_964; lean_object* x_965; lean_object* x_966; lean_object* x_967; lean_object* x_968; uint8_t x_969; lean_object* x_970; lean_object* x_971; lean_object* x_972; lean_object* x_973; lean_object* x_974; lean_object* x_975; lean_object* x_976; lean_object* x_977; lean_object* x_978; lean_object* x_979; lean_object* x_980; lean_object* x_981; lean_object* x_982; lean_object* x_983; lean_object* x_984; lean_object* x_985; lean_object* x_986; lean_object* x_987; lean_object* x_988; lean_object* x_989; lean_object* x_990; lean_object* x_991; lean_object* x_992; lean_object* x_993; lean_object* x_994; lean_object* x_995; uint8_t 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; @@ -18460,7 +18807,7 @@ lean_ctor_set(x_1004, 7, x_993); lean_ctor_set(x_1004, 8, x_994); lean_ctor_set(x_1004, 9, x_995); lean_ctor_set_uint8(x_1004, sizeof(void*)*10, x_996); -x_1005 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main(x_985, x_1004, x_973); +x_1005 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main(x_985, x_1004, x_973); if (lean_obj_tag(x_1005) == 0) { lean_object* x_1006; lean_object* x_1007; lean_object* x_1008; lean_object* x_1009; lean_object* x_1010; lean_object* x_1011; lean_object* x_1012; lean_object* x_1013; @@ -18560,7 +18907,7 @@ lean_inc(x_1025); x_1026 = lean_ctor_get(x_1024, 1); lean_inc(x_1026); lean_dec(x_1024); -x_1027 = l___private_Init_Lean_Elab_Quotation_13__exprPlaceholder; +x_1027 = l___private_Init_Lean_Elab_Quotation_14__exprPlaceholder; x_1028 = 0; lean_inc_n(x_1023, 2); x_1029 = lean_local_ctx_mk_local_decl(x_1025, x_1023, x_1023, x_1027, x_1028); @@ -18669,7 +19016,7 @@ lean_ctor_set(x_1063, 7, x_1052); lean_ctor_set(x_1063, 8, x_1053); lean_ctor_set(x_1063, 9, x_1054); lean_ctor_set_uint8(x_1063, sizeof(void*)*10, x_1055); -x_1064 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main(x_1044, x_1063, x_1032); +x_1064 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main(x_1044, x_1063, x_1032); if (lean_obj_tag(x_1064) == 0) { lean_object* x_1065; lean_object* x_1066; lean_object* x_1067; lean_object* x_1068; lean_object* x_1069; lean_object* x_1070; lean_object* x_1071; lean_object* x_1072; @@ -18739,7 +19086,7 @@ lean_inc(x_1079); x_1080 = lean_ctor_get(x_1078, 1); lean_inc(x_1080); lean_dec(x_1078); -x_1081 = l___private_Init_Lean_Elab_Quotation_13__exprPlaceholder; +x_1081 = l___private_Init_Lean_Elab_Quotation_14__exprPlaceholder; x_1082 = 0; lean_inc_n(x_1077, 2); x_1083 = lean_local_ctx_mk_local_decl(x_1079, x_1077, x_1077, x_1081, x_1082); @@ -18848,7 +19195,7 @@ lean_ctor_set(x_1117, 7, x_1106); lean_ctor_set(x_1117, 8, x_1107); lean_ctor_set(x_1117, 9, x_1108); lean_ctor_set_uint8(x_1117, sizeof(void*)*10, x_1109); -x_1118 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main(x_1098, x_1117, x_1086); +x_1118 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main(x_1098, x_1117, x_1086); 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; lean_object* x_1124; lean_object* x_1125; lean_object* x_1126; @@ -18979,7 +19326,7 @@ if (lean_is_exclusive(x_1138)) { x_1148 = lean_ctor_get(x_1144, 1); lean_inc(x_1148); lean_dec(x_1144); -x_1149 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__1(x_117, x_1145, x_1148); +x_1149 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__toPreterm___main___spec__1(x_117, x_1145, x_1148); if (lean_is_scalar(x_1147)) { x_1150 = lean_alloc_ctor(0, 2, 0); } else { @@ -19005,7 +19352,7 @@ if (lean_is_exclusive(x_1138)) { x_1153 = lean_ctor_get(x_1144, 1); lean_inc(x_1153); lean_dec(x_1144); -x_1154 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__2(x_117, x_1145, x_1153); +x_1154 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__toPreterm___main___spec__2(x_117, x_1145, x_1153); if (lean_is_scalar(x_1152)) { x_1155 = lean_alloc_ctor(0, 2, 0); } else { @@ -19031,7 +19378,7 @@ if (lean_is_exclusive(x_1138)) { x_1158 = lean_ctor_get(x_1144, 1); lean_inc(x_1158); lean_dec(x_1144); -x_1159 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__3(x_117, x_1145, x_1158); +x_1159 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__toPreterm___main___spec__3(x_117, x_1145, x_1158); if (lean_is_scalar(x_1157)) { x_1160 = lean_alloc_ctor(0, 2, 0); } else { @@ -19057,7 +19404,7 @@ if (lean_is_exclusive(x_1138)) { x_1163 = lean_ctor_get(x_1144, 1); lean_inc(x_1163); lean_dec(x_1144); -x_1164 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__4(x_117, x_1145, x_1163); +x_1164 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__toPreterm___main___spec__4(x_117, x_1145, x_1163); if (lean_is_scalar(x_1162)) { x_1165 = lean_alloc_ctor(0, 2, 0); } else { @@ -19087,7 +19434,7 @@ x_1169 = lean_ctor_get(x_1145, 0); lean_inc(x_1169); lean_dec(x_1145); x_1170 = l_Lean_mkConst(x_1169, x_1137); -x_1171 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__5(x_117, x_1170, x_1168); +x_1171 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__toPreterm___main___spec__5(x_117, x_1170, x_1168); if (lean_is_scalar(x_1167)) { x_1172 = lean_alloc_ctor(0, 2, 0); } else { @@ -19113,7 +19460,7 @@ if (lean_is_exclusive(x_1138)) { x_1175 = lean_ctor_get(x_1144, 1); lean_inc(x_1175); lean_dec(x_1144); -x_1176 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__6(x_117, x_1145, x_1175); +x_1176 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__toPreterm___main___spec__6(x_117, x_1145, x_1175); if (lean_is_scalar(x_1174)) { x_1177 = lean_alloc_ctor(0, 2, 0); } else { @@ -19139,7 +19486,7 @@ if (lean_is_exclusive(x_1138)) { x_1180 = lean_ctor_get(x_1144, 1); lean_inc(x_1180); lean_dec(x_1144); -x_1181 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__7(x_117, x_1145, x_1180); +x_1181 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__toPreterm___main___spec__7(x_117, x_1145, x_1180); if (lean_is_scalar(x_1179)) { x_1182 = lean_alloc_ctor(0, 2, 0); } else { @@ -19165,7 +19512,7 @@ if (lean_is_exclusive(x_1138)) { x_1185 = lean_ctor_get(x_1144, 1); lean_inc(x_1185); lean_dec(x_1144); -x_1186 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__8(x_117, x_1145, x_1185); +x_1186 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__toPreterm___main___spec__8(x_117, x_1145, x_1185); if (lean_is_scalar(x_1184)) { x_1187 = lean_alloc_ctor(0, 2, 0); } else { @@ -19191,7 +19538,7 @@ if (lean_is_exclusive(x_1138)) { x_1190 = lean_ctor_get(x_1144, 1); lean_inc(x_1190); lean_dec(x_1144); -x_1191 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__9(x_117, x_1145, x_1190); +x_1191 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__toPreterm___main___spec__9(x_117, x_1145, x_1190); if (lean_is_scalar(x_1189)) { x_1192 = lean_alloc_ctor(0, 2, 0); } else { @@ -19217,7 +19564,7 @@ if (lean_is_exclusive(x_1138)) { x_1195 = lean_ctor_get(x_1144, 1); lean_inc(x_1195); lean_dec(x_1144); -x_1196 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__10(x_117, x_1145, x_1195); +x_1196 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__toPreterm___main___spec__10(x_117, x_1145, x_1195); if (lean_is_scalar(x_1194)) { x_1197 = lean_alloc_ctor(0, 2, 0); } else { @@ -19243,7 +19590,7 @@ if (lean_is_exclusive(x_1138)) { x_1200 = lean_ctor_get(x_1144, 1); lean_inc(x_1200); lean_dec(x_1144); -x_1201 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__11(x_117, x_1145, x_1200); +x_1201 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__toPreterm___main___spec__11(x_117, x_1145, x_1200); if (lean_is_scalar(x_1199)) { x_1202 = lean_alloc_ctor(0, 2, 0); } else { @@ -19269,7 +19616,7 @@ if (lean_is_exclusive(x_1138)) { x_1205 = lean_ctor_get(x_1144, 1); lean_inc(x_1205); lean_dec(x_1144); -x_1206 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__12(x_117, x_1145, x_1205); +x_1206 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__toPreterm___main___spec__12(x_117, x_1145, x_1205); if (lean_is_scalar(x_1204)) { x_1207 = lean_alloc_ctor(0, 2, 0); } else { @@ -19295,7 +19642,7 @@ if (lean_is_exclusive(x_1138)) { x_1210 = lean_ctor_get(x_1144, 1); lean_inc(x_1210); lean_dec(x_1144); -x_1211 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__13(x_117, x_1145, x_1210); +x_1211 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__toPreterm___main___spec__13(x_117, x_1145, x_1210); if (lean_is_scalar(x_1209)) { x_1212 = lean_alloc_ctor(0, 2, 0); } else { @@ -19409,7 +19756,7 @@ x_1232 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_1232, 0, x_1231); x_1233 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_1233, 0, x_1232); -x_1234 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__3; +x_1234 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___closed__3; x_1235 = lean_alloc_ctor(8, 2, 0); lean_ctor_set(x_1235, 0, x_1234); lean_ctor_set(x_1235, 1, x_1233); @@ -19446,7 +19793,7 @@ x_1243 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_1243, 0, x_1242); x_1244 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_1244, 0, x_1243); -x_1245 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__3; +x_1245 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___closed__3; x_1246 = lean_alloc_ctor(8, 2, 0); lean_ctor_set(x_1246, 0, x_1245); lean_ctor_set(x_1246, 1, x_1244); @@ -19529,7 +19876,7 @@ x_1272 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_1272, 0, x_1271); x_1273 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_1273, 0, x_1272); -x_1274 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__3; +x_1274 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___closed__3; x_1275 = lean_alloc_ctor(8, 2, 0); lean_ctor_set(x_1275, 0, x_1274); lean_ctor_set(x_1275, 1, x_1273); @@ -19553,7 +19900,7 @@ lean_dec(x_1278); if (lean_obj_tag(x_1280) == 0) { lean_object* x_1281; lean_object* x_1282; -x_1281 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__5; +x_1281 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___closed__5; x_1282 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_1282, 0, x_1281); lean_ctor_set(x_1282, 1, x_3); @@ -19589,7 +19936,7 @@ lean_dec(x_1287); if (lean_obj_tag(x_1288) == 0) { lean_object* x_1289; lean_object* x_1290; -x_1289 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__6; +x_1289 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___closed__6; x_1290 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_1290, 0, x_1289); lean_ctor_set(x_1290, 1, x_3); @@ -19623,7 +19970,7 @@ x_1296 = lean_array_get(x_1294, x_4, x_1295); x_1297 = lean_unsigned_to_nat(2u); x_1298 = lean_array_get(x_1294, x_4, x_1297); lean_dec(x_4); -x_1299 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__1___boxed), 6, 3); +x_1299 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___lambda__1___boxed), 6, 3); lean_closure_set(x_1299, 0, x_117); lean_closure_set(x_1299, 1, x_1296); lean_closure_set(x_1299, 2, x_1298); @@ -19650,7 +19997,7 @@ x_1306 = lean_array_get(x_1304, x_4, x_1305); x_1307 = lean_unsigned_to_nat(2u); x_1308 = lean_array_get(x_1304, x_4, x_1307); lean_dec(x_4); -x_1309 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__2___boxed), 6, 3); +x_1309 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___lambda__2___boxed), 6, 3); lean_closure_set(x_1309, 0, x_117); lean_closure_set(x_1309, 1, x_1306); lean_closure_set(x_1309, 2, x_1308); @@ -19723,7 +20070,7 @@ x_1334 = lean_array_get(x_1330, x_4, x_1333); x_1335 = lean_unsigned_to_nat(6u); x_1336 = lean_array_get(x_1330, x_4, x_1335); lean_dec(x_4); -x_1337 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__3___boxed), 7, 4); +x_1337 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___lambda__3___boxed), 7, 4); lean_closure_set(x_1337, 0, x_117); lean_closure_set(x_1337, 1, x_1332); lean_closure_set(x_1337, 2, x_1334); @@ -19749,7 +20096,7 @@ x_1342 = l_Lean_stxInh; x_1343 = lean_unsigned_to_nat(0u); x_1344 = lean_array_get(x_1342, x_4, x_1343); lean_inc(x_2); -x_1345 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main(x_1344, x_2, x_3); +x_1345 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main(x_1344, x_2, x_3); if (lean_obj_tag(x_1345) == 0) { lean_object* x_1346; lean_object* x_1347; lean_object* x_1348; lean_object* x_1349; lean_object* x_1350; @@ -19761,7 +20108,7 @@ lean_dec(x_1345); x_1348 = lean_unsigned_to_nat(1u); x_1349 = lean_array_get(x_1342, x_4, x_1348); lean_dec(x_4); -x_1350 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main(x_1349, x_2, x_1347); +x_1350 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main(x_1349, x_2, x_1347); if (lean_obj_tag(x_1350) == 0) { lean_object* x_1351; lean_object* x_1352; lean_object* x_1353; lean_object* x_1354; lean_object* x_1355; @@ -19898,7 +20245,7 @@ lean_dec(x_1374); lean_dec(x_1373); lean_dec(x_1372); lean_dec(x_1366); -x_1377 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__7; +x_1377 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___closed__7; x_1378 = l_unreachable_x21___rarg(x_1377); x_5 = x_1378; goto block_94; @@ -19914,7 +20261,7 @@ lean_object* x_1380; lean_object* x_1381; lean_dec(x_1373); lean_dec(x_1372); lean_dec(x_1366); -x_1380 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__7; +x_1380 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___closed__7; x_1381 = l_unreachable_x21___rarg(x_1380); x_5 = x_1381; goto block_94; @@ -19929,7 +20276,7 @@ if (x_1382 == 0) lean_object* x_1383; lean_object* x_1384; lean_dec(x_1372); lean_dec(x_1366); -x_1383 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__7; +x_1383 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___closed__7; x_1384 = l_unreachable_x21___rarg(x_1383); x_5 = x_1384; goto block_94; @@ -19949,7 +20296,7 @@ if (x_1388 == 0) { lean_object* x_1389; lean_object* x_1390; lean_dec(x_1366); -x_1389 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__7; +x_1389 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___closed__7; x_1390 = l_unreachable_x21___rarg(x_1389); x_5 = x_1390; goto block_94; @@ -19999,7 +20346,7 @@ lean_dec(x_1369); lean_dec(x_1368); lean_dec(x_1367); lean_dec(x_1366); -x_1402 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__7; +x_1402 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___closed__7; x_1403 = l_unreachable_x21___rarg(x_1402); x_5 = x_1403; goto block_94; @@ -20013,7 +20360,7 @@ lean_dec(x_1369); lean_dec(x_1368); lean_dec(x_1367); lean_dec(x_1366); -x_1404 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__7; +x_1404 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___closed__7; x_1405 = l_unreachable_x21___rarg(x_1404); x_5 = x_1405; goto block_94; @@ -20026,7 +20373,7 @@ lean_dec(x_1369); lean_dec(x_1368); lean_dec(x_1367); lean_dec(x_1366); -x_1406 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__7; +x_1406 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___closed__7; x_1407 = l_unreachable_x21___rarg(x_1406); x_5 = x_1407; goto block_94; @@ -20038,7 +20385,7 @@ lean_object* x_1408; lean_object* x_1409; lean_dec(x_1368); lean_dec(x_1367); lean_dec(x_1366); -x_1408 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__7; +x_1408 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___closed__7; x_1409 = l_unreachable_x21___rarg(x_1408); x_5 = x_1409; goto block_94; @@ -20049,7 +20396,7 @@ else lean_object* x_1410; lean_object* x_1411; lean_dec(x_1367); lean_dec(x_1366); -x_1410 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__7; +x_1410 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___closed__7; x_1411 = l_unreachable_x21___rarg(x_1410); x_5 = x_1411; goto block_94; @@ -20112,7 +20459,7 @@ lean_dec(x_1433); x_1435 = l_Lean_Syntax_getArg(x_1434, x_1413); lean_dec(x_1434); lean_inc(x_2); -x_1436 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main(x_1435, x_2, x_3); +x_1436 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main(x_1435, x_2, x_3); if (lean_obj_tag(x_1436) == 0) { lean_object* x_1437; lean_object* x_1438; lean_object* x_1439; lean_object* x_1440; lean_object* x_1441; uint8_t x_1442; lean_object* x_1443; lean_object* x_1444; lean_object* x_1445; lean_object* x_1446; lean_object* x_1447; lean_object* x_1448; lean_object* x_1449; lean_object* x_1450; lean_object* x_1451; lean_object* x_1452; lean_object* x_1453; lean_object* x_1454; lean_object* x_1455; lean_object* x_1456; lean_object* x_1457; lean_object* x_1458; lean_object* x_1459; lean_object* x_1460; lean_object* x_1461; lean_object* x_1462; lean_object* x_1463; lean_object* x_1464; lean_object* x_1465; lean_object* x_1466; lean_object* x_1467; lean_object* x_1468; uint8_t 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; @@ -20235,7 +20582,7 @@ lean_ctor_set(x_1477, 7, x_1466); lean_ctor_set(x_1477, 8, x_1467); lean_ctor_set(x_1477, 9, x_1468); lean_ctor_set_uint8(x_1477, sizeof(void*)*10, x_1469); -x_1478 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main(x_1458, x_1477, x_1446); +x_1478 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main(x_1458, x_1477, x_1446); if (lean_obj_tag(x_1478) == 0) { lean_object* x_1479; lean_object* x_1480; lean_object* x_1481; lean_object* x_1482; lean_object* x_1483; lean_object* x_1484; lean_object* x_1485; lean_object* x_1486; @@ -20335,7 +20682,7 @@ lean_inc(x_1498); x_1499 = lean_ctor_get(x_1497, 1); lean_inc(x_1499); lean_dec(x_1497); -x_1500 = l___private_Init_Lean_Elab_Quotation_13__exprPlaceholder; +x_1500 = l___private_Init_Lean_Elab_Quotation_14__exprPlaceholder; x_1501 = 0; lean_inc_n(x_1496, 2); x_1502 = lean_local_ctx_mk_local_decl(x_1498, x_1496, x_1496, x_1500, x_1501); @@ -20444,7 +20791,7 @@ lean_ctor_set(x_1536, 7, x_1525); lean_ctor_set(x_1536, 8, x_1526); lean_ctor_set(x_1536, 9, x_1527); lean_ctor_set_uint8(x_1536, sizeof(void*)*10, x_1528); -x_1537 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main(x_1517, x_1536, x_1505); +x_1537 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main(x_1517, x_1536, x_1505); if (lean_obj_tag(x_1537) == 0) { lean_object* x_1538; lean_object* x_1539; lean_object* x_1540; lean_object* x_1541; lean_object* x_1542; lean_object* x_1543; lean_object* x_1544; lean_object* x_1545; @@ -20514,7 +20861,7 @@ lean_inc(x_1552); x_1553 = lean_ctor_get(x_1551, 1); lean_inc(x_1553); lean_dec(x_1551); -x_1554 = l___private_Init_Lean_Elab_Quotation_13__exprPlaceholder; +x_1554 = l___private_Init_Lean_Elab_Quotation_14__exprPlaceholder; x_1555 = 0; lean_inc_n(x_1550, 2); x_1556 = lean_local_ctx_mk_local_decl(x_1552, x_1550, x_1550, x_1554, x_1555); @@ -20623,7 +20970,7 @@ lean_ctor_set(x_1590, 7, x_1579); lean_ctor_set(x_1590, 8, x_1580); lean_ctor_set(x_1590, 9, x_1581); lean_ctor_set_uint8(x_1590, sizeof(void*)*10, x_1582); -x_1591 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main(x_1571, x_1590, x_1559); +x_1591 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main(x_1571, x_1590, x_1559); if (lean_obj_tag(x_1591) == 0) { lean_object* x_1592; lean_object* x_1593; lean_object* x_1594; lean_object* x_1595; lean_object* x_1596; lean_object* x_1597; lean_object* x_1598; lean_object* x_1599; @@ -20754,7 +21101,7 @@ if (lean_is_exclusive(x_1611)) { x_1621 = lean_ctor_get(x_1617, 1); lean_inc(x_1621); lean_dec(x_1617); -x_1622 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__1(x_117, x_1618, x_1621); +x_1622 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__toPreterm___main___spec__1(x_117, x_1618, x_1621); if (lean_is_scalar(x_1620)) { x_1623 = lean_alloc_ctor(0, 2, 0); } else { @@ -20780,7 +21127,7 @@ if (lean_is_exclusive(x_1611)) { x_1626 = lean_ctor_get(x_1617, 1); lean_inc(x_1626); lean_dec(x_1617); -x_1627 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__2(x_117, x_1618, x_1626); +x_1627 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__toPreterm___main___spec__2(x_117, x_1618, x_1626); if (lean_is_scalar(x_1625)) { x_1628 = lean_alloc_ctor(0, 2, 0); } else { @@ -20806,7 +21153,7 @@ if (lean_is_exclusive(x_1611)) { x_1631 = lean_ctor_get(x_1617, 1); lean_inc(x_1631); lean_dec(x_1617); -x_1632 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__3(x_117, x_1618, x_1631); +x_1632 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__toPreterm___main___spec__3(x_117, x_1618, x_1631); if (lean_is_scalar(x_1630)) { x_1633 = lean_alloc_ctor(0, 2, 0); } else { @@ -20832,7 +21179,7 @@ if (lean_is_exclusive(x_1611)) { x_1636 = lean_ctor_get(x_1617, 1); lean_inc(x_1636); lean_dec(x_1617); -x_1637 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__4(x_117, x_1618, x_1636); +x_1637 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__toPreterm___main___spec__4(x_117, x_1618, x_1636); if (lean_is_scalar(x_1635)) { x_1638 = lean_alloc_ctor(0, 2, 0); } else { @@ -20862,7 +21209,7 @@ x_1642 = lean_ctor_get(x_1618, 0); lean_inc(x_1642); lean_dec(x_1618); x_1643 = l_Lean_mkConst(x_1642, x_1610); -x_1644 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__5(x_117, x_1643, x_1641); +x_1644 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__toPreterm___main___spec__5(x_117, x_1643, x_1641); if (lean_is_scalar(x_1640)) { x_1645 = lean_alloc_ctor(0, 2, 0); } else { @@ -20888,7 +21235,7 @@ if (lean_is_exclusive(x_1611)) { x_1648 = lean_ctor_get(x_1617, 1); lean_inc(x_1648); lean_dec(x_1617); -x_1649 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__6(x_117, x_1618, x_1648); +x_1649 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__toPreterm___main___spec__6(x_117, x_1618, x_1648); if (lean_is_scalar(x_1647)) { x_1650 = lean_alloc_ctor(0, 2, 0); } else { @@ -20914,7 +21261,7 @@ if (lean_is_exclusive(x_1611)) { x_1653 = lean_ctor_get(x_1617, 1); lean_inc(x_1653); lean_dec(x_1617); -x_1654 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__7(x_117, x_1618, x_1653); +x_1654 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__toPreterm___main___spec__7(x_117, x_1618, x_1653); if (lean_is_scalar(x_1652)) { x_1655 = lean_alloc_ctor(0, 2, 0); } else { @@ -20940,7 +21287,7 @@ if (lean_is_exclusive(x_1611)) { x_1658 = lean_ctor_get(x_1617, 1); lean_inc(x_1658); lean_dec(x_1617); -x_1659 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__8(x_117, x_1618, x_1658); +x_1659 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__toPreterm___main___spec__8(x_117, x_1618, x_1658); if (lean_is_scalar(x_1657)) { x_1660 = lean_alloc_ctor(0, 2, 0); } else { @@ -20966,7 +21313,7 @@ if (lean_is_exclusive(x_1611)) { x_1663 = lean_ctor_get(x_1617, 1); lean_inc(x_1663); lean_dec(x_1617); -x_1664 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__9(x_117, x_1618, x_1663); +x_1664 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__toPreterm___main___spec__9(x_117, x_1618, x_1663); if (lean_is_scalar(x_1662)) { x_1665 = lean_alloc_ctor(0, 2, 0); } else { @@ -20992,7 +21339,7 @@ if (lean_is_exclusive(x_1611)) { x_1668 = lean_ctor_get(x_1617, 1); lean_inc(x_1668); lean_dec(x_1617); -x_1669 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__10(x_117, x_1618, x_1668); +x_1669 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__toPreterm___main___spec__10(x_117, x_1618, x_1668); if (lean_is_scalar(x_1667)) { x_1670 = lean_alloc_ctor(0, 2, 0); } else { @@ -21018,7 +21365,7 @@ if (lean_is_exclusive(x_1611)) { x_1673 = lean_ctor_get(x_1617, 1); lean_inc(x_1673); lean_dec(x_1617); -x_1674 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__11(x_117, x_1618, x_1673); +x_1674 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__toPreterm___main___spec__11(x_117, x_1618, x_1673); if (lean_is_scalar(x_1672)) { x_1675 = lean_alloc_ctor(0, 2, 0); } else { @@ -21044,7 +21391,7 @@ if (lean_is_exclusive(x_1611)) { x_1678 = lean_ctor_get(x_1617, 1); lean_inc(x_1678); lean_dec(x_1617); -x_1679 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__12(x_117, x_1618, x_1678); +x_1679 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__toPreterm___main___spec__12(x_117, x_1618, x_1678); if (lean_is_scalar(x_1677)) { x_1680 = lean_alloc_ctor(0, 2, 0); } else { @@ -21070,7 +21417,7 @@ if (lean_is_exclusive(x_1611)) { x_1683 = lean_ctor_get(x_1617, 1); lean_inc(x_1683); lean_dec(x_1617); -x_1684 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__13(x_117, x_1618, x_1683); +x_1684 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__toPreterm___main___spec__13(x_117, x_1618, x_1683); if (lean_is_scalar(x_1682)) { x_1685 = lean_alloc_ctor(0, 2, 0); } else { @@ -21203,7 +21550,7 @@ x_1709 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_1709, 0, x_1708); x_1710 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_1710, 0, x_1709); -x_1711 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__3; +x_1711 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___closed__3; x_1712 = lean_alloc_ctor(8, 2, 0); lean_ctor_set(x_1712, 0, x_1711); lean_ctor_set(x_1712, 1, x_1710); @@ -21247,7 +21594,7 @@ x_1721 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_1721, 0, x_1720); x_1722 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_1722, 0, x_1721); -x_1723 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__3; +x_1723 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___closed__3; x_1724 = lean_alloc_ctor(8, 2, 0); lean_ctor_set(x_1724, 0, x_1723); lean_ctor_set(x_1724, 1, x_1722); @@ -21337,7 +21684,7 @@ x_1751 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_1751, 0, x_1750); x_1752 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_1752, 0, x_1751); -x_1753 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__3; +x_1753 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___closed__3; x_1754 = lean_alloc_ctor(8, 2, 0); lean_ctor_set(x_1754, 0, x_1753); lean_ctor_set(x_1754, 1, x_1752); @@ -21361,7 +21708,7 @@ lean_dec(x_1757); if (lean_obj_tag(x_1759) == 0) { lean_object* x_1760; lean_object* x_1761; -x_1760 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__5; +x_1760 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___closed__5; x_1761 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_1761, 0, x_1760); lean_ctor_set(x_1761, 1, x_3); @@ -21397,7 +21744,7 @@ lean_dec(x_1766); if (lean_obj_tag(x_1767) == 0) { lean_object* x_1768; lean_object* x_1769; -x_1768 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__6; +x_1768 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___closed__6; x_1769 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_1769, 0, x_1768); lean_ctor_set(x_1769, 1, x_3); @@ -21431,7 +21778,7 @@ x_1775 = lean_array_get(x_1773, x_4, x_1774); x_1776 = lean_unsigned_to_nat(2u); x_1777 = lean_array_get(x_1773, x_4, x_1776); lean_dec(x_4); -x_1778 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__1___boxed), 6, 3); +x_1778 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___lambda__1___boxed), 6, 3); lean_closure_set(x_1778, 0, x_117); lean_closure_set(x_1778, 1, x_1775); lean_closure_set(x_1778, 2, x_1777); @@ -21458,7 +21805,7 @@ x_1785 = lean_array_get(x_1783, x_4, x_1784); x_1786 = lean_unsigned_to_nat(2u); x_1787 = lean_array_get(x_1783, x_4, x_1786); lean_dec(x_4); -x_1788 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__2___boxed), 6, 3); +x_1788 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___lambda__2___boxed), 6, 3); lean_closure_set(x_1788, 0, x_117); lean_closure_set(x_1788, 1, x_1785); lean_closure_set(x_1788, 2, x_1787); @@ -21531,7 +21878,7 @@ x_1813 = lean_array_get(x_1809, x_4, x_1812); x_1814 = lean_unsigned_to_nat(6u); x_1815 = lean_array_get(x_1809, x_4, x_1814); lean_dec(x_4); -x_1816 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__3___boxed), 7, 4); +x_1816 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___lambda__3___boxed), 7, 4); lean_closure_set(x_1816, 0, x_117); lean_closure_set(x_1816, 1, x_1811); lean_closure_set(x_1816, 2, x_1813); @@ -21557,7 +21904,7 @@ x_1821 = l_Lean_stxInh; x_1822 = lean_unsigned_to_nat(0u); x_1823 = lean_array_get(x_1821, x_4, x_1822); lean_inc(x_2); -x_1824 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main(x_1823, x_2, x_3); +x_1824 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main(x_1823, x_2, x_3); if (lean_obj_tag(x_1824) == 0) { lean_object* x_1825; lean_object* x_1826; lean_object* x_1827; lean_object* x_1828; lean_object* x_1829; @@ -21569,7 +21916,7 @@ lean_dec(x_1824); x_1827 = lean_unsigned_to_nat(1u); x_1828 = lean_array_get(x_1821, x_4, x_1827); lean_dec(x_4); -x_1829 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main(x_1828, x_2, x_1826); +x_1829 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main(x_1828, x_2, x_1826); if (lean_obj_tag(x_1829) == 0) { lean_object* x_1830; lean_object* x_1831; lean_object* x_1832; lean_object* x_1833; lean_object* x_1834; @@ -21706,7 +22053,7 @@ lean_dec(x_1853); lean_dec(x_1852); lean_dec(x_1851); lean_dec(x_1845); -x_1856 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__7; +x_1856 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___closed__7; x_1857 = l_unreachable_x21___rarg(x_1856); x_5 = x_1857; goto block_94; @@ -21722,7 +22069,7 @@ lean_object* x_1859; lean_object* x_1860; lean_dec(x_1852); lean_dec(x_1851); lean_dec(x_1845); -x_1859 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__7; +x_1859 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___closed__7; x_1860 = l_unreachable_x21___rarg(x_1859); x_5 = x_1860; goto block_94; @@ -21737,7 +22084,7 @@ if (x_1861 == 0) lean_object* x_1862; lean_object* x_1863; lean_dec(x_1851); lean_dec(x_1845); -x_1862 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__7; +x_1862 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___closed__7; x_1863 = l_unreachable_x21___rarg(x_1862); x_5 = x_1863; goto block_94; @@ -21757,7 +22104,7 @@ if (x_1867 == 0) { lean_object* x_1868; lean_object* x_1869; lean_dec(x_1845); -x_1868 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__7; +x_1868 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___closed__7; x_1869 = l_unreachable_x21___rarg(x_1868); x_5 = x_1869; goto block_94; @@ -21807,7 +22154,7 @@ lean_dec(x_1848); lean_dec(x_1847); lean_dec(x_1846); lean_dec(x_1845); -x_1881 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__7; +x_1881 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___closed__7; x_1882 = l_unreachable_x21___rarg(x_1881); x_5 = x_1882; goto block_94; @@ -21821,7 +22168,7 @@ lean_dec(x_1848); lean_dec(x_1847); lean_dec(x_1846); lean_dec(x_1845); -x_1883 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__7; +x_1883 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___closed__7; x_1884 = l_unreachable_x21___rarg(x_1883); x_5 = x_1884; goto block_94; @@ -21834,7 +22181,7 @@ lean_dec(x_1848); lean_dec(x_1847); lean_dec(x_1846); lean_dec(x_1845); -x_1885 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__7; +x_1885 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___closed__7; x_1886 = l_unreachable_x21___rarg(x_1885); x_5 = x_1886; goto block_94; @@ -21846,7 +22193,7 @@ lean_object* x_1887; lean_object* x_1888; lean_dec(x_1847); lean_dec(x_1846); lean_dec(x_1845); -x_1887 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__7; +x_1887 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___closed__7; x_1888 = l_unreachable_x21___rarg(x_1887); x_5 = x_1888; goto block_94; @@ -21857,7 +22204,7 @@ else lean_object* x_1889; lean_object* x_1890; lean_dec(x_1846); lean_dec(x_1845); -x_1889 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__7; +x_1889 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___closed__7; x_1890 = l_unreachable_x21___rarg(x_1889); x_5 = x_1890; goto block_94; @@ -21920,7 +22267,7 @@ lean_dec(x_1912); x_1914 = l_Lean_Syntax_getArg(x_1913, x_1892); lean_dec(x_1913); lean_inc(x_2); -x_1915 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main(x_1914, x_2, x_3); +x_1915 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main(x_1914, x_2, x_3); if (lean_obj_tag(x_1915) == 0) { lean_object* x_1916; lean_object* x_1917; lean_object* x_1918; lean_object* x_1919; lean_object* x_1920; uint8_t x_1921; lean_object* x_1922; lean_object* x_1923; lean_object* x_1924; lean_object* x_1925; lean_object* x_1926; lean_object* x_1927; lean_object* x_1928; lean_object* x_1929; lean_object* x_1930; lean_object* x_1931; lean_object* x_1932; lean_object* x_1933; lean_object* x_1934; lean_object* x_1935; lean_object* x_1936; lean_object* x_1937; lean_object* x_1938; lean_object* x_1939; lean_object* x_1940; lean_object* x_1941; lean_object* x_1942; lean_object* x_1943; lean_object* x_1944; lean_object* x_1945; lean_object* x_1946; lean_object* x_1947; uint8_t x_1948; lean_object* x_1949; lean_object* x_1950; lean_object* x_1951; lean_object* x_1952; lean_object* x_1953; lean_object* x_1954; lean_object* x_1955; lean_object* x_1956; lean_object* x_1957; @@ -22043,7 +22390,7 @@ lean_ctor_set(x_1956, 7, x_1945); lean_ctor_set(x_1956, 8, x_1946); lean_ctor_set(x_1956, 9, x_1947); lean_ctor_set_uint8(x_1956, sizeof(void*)*10, x_1948); -x_1957 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main(x_1937, x_1956, x_1925); +x_1957 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main(x_1937, x_1956, x_1925); if (lean_obj_tag(x_1957) == 0) { lean_object* x_1958; lean_object* x_1959; lean_object* x_1960; lean_object* x_1961; lean_object* x_1962; lean_object* x_1963; lean_object* x_1964; lean_object* x_1965; @@ -22143,7 +22490,7 @@ lean_inc(x_1977); x_1978 = lean_ctor_get(x_1976, 1); lean_inc(x_1978); lean_dec(x_1976); -x_1979 = l___private_Init_Lean_Elab_Quotation_13__exprPlaceholder; +x_1979 = l___private_Init_Lean_Elab_Quotation_14__exprPlaceholder; x_1980 = 0; lean_inc_n(x_1975, 2); x_1981 = lean_local_ctx_mk_local_decl(x_1977, x_1975, x_1975, x_1979, x_1980); @@ -22252,7 +22599,7 @@ lean_ctor_set(x_2015, 7, x_2004); lean_ctor_set(x_2015, 8, x_2005); lean_ctor_set(x_2015, 9, x_2006); lean_ctor_set_uint8(x_2015, sizeof(void*)*10, x_2007); -x_2016 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main(x_1996, x_2015, x_1984); +x_2016 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main(x_1996, x_2015, x_1984); if (lean_obj_tag(x_2016) == 0) { lean_object* x_2017; lean_object* x_2018; lean_object* x_2019; lean_object* x_2020; lean_object* x_2021; lean_object* x_2022; lean_object* x_2023; lean_object* x_2024; @@ -22322,7 +22669,7 @@ lean_inc(x_2031); x_2032 = lean_ctor_get(x_2030, 1); lean_inc(x_2032); lean_dec(x_2030); -x_2033 = l___private_Init_Lean_Elab_Quotation_13__exprPlaceholder; +x_2033 = l___private_Init_Lean_Elab_Quotation_14__exprPlaceholder; x_2034 = 0; lean_inc_n(x_2029, 2); x_2035 = lean_local_ctx_mk_local_decl(x_2031, x_2029, x_2029, x_2033, x_2034); @@ -22431,7 +22778,7 @@ lean_ctor_set(x_2069, 7, x_2058); lean_ctor_set(x_2069, 8, x_2059); lean_ctor_set(x_2069, 9, x_2060); lean_ctor_set_uint8(x_2069, sizeof(void*)*10, x_2061); -x_2070 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main(x_2050, x_2069, x_2038); +x_2070 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main(x_2050, x_2069, x_2038); if (lean_obj_tag(x_2070) == 0) { lean_object* x_2071; lean_object* x_2072; lean_object* x_2073; lean_object* x_2074; lean_object* x_2075; lean_object* x_2076; lean_object* x_2077; lean_object* x_2078; @@ -22562,7 +22909,7 @@ if (lean_is_exclusive(x_2090)) { x_2100 = lean_ctor_get(x_2096, 1); lean_inc(x_2100); lean_dec(x_2096); -x_2101 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__1(x_117, x_2097, x_2100); +x_2101 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__toPreterm___main___spec__1(x_117, x_2097, x_2100); if (lean_is_scalar(x_2099)) { x_2102 = lean_alloc_ctor(0, 2, 0); } else { @@ -22588,7 +22935,7 @@ if (lean_is_exclusive(x_2090)) { x_2105 = lean_ctor_get(x_2096, 1); lean_inc(x_2105); lean_dec(x_2096); -x_2106 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__2(x_117, x_2097, x_2105); +x_2106 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__toPreterm___main___spec__2(x_117, x_2097, x_2105); if (lean_is_scalar(x_2104)) { x_2107 = lean_alloc_ctor(0, 2, 0); } else { @@ -22614,7 +22961,7 @@ if (lean_is_exclusive(x_2090)) { x_2110 = lean_ctor_get(x_2096, 1); lean_inc(x_2110); lean_dec(x_2096); -x_2111 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__3(x_117, x_2097, x_2110); +x_2111 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__toPreterm___main___spec__3(x_117, x_2097, x_2110); if (lean_is_scalar(x_2109)) { x_2112 = lean_alloc_ctor(0, 2, 0); } else { @@ -22640,7 +22987,7 @@ if (lean_is_exclusive(x_2090)) { x_2115 = lean_ctor_get(x_2096, 1); lean_inc(x_2115); lean_dec(x_2096); -x_2116 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__4(x_117, x_2097, x_2115); +x_2116 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__toPreterm___main___spec__4(x_117, x_2097, x_2115); if (lean_is_scalar(x_2114)) { x_2117 = lean_alloc_ctor(0, 2, 0); } else { @@ -22670,7 +23017,7 @@ x_2121 = lean_ctor_get(x_2097, 0); lean_inc(x_2121); lean_dec(x_2097); x_2122 = l_Lean_mkConst(x_2121, x_2089); -x_2123 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__5(x_117, x_2122, x_2120); +x_2123 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__toPreterm___main___spec__5(x_117, x_2122, x_2120); if (lean_is_scalar(x_2119)) { x_2124 = lean_alloc_ctor(0, 2, 0); } else { @@ -22696,7 +23043,7 @@ if (lean_is_exclusive(x_2090)) { x_2127 = lean_ctor_get(x_2096, 1); lean_inc(x_2127); lean_dec(x_2096); -x_2128 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__6(x_117, x_2097, x_2127); +x_2128 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__toPreterm___main___spec__6(x_117, x_2097, x_2127); if (lean_is_scalar(x_2126)) { x_2129 = lean_alloc_ctor(0, 2, 0); } else { @@ -22722,7 +23069,7 @@ if (lean_is_exclusive(x_2090)) { x_2132 = lean_ctor_get(x_2096, 1); lean_inc(x_2132); lean_dec(x_2096); -x_2133 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__7(x_117, x_2097, x_2132); +x_2133 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__toPreterm___main___spec__7(x_117, x_2097, x_2132); if (lean_is_scalar(x_2131)) { x_2134 = lean_alloc_ctor(0, 2, 0); } else { @@ -22748,7 +23095,7 @@ if (lean_is_exclusive(x_2090)) { x_2137 = lean_ctor_get(x_2096, 1); lean_inc(x_2137); lean_dec(x_2096); -x_2138 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__8(x_117, x_2097, x_2137); +x_2138 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__toPreterm___main___spec__8(x_117, x_2097, x_2137); if (lean_is_scalar(x_2136)) { x_2139 = lean_alloc_ctor(0, 2, 0); } else { @@ -22774,7 +23121,7 @@ if (lean_is_exclusive(x_2090)) { x_2142 = lean_ctor_get(x_2096, 1); lean_inc(x_2142); lean_dec(x_2096); -x_2143 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__9(x_117, x_2097, x_2142); +x_2143 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__toPreterm___main___spec__9(x_117, x_2097, x_2142); if (lean_is_scalar(x_2141)) { x_2144 = lean_alloc_ctor(0, 2, 0); } else { @@ -22800,7 +23147,7 @@ if (lean_is_exclusive(x_2090)) { x_2147 = lean_ctor_get(x_2096, 1); lean_inc(x_2147); lean_dec(x_2096); -x_2148 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__10(x_117, x_2097, x_2147); +x_2148 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__toPreterm___main___spec__10(x_117, x_2097, x_2147); if (lean_is_scalar(x_2146)) { x_2149 = lean_alloc_ctor(0, 2, 0); } else { @@ -22826,7 +23173,7 @@ if (lean_is_exclusive(x_2090)) { x_2152 = lean_ctor_get(x_2096, 1); lean_inc(x_2152); lean_dec(x_2096); -x_2153 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__11(x_117, x_2097, x_2152); +x_2153 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__toPreterm___main___spec__11(x_117, x_2097, x_2152); if (lean_is_scalar(x_2151)) { x_2154 = lean_alloc_ctor(0, 2, 0); } else { @@ -22852,7 +23199,7 @@ if (lean_is_exclusive(x_2090)) { x_2157 = lean_ctor_get(x_2096, 1); lean_inc(x_2157); lean_dec(x_2096); -x_2158 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__12(x_117, x_2097, x_2157); +x_2158 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__toPreterm___main___spec__12(x_117, x_2097, x_2157); if (lean_is_scalar(x_2156)) { x_2159 = lean_alloc_ctor(0, 2, 0); } else { @@ -22878,7 +23225,7 @@ if (lean_is_exclusive(x_2090)) { x_2162 = lean_ctor_get(x_2096, 1); lean_inc(x_2162); lean_dec(x_2096); -x_2163 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__13(x_117, x_2097, x_2162); +x_2163 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__toPreterm___main___spec__13(x_117, x_2097, x_2162); if (lean_is_scalar(x_2161)) { x_2164 = lean_alloc_ctor(0, 2, 0); } else { @@ -23030,7 +23377,7 @@ x_2193 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2193, 0, x_2192); x_2194 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2194, 0, x_2193); -x_2195 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__3; +x_2195 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___closed__3; x_2196 = lean_alloc_ctor(8, 2, 0); lean_ctor_set(x_2196, 0, x_2195); lean_ctor_set(x_2196, 1, x_2194); @@ -23081,7 +23428,7 @@ x_2206 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2206, 0, x_2205); x_2207 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2207, 0, x_2206); -x_2208 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__3; +x_2208 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___closed__3; x_2209 = lean_alloc_ctor(8, 2, 0); lean_ctor_set(x_2209, 0, x_2208); lean_ctor_set(x_2209, 1, x_2207); @@ -23177,7 +23524,7 @@ x_2237 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2237, 0, x_2236); x_2238 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2238, 0, x_2237); -x_2239 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__3; +x_2239 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___closed__3; x_2240 = lean_alloc_ctor(8, 2, 0); lean_ctor_set(x_2240, 0, x_2239); lean_ctor_set(x_2240, 1, x_2238); @@ -23201,7 +23548,7 @@ lean_dec(x_2243); if (lean_obj_tag(x_2245) == 0) { lean_object* x_2246; lean_object* x_2247; -x_2246 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__5; +x_2246 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___closed__5; x_2247 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_2247, 0, x_2246); lean_ctor_set(x_2247, 1, x_3); @@ -23237,7 +23584,7 @@ lean_dec(x_2252); if (lean_obj_tag(x_2253) == 0) { lean_object* x_2254; lean_object* x_2255; -x_2254 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__6; +x_2254 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___closed__6; x_2255 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_2255, 0, x_2254); lean_ctor_set(x_2255, 1, x_3); @@ -23271,7 +23618,7 @@ x_2261 = lean_array_get(x_2259, x_4, x_2260); x_2262 = lean_unsigned_to_nat(2u); x_2263 = lean_array_get(x_2259, x_4, x_2262); lean_dec(x_4); -x_2264 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__1___boxed), 6, 3); +x_2264 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___lambda__1___boxed), 6, 3); lean_closure_set(x_2264, 0, x_117); lean_closure_set(x_2264, 1, x_2261); lean_closure_set(x_2264, 2, x_2263); @@ -23298,7 +23645,7 @@ x_2271 = lean_array_get(x_2269, x_4, x_2270); x_2272 = lean_unsigned_to_nat(2u); x_2273 = lean_array_get(x_2269, x_4, x_2272); lean_dec(x_4); -x_2274 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__2___boxed), 6, 3); +x_2274 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___lambda__2___boxed), 6, 3); lean_closure_set(x_2274, 0, x_117); lean_closure_set(x_2274, 1, x_2271); lean_closure_set(x_2274, 2, x_2273); @@ -23371,7 +23718,7 @@ x_2299 = lean_array_get(x_2295, x_4, x_2298); x_2300 = lean_unsigned_to_nat(6u); x_2301 = lean_array_get(x_2295, x_4, x_2300); lean_dec(x_4); -x_2302 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__3___boxed), 7, 4); +x_2302 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___lambda__3___boxed), 7, 4); lean_closure_set(x_2302, 0, x_117); lean_closure_set(x_2302, 1, x_2297); lean_closure_set(x_2302, 2, x_2299); @@ -23397,7 +23744,7 @@ x_2307 = l_Lean_stxInh; x_2308 = lean_unsigned_to_nat(0u); x_2309 = lean_array_get(x_2307, x_4, x_2308); lean_inc(x_2); -x_2310 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main(x_2309, x_2, x_3); +x_2310 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main(x_2309, x_2, x_3); if (lean_obj_tag(x_2310) == 0) { lean_object* x_2311; lean_object* x_2312; lean_object* x_2313; lean_object* x_2314; lean_object* x_2315; @@ -23409,7 +23756,7 @@ lean_dec(x_2310); x_2313 = lean_unsigned_to_nat(1u); x_2314 = lean_array_get(x_2307, x_4, x_2313); lean_dec(x_4); -x_2315 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main(x_2314, x_2, x_2312); +x_2315 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main(x_2314, x_2, x_2312); if (lean_obj_tag(x_2315) == 0) { lean_object* x_2316; lean_object* x_2317; lean_object* x_2318; lean_object* x_2319; lean_object* x_2320; @@ -23546,7 +23893,7 @@ lean_dec(x_2339); lean_dec(x_2338); lean_dec(x_2337); lean_dec(x_2331); -x_2342 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__7; +x_2342 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___closed__7; x_2343 = l_unreachable_x21___rarg(x_2342); x_5 = x_2343; goto block_94; @@ -23562,7 +23909,7 @@ lean_object* x_2345; lean_object* x_2346; lean_dec(x_2338); lean_dec(x_2337); lean_dec(x_2331); -x_2345 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__7; +x_2345 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___closed__7; x_2346 = l_unreachable_x21___rarg(x_2345); x_5 = x_2346; goto block_94; @@ -23577,7 +23924,7 @@ if (x_2347 == 0) lean_object* x_2348; lean_object* x_2349; lean_dec(x_2337); lean_dec(x_2331); -x_2348 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__7; +x_2348 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___closed__7; x_2349 = l_unreachable_x21___rarg(x_2348); x_5 = x_2349; goto block_94; @@ -23597,7 +23944,7 @@ if (x_2353 == 0) { lean_object* x_2354; lean_object* x_2355; lean_dec(x_2331); -x_2354 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__7; +x_2354 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___closed__7; x_2355 = l_unreachable_x21___rarg(x_2354); x_5 = x_2355; goto block_94; @@ -23647,7 +23994,7 @@ lean_dec(x_2334); lean_dec(x_2333); lean_dec(x_2332); lean_dec(x_2331); -x_2367 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__7; +x_2367 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___closed__7; x_2368 = l_unreachable_x21___rarg(x_2367); x_5 = x_2368; goto block_94; @@ -23661,7 +24008,7 @@ lean_dec(x_2334); lean_dec(x_2333); lean_dec(x_2332); lean_dec(x_2331); -x_2369 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__7; +x_2369 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___closed__7; x_2370 = l_unreachable_x21___rarg(x_2369); x_5 = x_2370; goto block_94; @@ -23674,7 +24021,7 @@ lean_dec(x_2334); lean_dec(x_2333); lean_dec(x_2332); lean_dec(x_2331); -x_2371 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__7; +x_2371 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___closed__7; x_2372 = l_unreachable_x21___rarg(x_2371); x_5 = x_2372; goto block_94; @@ -23686,7 +24033,7 @@ lean_object* x_2373; lean_object* x_2374; lean_dec(x_2333); lean_dec(x_2332); lean_dec(x_2331); -x_2373 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__7; +x_2373 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___closed__7; x_2374 = l_unreachable_x21___rarg(x_2373); x_5 = x_2374; goto block_94; @@ -23697,7 +24044,7 @@ else lean_object* x_2375; lean_object* x_2376; lean_dec(x_2332); lean_dec(x_2331); -x_2375 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__7; +x_2375 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___closed__7; x_2376 = l_unreachable_x21___rarg(x_2375); x_5 = x_2376; goto block_94; @@ -23760,7 +24107,7 @@ lean_dec(x_2398); x_2400 = l_Lean_Syntax_getArg(x_2399, x_2378); lean_dec(x_2399); lean_inc(x_2); -x_2401 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main(x_2400, x_2, x_3); +x_2401 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main(x_2400, x_2, x_3); if (lean_obj_tag(x_2401) == 0) { lean_object* x_2402; lean_object* x_2403; lean_object* x_2404; lean_object* x_2405; lean_object* x_2406; uint8_t x_2407; lean_object* x_2408; lean_object* x_2409; lean_object* x_2410; lean_object* x_2411; lean_object* x_2412; lean_object* x_2413; lean_object* x_2414; lean_object* x_2415; lean_object* x_2416; lean_object* x_2417; lean_object* x_2418; lean_object* x_2419; lean_object* x_2420; lean_object* x_2421; lean_object* x_2422; lean_object* x_2423; lean_object* x_2424; lean_object* x_2425; lean_object* x_2426; lean_object* x_2427; lean_object* x_2428; lean_object* x_2429; lean_object* x_2430; lean_object* x_2431; lean_object* x_2432; lean_object* x_2433; uint8_t x_2434; lean_object* x_2435; lean_object* x_2436; lean_object* x_2437; lean_object* x_2438; lean_object* x_2439; lean_object* x_2440; lean_object* x_2441; lean_object* x_2442; lean_object* x_2443; @@ -23883,7 +24230,7 @@ lean_ctor_set(x_2442, 7, x_2431); lean_ctor_set(x_2442, 8, x_2432); lean_ctor_set(x_2442, 9, x_2433); lean_ctor_set_uint8(x_2442, sizeof(void*)*10, x_2434); -x_2443 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main(x_2423, x_2442, x_2411); +x_2443 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main(x_2423, x_2442, x_2411); if (lean_obj_tag(x_2443) == 0) { lean_object* x_2444; lean_object* x_2445; lean_object* x_2446; lean_object* x_2447; lean_object* x_2448; lean_object* x_2449; lean_object* x_2450; lean_object* x_2451; @@ -23983,7 +24330,7 @@ lean_inc(x_2463); x_2464 = lean_ctor_get(x_2462, 1); lean_inc(x_2464); lean_dec(x_2462); -x_2465 = l___private_Init_Lean_Elab_Quotation_13__exprPlaceholder; +x_2465 = l___private_Init_Lean_Elab_Quotation_14__exprPlaceholder; x_2466 = 0; lean_inc_n(x_2461, 2); x_2467 = lean_local_ctx_mk_local_decl(x_2463, x_2461, x_2461, x_2465, x_2466); @@ -24092,7 +24439,7 @@ lean_ctor_set(x_2501, 7, x_2490); lean_ctor_set(x_2501, 8, x_2491); lean_ctor_set(x_2501, 9, x_2492); lean_ctor_set_uint8(x_2501, sizeof(void*)*10, x_2493); -x_2502 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main(x_2482, x_2501, x_2470); +x_2502 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main(x_2482, x_2501, x_2470); if (lean_obj_tag(x_2502) == 0) { lean_object* x_2503; lean_object* x_2504; lean_object* x_2505; lean_object* x_2506; lean_object* x_2507; lean_object* x_2508; lean_object* x_2509; lean_object* x_2510; @@ -24162,7 +24509,7 @@ lean_inc(x_2517); x_2518 = lean_ctor_get(x_2516, 1); lean_inc(x_2518); lean_dec(x_2516); -x_2519 = l___private_Init_Lean_Elab_Quotation_13__exprPlaceholder; +x_2519 = l___private_Init_Lean_Elab_Quotation_14__exprPlaceholder; x_2520 = 0; lean_inc_n(x_2515, 2); x_2521 = lean_local_ctx_mk_local_decl(x_2517, x_2515, x_2515, x_2519, x_2520); @@ -24271,7 +24618,7 @@ lean_ctor_set(x_2555, 7, x_2544); lean_ctor_set(x_2555, 8, x_2545); lean_ctor_set(x_2555, 9, x_2546); lean_ctor_set_uint8(x_2555, sizeof(void*)*10, x_2547); -x_2556 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main(x_2536, x_2555, x_2524); +x_2556 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main(x_2536, x_2555, x_2524); if (lean_obj_tag(x_2556) == 0) { lean_object* x_2557; lean_object* x_2558; lean_object* x_2559; lean_object* x_2560; lean_object* x_2561; lean_object* x_2562; lean_object* x_2563; lean_object* x_2564; @@ -24402,7 +24749,7 @@ if (lean_is_exclusive(x_2576)) { x_2586 = lean_ctor_get(x_2582, 1); lean_inc(x_2586); lean_dec(x_2582); -x_2587 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__1(x_117, x_2583, x_2586); +x_2587 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__toPreterm___main___spec__1(x_117, x_2583, x_2586); if (lean_is_scalar(x_2585)) { x_2588 = lean_alloc_ctor(0, 2, 0); } else { @@ -24428,7 +24775,7 @@ if (lean_is_exclusive(x_2576)) { x_2591 = lean_ctor_get(x_2582, 1); lean_inc(x_2591); lean_dec(x_2582); -x_2592 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__2(x_117, x_2583, x_2591); +x_2592 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__toPreterm___main___spec__2(x_117, x_2583, x_2591); if (lean_is_scalar(x_2590)) { x_2593 = lean_alloc_ctor(0, 2, 0); } else { @@ -24454,7 +24801,7 @@ if (lean_is_exclusive(x_2576)) { x_2596 = lean_ctor_get(x_2582, 1); lean_inc(x_2596); lean_dec(x_2582); -x_2597 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__3(x_117, x_2583, x_2596); +x_2597 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__toPreterm___main___spec__3(x_117, x_2583, x_2596); if (lean_is_scalar(x_2595)) { x_2598 = lean_alloc_ctor(0, 2, 0); } else { @@ -24480,7 +24827,7 @@ if (lean_is_exclusive(x_2576)) { x_2601 = lean_ctor_get(x_2582, 1); lean_inc(x_2601); lean_dec(x_2582); -x_2602 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__4(x_117, x_2583, x_2601); +x_2602 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__toPreterm___main___spec__4(x_117, x_2583, x_2601); if (lean_is_scalar(x_2600)) { x_2603 = lean_alloc_ctor(0, 2, 0); } else { @@ -24510,7 +24857,7 @@ x_2607 = lean_ctor_get(x_2583, 0); lean_inc(x_2607); lean_dec(x_2583); x_2608 = l_Lean_mkConst(x_2607, x_2575); -x_2609 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__5(x_117, x_2608, x_2606); +x_2609 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__toPreterm___main___spec__5(x_117, x_2608, x_2606); if (lean_is_scalar(x_2605)) { x_2610 = lean_alloc_ctor(0, 2, 0); } else { @@ -24536,7 +24883,7 @@ if (lean_is_exclusive(x_2576)) { x_2613 = lean_ctor_get(x_2582, 1); lean_inc(x_2613); lean_dec(x_2582); -x_2614 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__6(x_117, x_2583, x_2613); +x_2614 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__toPreterm___main___spec__6(x_117, x_2583, x_2613); if (lean_is_scalar(x_2612)) { x_2615 = lean_alloc_ctor(0, 2, 0); } else { @@ -24562,7 +24909,7 @@ if (lean_is_exclusive(x_2576)) { x_2618 = lean_ctor_get(x_2582, 1); lean_inc(x_2618); lean_dec(x_2582); -x_2619 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__7(x_117, x_2583, x_2618); +x_2619 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__toPreterm___main___spec__7(x_117, x_2583, x_2618); if (lean_is_scalar(x_2617)) { x_2620 = lean_alloc_ctor(0, 2, 0); } else { @@ -24588,7 +24935,7 @@ if (lean_is_exclusive(x_2576)) { x_2623 = lean_ctor_get(x_2582, 1); lean_inc(x_2623); lean_dec(x_2582); -x_2624 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__8(x_117, x_2583, x_2623); +x_2624 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__toPreterm___main___spec__8(x_117, x_2583, x_2623); if (lean_is_scalar(x_2622)) { x_2625 = lean_alloc_ctor(0, 2, 0); } else { @@ -24614,7 +24961,7 @@ if (lean_is_exclusive(x_2576)) { x_2628 = lean_ctor_get(x_2582, 1); lean_inc(x_2628); lean_dec(x_2582); -x_2629 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__9(x_117, x_2583, x_2628); +x_2629 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__toPreterm___main___spec__9(x_117, x_2583, x_2628); if (lean_is_scalar(x_2627)) { x_2630 = lean_alloc_ctor(0, 2, 0); } else { @@ -24640,7 +24987,7 @@ if (lean_is_exclusive(x_2576)) { x_2633 = lean_ctor_get(x_2582, 1); lean_inc(x_2633); lean_dec(x_2582); -x_2634 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__10(x_117, x_2583, x_2633); +x_2634 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__toPreterm___main___spec__10(x_117, x_2583, x_2633); if (lean_is_scalar(x_2632)) { x_2635 = lean_alloc_ctor(0, 2, 0); } else { @@ -24666,7 +25013,7 @@ if (lean_is_exclusive(x_2576)) { x_2638 = lean_ctor_get(x_2582, 1); lean_inc(x_2638); lean_dec(x_2582); -x_2639 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__11(x_117, x_2583, x_2638); +x_2639 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__toPreterm___main___spec__11(x_117, x_2583, x_2638); if (lean_is_scalar(x_2637)) { x_2640 = lean_alloc_ctor(0, 2, 0); } else { @@ -24692,7 +25039,7 @@ if (lean_is_exclusive(x_2576)) { x_2643 = lean_ctor_get(x_2582, 1); lean_inc(x_2643); lean_dec(x_2582); -x_2644 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__12(x_117, x_2583, x_2643); +x_2644 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__toPreterm___main___spec__12(x_117, x_2583, x_2643); if (lean_is_scalar(x_2642)) { x_2645 = lean_alloc_ctor(0, 2, 0); } else { @@ -24718,7 +25065,7 @@ if (lean_is_exclusive(x_2576)) { x_2648 = lean_ctor_get(x_2582, 1); lean_inc(x_2648); lean_dec(x_2582); -x_2649 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__13(x_117, x_2583, x_2648); +x_2649 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__toPreterm___main___spec__13(x_117, x_2583, x_2648); if (lean_is_scalar(x_2647)) { x_2650 = lean_alloc_ctor(0, 2, 0); } else { @@ -24837,7 +25184,7 @@ x_7 = lean_ctor_get(x_5, 1); lean_inc(x_7); lean_dec(x_5); lean_inc(x_2); -x_8 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main(x_7, x_2, x_3); +x_8 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main(x_7, x_2, x_3); if (lean_obj_tag(x_8) == 0) { lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; uint8_t x_19; @@ -24852,7 +25199,7 @@ lean_inc(x_12); x_13 = lean_ctor_get(x_11, 1); lean_inc(x_13); lean_dec(x_11); -x_14 = l___private_Init_Lean_Elab_Quotation_13__exprPlaceholder; +x_14 = l___private_Init_Lean_Elab_Quotation_14__exprPlaceholder; lean_inc_n(x_6, 2); x_15 = lean_local_ctx_mk_let_decl(x_12, x_6, x_6, x_14, x_9); x_16 = l_Lean_stxInh; @@ -24872,7 +25219,7 @@ x_22 = lean_ctor_get(x_20, 1); lean_dec(x_22); lean_inc(x_15); lean_ctor_set(x_20, 1, x_15); -x_23 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main(x_18, x_2, x_13); +x_23 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main(x_18, x_2, x_13); if (lean_obj_tag(x_23) == 0) { uint8_t x_24; @@ -24955,7 +25302,7 @@ lean_ctor_set(x_45, 2, x_42); lean_ctor_set(x_45, 3, x_43); lean_ctor_set(x_45, 4, x_44); lean_ctor_set(x_2, 0, x_45); -x_46 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main(x_18, x_2, x_13); +x_46 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main(x_18, x_2, x_13); if (lean_obj_tag(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; @@ -25081,7 +25428,7 @@ lean_ctor_set(x_76, 7, x_66); lean_ctor_set(x_76, 8, x_67); lean_ctor_set(x_76, 9, x_68); lean_ctor_set_uint8(x_76, sizeof(void*)*10, x_69); -x_77 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main(x_18, x_76, x_13); +x_77 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main(x_18, x_76, x_13); if (lean_obj_tag(x_77) == 0) { lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; @@ -25176,7 +25523,7 @@ x_99 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_99, 0, x_98); x_100 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_100, 0, x_99); -x_101 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__3; +x_101 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___closed__3; x_102 = lean_alloc_ctor(8, 2, 0); lean_ctor_set(x_102, 0, x_101); lean_ctor_set(x_102, 1, x_100); @@ -25185,38 +25532,38 @@ return x_103; } } } -lean_object* l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_7; -x_7 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6); +x_7 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6); lean_dec(x_5); return x_7; } } -lean_object* l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +lean_object* l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { lean_object* x_7; -x_7 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__2(x_1, x_2, x_3, x_4, x_5, x_6); +x_7 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___lambda__2(x_1, x_2, x_3, x_4, x_5, x_6); lean_dec(x_5); return x_7; } } -lean_object* l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +lean_object* l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___lambda__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { lean_object* x_8; -x_8 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__3(x_1, x_2, x_3, x_4, x_5, x_6, x_7); +x_8 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___lambda__3(x_1, x_2, x_3, x_4, x_5, x_6, x_7); lean_dec(x_6); return x_8; } } -lean_object* l___private_Init_Lean_Elab_Quotation_14__toPreterm(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Init_Lean_Elab_Quotation_15__toPreterm(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main(x_1, x_2, x_3); +x_4 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main(x_1, x_2, x_3); return x_4; } } @@ -25275,7 +25622,7 @@ return x_20; } } } -lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__oldRunTermElabM___spec__1(lean_object* x_1, lean_object* x_2) { +lean_object* l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_16__oldRunTermElabM___spec__1(lean_object* x_1, lean_object* x_2) { _start: { if (lean_obj_tag(x_2) == 0) @@ -25290,7 +25637,7 @@ lean_inc(x_3); x_4 = lean_ctor_get(x_2, 1); lean_inc(x_4); lean_dec(x_2); -x_5 = l___private_Init_Lean_Elab_Quotation_13__exprPlaceholder; +x_5 = l___private_Init_Lean_Elab_Quotation_14__exprPlaceholder; x_6 = 0; lean_inc(x_3); x_7 = lean_local_ctx_mk_local_decl(x_1, x_3, x_3, x_5, x_6); @@ -25300,7 +25647,7 @@ goto _start; } } } -lean_object* l_List_map___main___at___private_Init_Lean_Elab_Quotation_15__oldRunTermElabM___spec__2(lean_object* x_1, lean_object* x_2) { +lean_object* l_List_map___main___at___private_Init_Lean_Elab_Quotation_16__oldRunTermElabM___spec__2(lean_object* x_1, lean_object* x_2) { _start: { if (lean_obj_tag(x_2) == 0) @@ -25323,7 +25670,7 @@ lean_inc(x_1); x_7 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_7, 0, x_5); lean_ctor_set(x_7, 1, x_1); -x_8 = l_List_map___main___at___private_Init_Lean_Elab_Quotation_15__oldRunTermElabM___spec__2(x_1, x_6); +x_8 = l_List_map___main___at___private_Init_Lean_Elab_Quotation_16__oldRunTermElabM___spec__2(x_1, x_6); lean_ctor_set(x_2, 1, x_8); lean_ctor_set(x_2, 0, x_7); return x_2; @@ -25340,7 +25687,7 @@ lean_inc(x_1); x_11 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_11, 0, x_9); lean_ctor_set(x_11, 1, x_1); -x_12 = l_List_map___main___at___private_Init_Lean_Elab_Quotation_15__oldRunTermElabM___spec__2(x_1, x_10); +x_12 = l_List_map___main___at___private_Init_Lean_Elab_Quotation_16__oldRunTermElabM___spec__2(x_1, x_10); x_13 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_13, 0, x_11); lean_ctor_set(x_13, 1, x_12); @@ -25349,7 +25696,7 @@ return x_13; } } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_15__oldRunTermElabM___rarg___closed__1() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_16__oldRunTermElabM___rarg___closed__1() { _start: { lean_object* x_1; lean_object* x_2; @@ -25358,7 +25705,7 @@ x_2 = lean_mk_empty_local_ctx(x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_15__oldRunTermElabM___rarg___closed__2() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_16__oldRunTermElabM___rarg___closed__2() { _start: { lean_object* x_1; lean_object* x_2; @@ -25367,7 +25714,7 @@ x_2 = l_Lean_FileMap_ofString(x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_15__oldRunTermElabM___rarg___closed__3() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_16__oldRunTermElabM___rarg___closed__3() { _start: { lean_object* x_1; @@ -25375,7 +25722,7 @@ x_1 = lean_mk_string("foo"); return x_1; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_15__oldRunTermElabM___rarg___closed__4() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_16__oldRunTermElabM___rarg___closed__4() { _start: { lean_object* x_1; lean_object* x_2; @@ -25385,7 +25732,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* _init_l___private_Init_Lean_Elab_Quotation_15__oldRunTermElabM___rarg___closed__5() { +lean_object* _init_l___private_Init_Lean_Elab_Quotation_16__oldRunTermElabM___rarg___closed__5() { _start: { lean_object* x_1; lean_object* x_2; @@ -25395,7 +25742,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* l___private_Init_Lean_Elab_Quotation_15__oldRunTermElabM___rarg(lean_object* x_1, lean_object* x_2) { +lean_object* l___private_Init_Lean_Elab_Quotation_16__oldRunTermElabM___rarg(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; uint8_t 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; @@ -25406,8 +25753,8 @@ lean_inc(x_4); x_5 = lean_ctor_get(x_1, 2); lean_inc(x_5); lean_dec(x_1); -x_6 = l___private_Init_Lean_Elab_Quotation_15__oldRunTermElabM___rarg___closed__1; -x_7 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__oldRunTermElabM___spec__1(x_6, x_4); +x_6 = l___private_Init_Lean_Elab_Quotation_16__oldRunTermElabM___rarg___closed__1; +x_7 = l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_16__oldRunTermElabM___spec__1(x_6, x_4); x_8 = l___private_Init_Lean_Meta_Message_1__run_x3f___rarg___closed__1; x_9 = l_Array_empty___closed__1; x_10 = lean_unsigned_to_nat(0u); @@ -25422,9 +25769,9 @@ lean_inc(x_3); x_13 = lean_get_namespace(x_3); x_14 = lean_box(0); x_15 = lean_box(0); -x_16 = l_List_map___main___at___private_Init_Lean_Elab_Quotation_15__oldRunTermElabM___spec__2(x_15, x_5); -x_17 = l___private_Init_Lean_Elab_Quotation_15__oldRunTermElabM___rarg___closed__3; -x_18 = l___private_Init_Lean_Elab_Quotation_15__oldRunTermElabM___rarg___closed__2; +x_16 = l_List_map___main___at___private_Init_Lean_Elab_Quotation_16__oldRunTermElabM___spec__2(x_15, x_5); +x_17 = l___private_Init_Lean_Elab_Quotation_16__oldRunTermElabM___rarg___closed__3; +x_18 = l___private_Init_Lean_Elab_Quotation_16__oldRunTermElabM___rarg___closed__2; x_19 = 1; x_20 = lean_alloc_ctor(0, 10, 1); lean_ctor_set(x_20, 0, x_12); @@ -25495,24 +25842,24 @@ return x_36; else { lean_object* x_37; -x_37 = l___private_Init_Lean_Elab_Quotation_15__oldRunTermElabM___rarg___closed__4; +x_37 = l___private_Init_Lean_Elab_Quotation_16__oldRunTermElabM___rarg___closed__4; return x_37; } } else { lean_object* x_38; -x_38 = l___private_Init_Lean_Elab_Quotation_15__oldRunTermElabM___rarg___closed__5; +x_38 = l___private_Init_Lean_Elab_Quotation_16__oldRunTermElabM___rarg___closed__5; return x_38; } } } } -lean_object* l___private_Init_Lean_Elab_Quotation_15__oldRunTermElabM(lean_object* x_1) { +lean_object* l___private_Init_Lean_Elab_Quotation_16__oldRunTermElabM(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_15__oldRunTermElabM___rarg), 2, 0); +x_2 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_16__oldRunTermElabM___rarg), 2, 0); return x_2; } } @@ -25520,7 +25867,7 @@ lean_object* _init_l_Lean_Elab_Term_oldExpandStxQuot___closed__1() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_14__toPreterm___main), 3, 0); +x_1 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_15__toPreterm___main), 3, 0); return x_1; } } @@ -25534,7 +25881,7 @@ x_4 = l_Lean_Elab_Term_oldExpandStxQuot___closed__1; x_5 = lean_alloc_closure((void*)(l_ReaderT_bind___at_Lean_Elab_Term_TermElabM_MonadLog___spec__2___rarg), 4, 2); lean_closure_set(x_5, 0, x_3); lean_closure_set(x_5, 1, x_4); -x_6 = l___private_Init_Lean_Elab_Quotation_15__oldRunTermElabM___rarg(x_1, x_5); +x_6 = l___private_Init_Lean_Elab_Quotation_16__oldRunTermElabM___rarg(x_1, x_5); return x_6; } } @@ -25680,7 +26027,7 @@ lean_object* lean_get_antiquot_vars(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_3 = lean_alloc_closure((void*)(l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___spec__1), 3, 1); +x_3 = lean_alloc_closure((void*)(l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___spec__1), 3, 1); lean_closure_set(x_3, 0, x_2); x_4 = l_Lean_Elab_Term_oldGetPatternVars___closed__1; x_5 = lean_alloc_closure((void*)(l_ReaderT_map___at_Lean_Elab_Term_oldGetPatternVars___spec__1___rarg), 4, 2); @@ -25690,7 +26037,7 @@ x_6 = l_Lean_Elab_Term_oldGetPatternVars___closed__2; x_7 = lean_alloc_closure((void*)(l_ReaderT_bind___at_Lean_Elab_Term_TermElabM_MonadLog___spec__2___rarg), 4, 2); lean_closure_set(x_7, 0, x_5); lean_closure_set(x_7, 1, x_6); -x_8 = l___private_Init_Lean_Elab_Quotation_15__oldRunTermElabM___rarg(x_1, x_7); +x_8 = l___private_Init_Lean_Elab_Quotation_16__oldRunTermElabM___rarg(x_1, x_7); return x_8; } } @@ -25721,7 +26068,7 @@ if (x_3 == 0) lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; x_4 = lean_ctor_get(x_1, 0); x_5 = lean_ctor_get(x_1, 1); -x_6 = l___private_Init_Lean_Elab_Quotation_4__elimAntiquotChoices___main(x_4); +x_6 = l___private_Init_Lean_Elab_Quotation_5__elimAntiquotChoices___main(x_4); x_7 = l_List_map___main___at_Lean_Elab_Term_oldExpandMatchSyntax___spec__1(x_5); lean_ctor_set(x_1, 1, x_7); lean_ctor_set(x_1, 0, x_6); @@ -25735,7 +26082,7 @@ x_9 = lean_ctor_get(x_1, 1); lean_inc(x_9); lean_inc(x_8); lean_dec(x_1); -x_10 = l___private_Init_Lean_Elab_Quotation_4__elimAntiquotChoices___main(x_8); +x_10 = l___private_Init_Lean_Elab_Quotation_5__elimAntiquotChoices___main(x_8); x_11 = l_List_map___main___at_Lean_Elab_Term_oldExpandMatchSyntax___spec__1(x_9); x_12 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_12, 0, x_10); @@ -25822,7 +26169,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__4; +x_2 = l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___closed__4; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } @@ -25843,7 +26190,7 @@ x_10 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_10, 0, x_8); lean_ctor_set(x_10, 1, x_4); x_11 = lean_box(0); -x_12 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_9__compileStxMatch), 5, 3); +x_12 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_10__compileStxMatch), 5, 3); lean_closure_set(x_12, 0, x_11); lean_closure_set(x_12, 1, x_10); lean_closure_set(x_12, 2, x_9); @@ -25851,7 +26198,7 @@ x_13 = l_Lean_Elab_Term_oldExpandStxQuot___closed__1; x_14 = lean_alloc_closure((void*)(l_ReaderT_bind___at_Lean_Elab_Term_TermElabM_MonadLog___spec__2___rarg), 4, 2); lean_closure_set(x_14, 0, x_12); lean_closure_set(x_14, 1, x_13); -x_15 = l___private_Init_Lean_Elab_Quotation_15__oldRunTermElabM___rarg(x_1, x_14); +x_15 = l___private_Init_Lean_Elab_Quotation_16__oldRunTermElabM___rarg(x_1, x_14); return x_15; } } @@ -25910,20 +26257,20 @@ l___private_Init_Lean_Elab_Quotation_1__quoteName___main___lambda__3___closed__5 lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_1__quoteName___main___lambda__3___closed__5); l___private_Init_Lean_Elab_Quotation_1__quoteName___main___lambda__3___closed__6 = _init_l___private_Init_Lean_Elab_Quotation_1__quoteName___main___lambda__3___closed__6(); lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_1__quoteName___main___lambda__3___closed__6); -l_Lean_Name_HasQuote___closed__1 = _init_l_Lean_Name_HasQuote___closed__1(); -lean_mark_persistent(l_Lean_Name_HasQuote___closed__1); -l_Lean_Name_HasQuote = _init_l_Lean_Name_HasQuote(); -lean_mark_persistent(l_Lean_Name_HasQuote); -l_Lean_Prod_HasQuote___rarg___lambda__1___closed__1 = _init_l_Lean_Prod_HasQuote___rarg___lambda__1___closed__1(); -lean_mark_persistent(l_Lean_Prod_HasQuote___rarg___lambda__1___closed__1); -l_Lean_Prod_HasQuote___rarg___lambda__1___closed__2 = _init_l_Lean_Prod_HasQuote___rarg___lambda__1___closed__2(); -lean_mark_persistent(l_Lean_Prod_HasQuote___rarg___lambda__1___closed__2); -l_Lean_Prod_HasQuote___rarg___lambda__1___closed__3 = _init_l_Lean_Prod_HasQuote___rarg___lambda__1___closed__3(); -lean_mark_persistent(l_Lean_Prod_HasQuote___rarg___lambda__1___closed__3); -l_Lean_Prod_HasQuote___rarg___lambda__1___closed__4 = _init_l_Lean_Prod_HasQuote___rarg___lambda__1___closed__4(); -lean_mark_persistent(l_Lean_Prod_HasQuote___rarg___lambda__1___closed__4); -l_Lean_Prod_HasQuote___rarg___lambda__1___closed__5 = _init_l_Lean_Prod_HasQuote___rarg___lambda__1___closed__5(); -lean_mark_persistent(l_Lean_Prod_HasQuote___rarg___lambda__1___closed__5); +l_Lean_Name_hasQuote___closed__1 = _init_l_Lean_Name_hasQuote___closed__1(); +lean_mark_persistent(l_Lean_Name_hasQuote___closed__1); +l_Lean_Name_hasQuote = _init_l_Lean_Name_hasQuote(); +lean_mark_persistent(l_Lean_Name_hasQuote); +l_Lean_Prod_hasQuote___rarg___lambda__1___closed__1 = _init_l_Lean_Prod_hasQuote___rarg___lambda__1___closed__1(); +lean_mark_persistent(l_Lean_Prod_hasQuote___rarg___lambda__1___closed__1); +l_Lean_Prod_hasQuote___rarg___lambda__1___closed__2 = _init_l_Lean_Prod_hasQuote___rarg___lambda__1___closed__2(); +lean_mark_persistent(l_Lean_Prod_hasQuote___rarg___lambda__1___closed__2); +l_Lean_Prod_hasQuote___rarg___lambda__1___closed__3 = _init_l_Lean_Prod_hasQuote___rarg___lambda__1___closed__3(); +lean_mark_persistent(l_Lean_Prod_hasQuote___rarg___lambda__1___closed__3); +l_Lean_Prod_hasQuote___rarg___lambda__1___closed__4 = _init_l_Lean_Prod_hasQuote___rarg___lambda__1___closed__4(); +lean_mark_persistent(l_Lean_Prod_hasQuote___rarg___lambda__1___closed__4); +l_Lean_Prod_hasQuote___rarg___lambda__1___closed__5 = _init_l_Lean_Prod_hasQuote___rarg___lambda__1___closed__5(); +lean_mark_persistent(l_Lean_Prod_hasQuote___rarg___lambda__1___closed__5); l___private_Init_Lean_Elab_Quotation_3__quoteList___main___rarg___lambda__1___closed__1 = _init_l___private_Init_Lean_Elab_Quotation_3__quoteList___main___rarg___lambda__1___closed__1(); lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_3__quoteList___main___rarg___lambda__1___closed__1); l___private_Init_Lean_Elab_Quotation_3__quoteList___main___rarg___lambda__1___closed__2 = _init_l___private_Init_Lean_Elab_Quotation_3__quoteList___main___rarg___lambda__1___closed__2(); @@ -25956,158 +26303,194 @@ l___private_Init_Lean_Elab_Quotation_3__quoteList___main___rarg___closed__2 = _i lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_3__quoteList___main___rarg___closed__2); l___private_Init_Lean_Elab_Quotation_3__quoteList___main___rarg___closed__3 = _init_l___private_Init_Lean_Elab_Quotation_3__quoteList___main___rarg___closed__3(); lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_3__quoteList___main___rarg___closed__3); -l_Lean_Array_HasQuote___rarg___lambda__1___closed__1 = _init_l_Lean_Array_HasQuote___rarg___lambda__1___closed__1(); -lean_mark_persistent(l_Lean_Array_HasQuote___rarg___lambda__1___closed__1); -l_Lean_Array_HasQuote___rarg___lambda__1___closed__2 = _init_l_Lean_Array_HasQuote___rarg___lambda__1___closed__2(); -lean_mark_persistent(l_Lean_Array_HasQuote___rarg___lambda__1___closed__2); -l_Lean_Array_HasQuote___rarg___lambda__1___closed__3 = _init_l_Lean_Array_HasQuote___rarg___lambda__1___closed__3(); -lean_mark_persistent(l_Lean_Array_HasQuote___rarg___lambda__1___closed__3); -l_Lean_Array_HasQuote___rarg___lambda__1___closed__4 = _init_l_Lean_Array_HasQuote___rarg___lambda__1___closed__4(); -lean_mark_persistent(l_Lean_Array_HasQuote___rarg___lambda__1___closed__4); +l_Lean_Array_hasQuote___rarg___lambda__1___closed__1 = _init_l_Lean_Array_hasQuote___rarg___lambda__1___closed__1(); +lean_mark_persistent(l_Lean_Array_hasQuote___rarg___lambda__1___closed__1); +l_Lean_Array_hasQuote___rarg___lambda__1___closed__2 = _init_l_Lean_Array_hasQuote___rarg___lambda__1___closed__2(); +lean_mark_persistent(l_Lean_Array_hasQuote___rarg___lambda__1___closed__2); +l_Lean_Array_hasQuote___rarg___lambda__1___closed__3 = _init_l_Lean_Array_hasQuote___rarg___lambda__1___closed__3(); +lean_mark_persistent(l_Lean_Array_hasQuote___rarg___lambda__1___closed__3); +l_Lean_Array_hasQuote___rarg___lambda__1___closed__4 = _init_l_Lean_Array_hasQuote___rarg___lambda__1___closed__4(); +lean_mark_persistent(l_Lean_Array_hasQuote___rarg___lambda__1___closed__4); +l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__1___closed__1 = _init_l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__1___closed__1(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__1___closed__1); +l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__1___closed__2 = _init_l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__1___closed__2(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__1___closed__2); +l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__1___closed__3 = _init_l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__1___closed__3(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__1___closed__3); +l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__1___closed__4 = _init_l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__1___closed__4(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__1___closed__4); +l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__1___closed__5 = _init_l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__1___closed__5(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__1___closed__5); +l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__1___closed__6 = _init_l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__1___closed__6(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__1___closed__6); +l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__1___closed__7 = _init_l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__1___closed__7(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__1___closed__7); +l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__1___closed__8 = _init_l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__1___closed__8(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__1___closed__8); +l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__1___closed__9 = _init_l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__1___closed__9(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__1___closed__9); +l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__1___closed__10 = _init_l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__1___closed__10(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__1___closed__10); +l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__2___closed__1 = _init_l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__2___closed__1(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__2___closed__1); +l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__2___closed__2 = _init_l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__2___closed__2(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__2___closed__2); +l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__2___closed__3 = _init_l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__2___closed__3(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__2___closed__3); +l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__2___closed__4 = _init_l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__2___closed__4(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__2___closed__4); +l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__2___closed__5 = _init_l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__2___closed__5(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__2___closed__5); +l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__2___closed__6 = _init_l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__2___closed__6(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__2___closed__6); +l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__2___closed__7 = _init_l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__2___closed__7(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__2___closed__7); +l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__2___closed__8 = _init_l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__2___closed__8(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__2___closed__8); +l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___closed__1 = _init_l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___closed__1(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___closed__1); +l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___closed__2 = _init_l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___closed__2(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___closed__2); +l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___closed__3 = _init_l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___closed__3(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___closed__3); l_Lean_Elab_Term_antiquotKind_x3f___closed__1 = _init_l_Lean_Elab_Term_antiquotKind_x3f___closed__1(); lean_mark_persistent(l_Lean_Elab_Term_antiquotKind_x3f___closed__1); -l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___spec__1___closed__1 = _init_l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___spec__1___closed__1(); -lean_mark_persistent(l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___spec__1___closed__1); -l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___spec__1___closed__2 = _init_l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___spec__1___closed__2(); -lean_mark_persistent(l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___spec__1___closed__2); -l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___spec__1___closed__3 = _init_l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___spec__1___closed__3(); -lean_mark_persistent(l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___spec__1___closed__3); -l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___spec__1___closed__4 = _init_l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___spec__1___closed__4(); -lean_mark_persistent(l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___spec__1___closed__4); -l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___spec__1___closed__5 = _init_l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___spec__1___closed__5(); -lean_mark_persistent(l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___spec__1___closed__5); -l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___spec__1___closed__6 = _init_l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___spec__1___closed__6(); -lean_mark_persistent(l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___spec__1___closed__6); -l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___spec__1___closed__7 = _init_l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___spec__1___closed__7(); -lean_mark_persistent(l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___spec__1___closed__7); -l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__1 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__1); -l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__2 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__2); -l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__3 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__3); -l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__4 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__4(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__4); -l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__5 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__5(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__5); -l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__6 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__6(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__6); -l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__7 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__7(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__7); -l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__8 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__8(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__8); -l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__9 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__9(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__9); -l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__10 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__10(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__10); -l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__11 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__11(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__11); -l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__12 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__12(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__12); -l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__13 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__13(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__13); -l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__14 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__14(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__14); -l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__15 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__15(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__15); -l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__16 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__16(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__16); -l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__17 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__17(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__17); -l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__18 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__18(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__18); -l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__19 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__19(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__19); -l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__20 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__20(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__20); -l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__21 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__21(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__21); -l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__22 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__22(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__22); -l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__23 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__23(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__23); -l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__24 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__24(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__24); -l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__25 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__25(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__25); -l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__26 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__26(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__26); -l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__27 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__27(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__27); -l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__28 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__28(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__28); -l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__29 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__29(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__29); -l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__30 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__30(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__30); -l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__31 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__31(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__31); -l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__32 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__32(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__32); -l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__33 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__33(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__33); -l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__34 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__34(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__34); -l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__35 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__35(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__35); -l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__36 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__36(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__36); -l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__37 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__37(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__37); -l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__38 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__38(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__38); -l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__39 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__39(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__39); -l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__40 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__40(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__40); -l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__41 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__41(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__41); -l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__42 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__42(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__42); -l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__43 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__43(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__43); -l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__44 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__44(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__44); -l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__45 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__45(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__45); -l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__46 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__46(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__46); -l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__47 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__47(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__47); -l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__48 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__48(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__48); -l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__49 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__49(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__49); -l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__50 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__50(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__50); -l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__51 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__51(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__51); -l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__52 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__52(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__52); -l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__53 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__53(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__53); -l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__54 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__54(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__54); -l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__55 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__55(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__55); -l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__56 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__56(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__56); -l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__57 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__57(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__57); -l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__58 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__58(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__58); -l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__59 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__59(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__59); -l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__60 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__60(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__60); -l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__61 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__61(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__61); -l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__62 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__62(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__62); -l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__63 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__63(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__63); -l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__64 = _init_l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__64(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_5__quoteSyntax___main___closed__64); +l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___spec__1___closed__1 = _init_l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___spec__1___closed__1(); +lean_mark_persistent(l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___spec__1___closed__1); +l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___spec__1___closed__2 = _init_l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___spec__1___closed__2(); +lean_mark_persistent(l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___spec__1___closed__2); +l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___spec__1___closed__3 = _init_l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___spec__1___closed__3(); +lean_mark_persistent(l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___spec__1___closed__3); +l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___spec__1___closed__4 = _init_l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___spec__1___closed__4(); +lean_mark_persistent(l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___spec__1___closed__4); +l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___spec__1___closed__5 = _init_l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___spec__1___closed__5(); +lean_mark_persistent(l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___spec__1___closed__5); +l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___spec__1___closed__6 = _init_l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___spec__1___closed__6(); +lean_mark_persistent(l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___spec__1___closed__6); +l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___spec__1___closed__7 = _init_l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___spec__1___closed__7(); +lean_mark_persistent(l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___spec__1___closed__7); +l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__1 = _init_l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__1(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__1); +l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__2 = _init_l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__2(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__2); +l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__3 = _init_l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__3(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__3); +l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__4 = _init_l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__4(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__4); +l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__5 = _init_l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__5(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__5); +l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__6 = _init_l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__6(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__6); +l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__7 = _init_l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__7(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__7); +l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__8 = _init_l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__8(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__8); +l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__9 = _init_l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__9(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__9); +l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__10 = _init_l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__10(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__10); +l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__11 = _init_l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__11(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__11); +l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__12 = _init_l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__12(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__12); +l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__13 = _init_l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__13(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__13); +l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__14 = _init_l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__14(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__14); +l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__15 = _init_l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__15(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__15); +l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__16 = _init_l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__16(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__16); +l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__17 = _init_l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__17(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__17); +l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__18 = _init_l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__18(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__18); +l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__19 = _init_l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__19(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__19); +l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__20 = _init_l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__20(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__20); +l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__21 = _init_l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__21(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__21); +l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__22 = _init_l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__22(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__22); +l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__23 = _init_l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__23(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__23); +l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__24 = _init_l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__24(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__24); +l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__25 = _init_l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__25(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__25); +l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__26 = _init_l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__26(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__26); +l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__27 = _init_l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__27(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__27); +l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__28 = _init_l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__28(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__28); +l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__29 = _init_l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__29(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__29); +l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__30 = _init_l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__30(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__30); +l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__31 = _init_l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__31(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__31); +l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__32 = _init_l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__32(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__32); +l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__33 = _init_l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__33(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__33); +l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__34 = _init_l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__34(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__34); +l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__35 = _init_l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__35(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__35); +l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__36 = _init_l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__36(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__36); +l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__37 = _init_l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__37(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__37); +l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__38 = _init_l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__38(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__38); +l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__39 = _init_l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__39(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__39); +l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__40 = _init_l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__40(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__40); +l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__41 = _init_l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__41(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__41); +l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__42 = _init_l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__42(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__42); +l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__43 = _init_l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__43(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__43); +l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__44 = _init_l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__44(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__44); +l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__45 = _init_l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__45(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__45); +l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__46 = _init_l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__46(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__46); +l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__47 = _init_l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__47(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__47); +l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__48 = _init_l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__48(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__48); +l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__49 = _init_l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__49(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__49); +l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__50 = _init_l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__50(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__50); +l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__51 = _init_l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__51(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__51); +l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__52 = _init_l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__52(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__52); +l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__53 = _init_l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__53(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__53); +l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__54 = _init_l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__54(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__54); +l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__55 = _init_l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__55(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__55); +l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__56 = _init_l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__56(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__56); +l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__57 = _init_l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__57(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__57); +l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__58 = _init_l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__58(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__58); +l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__59 = _init_l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__59(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__59); +l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__60 = _init_l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__60(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__60); +l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__61 = _init_l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__61(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_6__quoteSyntax___main___closed__61); l_Lean_Elab_Term_stxQuot_expand___closed__1 = _init_l_Lean_Elab_Term_stxQuot_expand___closed__1(); lean_mark_persistent(l_Lean_Elab_Term_stxQuot_expand___closed__1); l_Lean_Elab_Term_stxQuot_expand___closed__2 = _init_l_Lean_Elab_Term_stxQuot_expand___closed__2(); @@ -26179,202 +26562,202 @@ l_Lean_Elab_Term_HeadInfo_Inhabited___closed__2 = _init_l_Lean_Elab_Term_HeadInf lean_mark_persistent(l_Lean_Elab_Term_HeadInfo_Inhabited___closed__2); l_Lean_Elab_Term_HeadInfo_Inhabited = _init_l_Lean_Elab_Term_HeadInfo_Inhabited(); lean_mark_persistent(l_Lean_Elab_Term_HeadInfo_Inhabited); -l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__1 = _init_l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__1); -l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__2 = _init_l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__2); -l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__3 = _init_l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__3); -l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__4 = _init_l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__4(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__4); -l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__5 = _init_l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__5(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__5); -l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__6 = _init_l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__6(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__6); -l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__7 = _init_l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__7(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__7); -l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__8 = _init_l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__8(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__8); -l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__9 = _init_l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__9(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__9); -l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__10 = _init_l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__10(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___elambda__3___closed__10); -l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_7__getHeadInfo___spec__2___closed__1 = _init_l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_7__getHeadInfo___spec__2___closed__1(); -lean_mark_persistent(l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_7__getHeadInfo___spec__2___closed__1); -l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_7__getHeadInfo___spec__2___closed__2 = _init_l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_7__getHeadInfo___spec__2___closed__2(); -lean_mark_persistent(l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_7__getHeadInfo___spec__2___closed__2); -l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__1___closed__1 = _init_l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__1___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__1___closed__1); -l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__1___closed__2 = _init_l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__1___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__1___closed__2); -l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__1___closed__3 = _init_l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__1___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__1___closed__3); -l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__2___closed__1 = _init_l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__2___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__2___closed__1); -l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__2___closed__2 = _init_l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__2___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__2___closed__2); -l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__2___closed__3 = _init_l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__2___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__2___closed__3); -l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__2___closed__4 = _init_l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__2___closed__4(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__2___closed__4); -l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__2___closed__5 = _init_l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__2___closed__5(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__2___closed__5); -l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__3___closed__1 = _init_l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__3___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__3___closed__1); -l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__3___closed__2 = _init_l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__3___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__3___closed__2); -l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__3___closed__3 = _init_l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__3___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___lambda__3___closed__3); -l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___closed__1 = _init_l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___closed__1); -l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___closed__2 = _init_l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___closed__2); -l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___closed__3 = _init_l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___closed__3); -l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___closed__4 = _init_l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___closed__4(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_7__getHeadInfo___closed__4); -l___private_Init_Lean_Elab_Quotation_8__explodeHeadPat___lambda__1___closed__1 = _init_l___private_Init_Lean_Elab_Quotation_8__explodeHeadPat___lambda__1___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_8__explodeHeadPat___lambda__1___closed__1); -l___private_Init_Lean_Elab_Quotation_8__explodeHeadPat___lambda__1___closed__2 = _init_l___private_Init_Lean_Elab_Quotation_8__explodeHeadPat___lambda__1___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_8__explodeHeadPat___lambda__1___closed__2); -l___private_Init_Lean_Elab_Quotation_8__explodeHeadPat___lambda__1___closed__3 = _init_l___private_Init_Lean_Elab_Quotation_8__explodeHeadPat___lambda__1___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_8__explodeHeadPat___lambda__1___closed__3); -l___private_Init_Lean_Elab_Quotation_8__explodeHeadPat___closed__1 = _init_l___private_Init_Lean_Elab_Quotation_8__explodeHeadPat___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_8__explodeHeadPat___closed__1); -l___private_Init_Lean_Elab_Quotation_8__explodeHeadPat___closed__2 = _init_l___private_Init_Lean_Elab_Quotation_8__explodeHeadPat___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_8__explodeHeadPat___closed__2); -l___private_Init_Lean_Elab_Quotation_8__explodeHeadPat___closed__3 = _init_l___private_Init_Lean_Elab_Quotation_8__explodeHeadPat___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_8__explodeHeadPat___closed__3); -l_List_head_x21___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__2___closed__1 = _init_l_List_head_x21___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__2___closed__1(); -lean_mark_persistent(l_List_head_x21___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__2___closed__1); -l_List_head_x21___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__2___closed__2 = _init_l_List_head_x21___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__2___closed__2(); -lean_mark_persistent(l_List_head_x21___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__2___closed__2); -l_List_head_x21___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__2___closed__3 = _init_l_List_head_x21___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__2___closed__3(); -lean_mark_persistent(l_List_head_x21___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__2___closed__3); -l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__5___closed__1 = _init_l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__5___closed__1(); -lean_mark_persistent(l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__5___closed__1); -l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__8___closed__1 = _init_l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__8___closed__1(); -lean_mark_persistent(l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__8___closed__1); -l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__8___closed__2 = _init_l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__8___closed__2(); -lean_mark_persistent(l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__8___closed__2); -l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__8___closed__3 = _init_l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__8___closed__3(); -lean_mark_persistent(l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__8___closed__3); -l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__8___closed__4 = _init_l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__8___closed__4(); -lean_mark_persistent(l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__8___closed__4); -l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__8___closed__5 = _init_l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__8___closed__5(); -lean_mark_persistent(l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__8___closed__5); -l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__8___closed__6 = _init_l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__8___closed__6(); -lean_mark_persistent(l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__8___closed__6); -l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__8___closed__7 = _init_l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__8___closed__7(); -lean_mark_persistent(l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__8___closed__7); -l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__8___closed__8 = _init_l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__8___closed__8(); -lean_mark_persistent(l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___spec__8___closed__8); -l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__1 = _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__1); -l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__2 = _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__2); -l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__3 = _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__3); -l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__4 = _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__4(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__4); -l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__5 = _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__5(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__5); -l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__6 = _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__6(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__6); -l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__7 = _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__7(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__7); -l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__8 = _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__8(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__8); -l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__9 = _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__9(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__9); -l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__10 = _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__10(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__10); -l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__11 = _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__11(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__11); -l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__12 = _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__12(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__12); -l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__13 = _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__13(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__13); -l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__14 = _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__14(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__14); -l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__15 = _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__15(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__15); -l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__16 = _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__16(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__16); -l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__17 = _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__17(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__17); -l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__18 = _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__18(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__18); -l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__19 = _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__19(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__19); -l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__20 = _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__20(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__20); -l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__21 = _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__21(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__21); -l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__22 = _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__22(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__22); -l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__23 = _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__23(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__23); -l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__24 = _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__24(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__24); -l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__25 = _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__25(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__25); -l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__26 = _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__26(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__26); -l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__27 = _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__27(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__27); -l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__28 = _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__28(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__28); -l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__29 = _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__29(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__29); -l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__30 = _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__30(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__30); -l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__31 = _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__31(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__31); -l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__32 = _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__32(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__32); -l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__33 = _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__33(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__33); -l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__34 = _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__34(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__34); -l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__35 = _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__35(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__35); -l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__36 = _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__36(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__36); -l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__37 = _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__37(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__37); -l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__38 = _init_l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__38(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_9__compileStxMatch___main___closed__38); -l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__1 = _init_l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__1); -l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__2 = _init_l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__2); -l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__3 = _init_l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__3); -l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__4 = _init_l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__4(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__4); -l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__5 = _init_l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__5(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__5); -l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__6 = _init_l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__6(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__6); -l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__7 = _init_l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__7(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__7); -l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__8 = _init_l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__8(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__8); -l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__9 = _init_l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__9(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__9); -l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__10 = _init_l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__10(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__10); -l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__11 = _init_l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__11(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__11); -l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__12 = _init_l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__12(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__12); -l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__13 = _init_l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__13(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__13); -l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__14 = _init_l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__14(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__14); -l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__15 = _init_l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__15(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_12__letBindRhss___main___closed__15); +l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__1 = _init_l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__1(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__1); +l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__2 = _init_l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__2(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__2); +l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__3 = _init_l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__3(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__3); +l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__4 = _init_l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__4(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__4); +l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__5 = _init_l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__5(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__5); +l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__6 = _init_l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__6(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__6); +l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__7 = _init_l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__7(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__7); +l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__8 = _init_l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__8(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__8); +l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__9 = _init_l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__9(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__9); +l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__10 = _init_l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__10(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__10); +l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_8__getHeadInfo___spec__2___closed__1 = _init_l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_8__getHeadInfo___spec__2___closed__1(); +lean_mark_persistent(l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_8__getHeadInfo___spec__2___closed__1); +l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_8__getHeadInfo___spec__2___closed__2 = _init_l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_8__getHeadInfo___spec__2___closed__2(); +lean_mark_persistent(l_Array_umapMAux___main___at___private_Init_Lean_Elab_Quotation_8__getHeadInfo___spec__2___closed__2); +l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___lambda__1___closed__1 = _init_l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___lambda__1___closed__1(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___lambda__1___closed__1); +l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___lambda__1___closed__2 = _init_l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___lambda__1___closed__2(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___lambda__1___closed__2); +l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___lambda__1___closed__3 = _init_l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___lambda__1___closed__3(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___lambda__1___closed__3); +l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___lambda__2___closed__1 = _init_l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___lambda__2___closed__1(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___lambda__2___closed__1); +l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___lambda__2___closed__2 = _init_l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___lambda__2___closed__2(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___lambda__2___closed__2); +l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___lambda__2___closed__3 = _init_l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___lambda__2___closed__3(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___lambda__2___closed__3); +l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___lambda__2___closed__4 = _init_l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___lambda__2___closed__4(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___lambda__2___closed__4); +l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___lambda__2___closed__5 = _init_l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___lambda__2___closed__5(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___lambda__2___closed__5); +l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___lambda__3___closed__1 = _init_l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___lambda__3___closed__1(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___lambda__3___closed__1); +l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___lambda__3___closed__2 = _init_l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___lambda__3___closed__2(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___lambda__3___closed__2); +l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___lambda__3___closed__3 = _init_l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___lambda__3___closed__3(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___lambda__3___closed__3); +l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___closed__1 = _init_l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___closed__1(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___closed__1); +l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___closed__2 = _init_l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___closed__2(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___closed__2); +l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___closed__3 = _init_l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___closed__3(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___closed__3); +l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___closed__4 = _init_l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___closed__4(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___closed__4); +l___private_Init_Lean_Elab_Quotation_9__explodeHeadPat___lambda__1___closed__1 = _init_l___private_Init_Lean_Elab_Quotation_9__explodeHeadPat___lambda__1___closed__1(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_9__explodeHeadPat___lambda__1___closed__1); +l___private_Init_Lean_Elab_Quotation_9__explodeHeadPat___lambda__1___closed__2 = _init_l___private_Init_Lean_Elab_Quotation_9__explodeHeadPat___lambda__1___closed__2(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_9__explodeHeadPat___lambda__1___closed__2); +l___private_Init_Lean_Elab_Quotation_9__explodeHeadPat___lambda__1___closed__3 = _init_l___private_Init_Lean_Elab_Quotation_9__explodeHeadPat___lambda__1___closed__3(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_9__explodeHeadPat___lambda__1___closed__3); +l___private_Init_Lean_Elab_Quotation_9__explodeHeadPat___closed__1 = _init_l___private_Init_Lean_Elab_Quotation_9__explodeHeadPat___closed__1(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_9__explodeHeadPat___closed__1); +l___private_Init_Lean_Elab_Quotation_9__explodeHeadPat___closed__2 = _init_l___private_Init_Lean_Elab_Quotation_9__explodeHeadPat___closed__2(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_9__explodeHeadPat___closed__2); +l___private_Init_Lean_Elab_Quotation_9__explodeHeadPat___closed__3 = _init_l___private_Init_Lean_Elab_Quotation_9__explodeHeadPat___closed__3(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_9__explodeHeadPat___closed__3); +l_List_head_x21___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__2___closed__1 = _init_l_List_head_x21___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__2___closed__1(); +lean_mark_persistent(l_List_head_x21___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__2___closed__1); +l_List_head_x21___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__2___closed__2 = _init_l_List_head_x21___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__2___closed__2(); +lean_mark_persistent(l_List_head_x21___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__2___closed__2); +l_List_head_x21___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__2___closed__3 = _init_l_List_head_x21___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__2___closed__3(); +lean_mark_persistent(l_List_head_x21___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__2___closed__3); +l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__5___closed__1 = _init_l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__5___closed__1(); +lean_mark_persistent(l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__5___closed__1); +l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__8___closed__1 = _init_l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__8___closed__1(); +lean_mark_persistent(l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__8___closed__1); +l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__8___closed__2 = _init_l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__8___closed__2(); +lean_mark_persistent(l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__8___closed__2); +l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__8___closed__3 = _init_l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__8___closed__3(); +lean_mark_persistent(l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__8___closed__3); +l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__8___closed__4 = _init_l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__8___closed__4(); +lean_mark_persistent(l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__8___closed__4); +l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__8___closed__5 = _init_l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__8___closed__5(); +lean_mark_persistent(l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__8___closed__5); +l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__8___closed__6 = _init_l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__8___closed__6(); +lean_mark_persistent(l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__8___closed__6); +l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__8___closed__7 = _init_l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__8___closed__7(); +lean_mark_persistent(l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__8___closed__7); +l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__8___closed__8 = _init_l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__8___closed__8(); +lean_mark_persistent(l_List_mapM___main___at___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___spec__8___closed__8); +l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__1 = _init_l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__1(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__1); +l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__2 = _init_l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__2(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__2); +l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__3 = _init_l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__3(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__3); +l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__4 = _init_l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__4(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__4); +l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__5 = _init_l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__5(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__5); +l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__6 = _init_l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__6(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__6); +l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__7 = _init_l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__7(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__7); +l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__8 = _init_l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__8(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__8); +l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__9 = _init_l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__9(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__9); +l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__10 = _init_l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__10(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__10); +l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__11 = _init_l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__11(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__11); +l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__12 = _init_l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__12(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__12); +l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__13 = _init_l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__13(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__13); +l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__14 = _init_l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__14(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__14); +l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__15 = _init_l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__15(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__15); +l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__16 = _init_l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__16(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__16); +l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__17 = _init_l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__17(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__17); +l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__18 = _init_l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__18(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__18); +l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__19 = _init_l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__19(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__19); +l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__20 = _init_l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__20(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__20); +l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__21 = _init_l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__21(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__21); +l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__22 = _init_l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__22(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__22); +l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__23 = _init_l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__23(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__23); +l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__24 = _init_l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__24(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__24); +l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__25 = _init_l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__25(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__25); +l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__26 = _init_l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__26(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__26); +l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__27 = _init_l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__27(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__27); +l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__28 = _init_l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__28(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__28); +l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__29 = _init_l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__29(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__29); +l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__30 = _init_l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__30(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__30); +l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__31 = _init_l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__31(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__31); +l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__32 = _init_l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__32(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__32); +l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__33 = _init_l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__33(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__33); +l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__34 = _init_l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__34(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__34); +l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__35 = _init_l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__35(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__35); +l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__36 = _init_l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__36(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__36); +l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__37 = _init_l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__37(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__37); +l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__38 = _init_l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__38(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_10__compileStxMatch___main___closed__38); +l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__1 = _init_l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__1(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__1); +l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__2 = _init_l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__2(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__2); +l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__3 = _init_l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__3(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__3); +l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__4 = _init_l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__4(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__4); +l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__5 = _init_l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__5(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__5); +l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__6 = _init_l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__6(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__6); +l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__7 = _init_l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__7(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__7); +l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__8 = _init_l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__8(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__8); +l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__9 = _init_l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__9(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__9); +l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__10 = _init_l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__10(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__10); +l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__11 = _init_l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__11(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__11); +l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__12 = _init_l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__12(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__12); +l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__13 = _init_l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__13(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__13); +l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__14 = _init_l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__14(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__14); +l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__15 = _init_l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__15(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_13__letBindRhss___main___closed__15); l_Array_umapMAux___main___at_Lean_Elab_Term_match__syntax_expand___spec__1___closed__1 = _init_l_Array_umapMAux___main___at_Lean_Elab_Term_match__syntax_expand___spec__1___closed__1(); lean_mark_persistent(l_Array_umapMAux___main___at_Lean_Elab_Term_match__syntax_expand___spec__1___closed__1); l_Array_umapMAux___main___at_Lean_Elab_Term_match__syntax_expand___spec__1___closed__2 = _init_l_Array_umapMAux___main___at_Lean_Elab_Term_match__syntax_expand___spec__1___closed__2(); @@ -26392,56 +26775,56 @@ lean_mark_persistent(l___regBuiltinTermElab_Lean_Elab_Term_elabMatchSyntax___clo res = l___regBuiltinTermElab_Lean_Elab_Term_elabMatchSyntax(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l___private_Init_Lean_Elab_Quotation_13__exprPlaceholder___closed__1 = _init_l___private_Init_Lean_Elab_Quotation_13__exprPlaceholder___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_13__exprPlaceholder___closed__1); -l___private_Init_Lean_Elab_Quotation_13__exprPlaceholder = _init_l___private_Init_Lean_Elab_Quotation_13__exprPlaceholder(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_13__exprPlaceholder); -l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__1___closed__1 = _init_l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__1___closed__1(); -lean_mark_persistent(l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_14__toPreterm___main___spec__1___closed__1); -l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__1___closed__1 = _init_l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__1___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__1___closed__1); -l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__1___closed__2 = _init_l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__1___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__1___closed__2); -l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__1___closed__3 = _init_l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__1___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__1___closed__3); -l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__1___closed__4 = _init_l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__1___closed__4(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__1___closed__4); -l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__2___closed__1 = _init_l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__2___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__2___closed__1); -l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__2___closed__2 = _init_l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__2___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__2___closed__2); -l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__3___closed__1 = _init_l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__3___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__3___closed__1); -l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__3___closed__2 = _init_l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__3___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__3___closed__2); -l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__3___closed__3 = _init_l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__3___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___lambda__3___closed__3); -l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__1 = _init_l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__1); -l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__2 = _init_l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__2); -l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__3 = _init_l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__3); -l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__4 = _init_l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__4(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__4); -l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__5 = _init_l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__5(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__5); -l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__6 = _init_l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__6(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__6); -l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__7 = _init_l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__7(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_14__toPreterm___main___closed__7); +l___private_Init_Lean_Elab_Quotation_14__exprPlaceholder___closed__1 = _init_l___private_Init_Lean_Elab_Quotation_14__exprPlaceholder___closed__1(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_14__exprPlaceholder___closed__1); +l___private_Init_Lean_Elab_Quotation_14__exprPlaceholder = _init_l___private_Init_Lean_Elab_Quotation_14__exprPlaceholder(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_14__exprPlaceholder); +l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__toPreterm___main___spec__1___closed__1 = _init_l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__toPreterm___main___spec__1___closed__1(); +lean_mark_persistent(l_List_foldl___main___at___private_Init_Lean_Elab_Quotation_15__toPreterm___main___spec__1___closed__1); +l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___lambda__1___closed__1 = _init_l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___lambda__1___closed__1(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___lambda__1___closed__1); +l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___lambda__1___closed__2 = _init_l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___lambda__1___closed__2(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___lambda__1___closed__2); +l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___lambda__1___closed__3 = _init_l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___lambda__1___closed__3(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___lambda__1___closed__3); +l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___lambda__1___closed__4 = _init_l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___lambda__1___closed__4(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___lambda__1___closed__4); +l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___lambda__2___closed__1 = _init_l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___lambda__2___closed__1(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___lambda__2___closed__1); +l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___lambda__2___closed__2 = _init_l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___lambda__2___closed__2(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___lambda__2___closed__2); +l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___lambda__3___closed__1 = _init_l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___lambda__3___closed__1(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___lambda__3___closed__1); +l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___lambda__3___closed__2 = _init_l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___lambda__3___closed__2(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___lambda__3___closed__2); +l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___lambda__3___closed__3 = _init_l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___lambda__3___closed__3(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___lambda__3___closed__3); +l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___closed__1 = _init_l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___closed__1(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___closed__1); +l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___closed__2 = _init_l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___closed__2(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___closed__2); +l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___closed__3 = _init_l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___closed__3(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___closed__3); +l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___closed__4 = _init_l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___closed__4(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___closed__4); +l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___closed__5 = _init_l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___closed__5(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___closed__5); +l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___closed__6 = _init_l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___closed__6(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___closed__6); +l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___closed__7 = _init_l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___closed__7(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_15__toPreterm___main___closed__7); l_Lean_Elab_Term_oldParseExpr___closed__1 = _init_l_Lean_Elab_Term_oldParseExpr___closed__1(); lean_mark_persistent(l_Lean_Elab_Term_oldParseExpr___closed__1); -l___private_Init_Lean_Elab_Quotation_15__oldRunTermElabM___rarg___closed__1 = _init_l___private_Init_Lean_Elab_Quotation_15__oldRunTermElabM___rarg___closed__1(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_15__oldRunTermElabM___rarg___closed__1); -l___private_Init_Lean_Elab_Quotation_15__oldRunTermElabM___rarg___closed__2 = _init_l___private_Init_Lean_Elab_Quotation_15__oldRunTermElabM___rarg___closed__2(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_15__oldRunTermElabM___rarg___closed__2); -l___private_Init_Lean_Elab_Quotation_15__oldRunTermElabM___rarg___closed__3 = _init_l___private_Init_Lean_Elab_Quotation_15__oldRunTermElabM___rarg___closed__3(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_15__oldRunTermElabM___rarg___closed__3); -l___private_Init_Lean_Elab_Quotation_15__oldRunTermElabM___rarg___closed__4 = _init_l___private_Init_Lean_Elab_Quotation_15__oldRunTermElabM___rarg___closed__4(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_15__oldRunTermElabM___rarg___closed__4); -l___private_Init_Lean_Elab_Quotation_15__oldRunTermElabM___rarg___closed__5 = _init_l___private_Init_Lean_Elab_Quotation_15__oldRunTermElabM___rarg___closed__5(); -lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_15__oldRunTermElabM___rarg___closed__5); +l___private_Init_Lean_Elab_Quotation_16__oldRunTermElabM___rarg___closed__1 = _init_l___private_Init_Lean_Elab_Quotation_16__oldRunTermElabM___rarg___closed__1(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_16__oldRunTermElabM___rarg___closed__1); +l___private_Init_Lean_Elab_Quotation_16__oldRunTermElabM___rarg___closed__2 = _init_l___private_Init_Lean_Elab_Quotation_16__oldRunTermElabM___rarg___closed__2(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_16__oldRunTermElabM___rarg___closed__2); +l___private_Init_Lean_Elab_Quotation_16__oldRunTermElabM___rarg___closed__3 = _init_l___private_Init_Lean_Elab_Quotation_16__oldRunTermElabM___rarg___closed__3(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_16__oldRunTermElabM___rarg___closed__3); +l___private_Init_Lean_Elab_Quotation_16__oldRunTermElabM___rarg___closed__4 = _init_l___private_Init_Lean_Elab_Quotation_16__oldRunTermElabM___rarg___closed__4(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_16__oldRunTermElabM___rarg___closed__4); +l___private_Init_Lean_Elab_Quotation_16__oldRunTermElabM___rarg___closed__5 = _init_l___private_Init_Lean_Elab_Quotation_16__oldRunTermElabM___rarg___closed__5(); +lean_mark_persistent(l___private_Init_Lean_Elab_Quotation_16__oldRunTermElabM___rarg___closed__5); l_Lean_Elab_Term_oldExpandStxQuot___closed__1 = _init_l_Lean_Elab_Term_oldExpandStxQuot___closed__1(); lean_mark_persistent(l_Lean_Elab_Term_oldExpandStxQuot___closed__1); l_Lean_Elab_Term_oldGetPatternVars___closed__1 = _init_l_Lean_Elab_Term_oldGetPatternVars___closed__1(); diff --git a/stage0/stdlib/Init/Lean/Elab/Syntax.c b/stage0/stdlib/Init/Lean/Elab/Syntax.c new file mode 100644 index 0000000000..3e6f60ec7b --- /dev/null +++ b/stage0/stdlib/Init/Lean/Elab/Syntax.c @@ -0,0 +1,5283 @@ +// Lean compiler output +// Module: Init.Lean.Elab.Syntax +// Imports: Init.Lean.Elab.Command Init.Lean.Elab.Quotation +#include "runtime/lean.h" +#if defined(__clang__) +#pragma clang diagnostic ignored "-Wunused-parameter" +#pragma clang diagnostic ignored "-Wunused-label" +#elif defined(__GNUC__) && !defined(__CLANG__) +#pragma GCC diagnostic ignored "-Wunused-parameter" +#pragma GCC diagnostic ignored "-Wunused-label" +#pragma GCC diagnostic ignored "-Wunused-but-set-variable" +#endif +#ifdef __cplusplus +extern "C" { +#endif +lean_object* l_Lean_Elab_Command_elabSyntax___closed__11; +lean_object* l___private_Init_Lean_Elab_Quotation_4__quoteOption___at_Lean_Elab_Term_toParserDescr___main___spec__1___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_Parser_Syntax_many___elambda__1___closed__1; +lean_object* l_Lean_Elab_Term_getEnv___rarg(lean_object*); +lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__2; +lean_object* l___regBuiltinCommandElab_Lean_Elab_Command_elabSyntax___closed__2; +lean_object* l_Lean_Elab_Term_toParserDescr___main___closed__37; +lean_object* l_Lean_Elab_Term_toParserDescr___main___closed__55; +extern lean_object* l_Lean_Parser_Term_andthen___elambda__1___closed__1; +lean_object* l_Lean_Elab_Term_toParserDescr___main___closed__7; +lean_object* l_Lean_Elab_Term_toParserDescr___main___closed__71; +lean_object* l_Lean_Syntax_isNatLitAux(lean_object*, lean_object*); +lean_object* l_Lean_Elab_Term_toParserDescr___main___closed__101; +extern lean_object* l_Lean_Parser_Syntax_many___elambda__1___closed__2; +lean_object* l_Lean_Elab_Command_getOptions(lean_object*, lean_object*); +extern lean_object* l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__4; +lean_object* l_Lean_Elab_Command_elabSyntax___closed__19; +lean_object* l_Lean_Elab_Term_toParserDescr___main___closed__79; +lean_object* l_Lean_Elab_Term_toParserDescr___main___closed__95; +extern lean_object* l_Lean_Parser_Syntax_try___elambda__1___closed__1; +extern lean_object* l_Lean_Parser_Syntax_many1___elambda__1___closed__1; +extern lean_object* l_Lean_Elab_Term_elabArrayLit___closed__13; +lean_object* l_unreachable_x21___rarg(lean_object*); +extern lean_object* l_Lean_nullKind; +extern lean_object* l___private_Init_Lean_Elab_Util_7__regTraceClasses___closed__2; +lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__4; +lean_object* l_Lean_Elab_Term_toParserDescr___main___closed__4; +lean_object* l_Lean_Elab_Term_toParserDescr___main___closed__57; +extern lean_object* l_Lean_Syntax_formatStxAux___main___closed__5; +lean_object* l_Lean_Format_pretty(lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Syntax_1__getOptNum___boxed(lean_object*); +lean_object* l_Lean_Elab_Term_toParserDescr___main___closed__12; +extern lean_object* l_Lean_Parser_Syntax_many1___elambda__1___closed__2; +lean_object* l_Lean_Elab_Term_toParserDescr___main___closed__53; +lean_object* l_Lean_Syntax_getIdAt(lean_object*, lean_object*); +lean_object* l_Lean_Elab_Term_toParserDescr___main___closed__42; +extern lean_object* l_Lean_Parser_Syntax_paren___elambda__1___closed__3; +lean_object* l_Lean_Elab_Term_toParserDescr___main___closed__100; +extern lean_object* l_Lean_nameToExprAux___main___closed__4; +lean_object* l_Lean_Elab_Term_toParserDescr___main___closed__17; +lean_object* l_Lean_Elab_Term_toParserDescr___main___closed__8; +extern lean_object* l_Lean_Elab_Command_runTermElabM___rarg___closed__1; +lean_object* l_Lean_Elab_Term_toParserDescr___main___closed__94; +lean_object* l_Lean_Elab_Command_elabSyntax___closed__7; +extern lean_object* l_Lean_stxInh; +extern lean_object* l_Lean_Parser_Syntax_orelse___elambda__1___closed__1; +extern lean_object* l_Array_empty___closed__1; +lean_object* l_Lean_Elab_Term_toParserDescr___main___closed__31; +lean_object* l_Lean_Elab_Term_toParserDescr___main___closed__59; +uint8_t l_Lean_checkTraceOption(lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_4__quoteOption___at_Lean_Elab_Term_toParserDescr___main___spec__1___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__8; +lean_object* l___regBuiltinCommandElab_Lean_Elab_Command_elabDeclareSyntaxCat___closed__1; +uint8_t lean_name_eq(lean_object*, lean_object*); +extern lean_object* l_Lean_Parser_Command_declaration___elambda__1___closed__2; +lean_object* l_Lean_Elab_Term_toParserDescr___main___closed__82; +lean_object* l___private_Init_Lean_Elab_Syntax_1__getOptNum(lean_object*); +extern lean_object* l_Lean_Parser_Level_num___elambda__1___closed__1; +lean_object* l_Lean_Elab_Term_toParserDescr___main___closed__63; +lean_object* l_Lean_mkIdentFrom(lean_object*, lean_object*); +lean_object* l_Lean_Elab_Term_toParserDescr___main___closed__24; +lean_object* l_Lean_Elab_Command_elabSyntax___closed__16; +lean_object* l_Lean_Elab_Command_elabSyntax___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* lean_array_push(lean_object*, lean_object*); +lean_object* lean_array_get_size(lean_object*); +extern lean_object* l_Lean_Parser_Term_num___elambda__1___closed__1; +lean_object* l_ReaderT_bind___at___private_Init_Lean_Elab_Quotation_1__quoteName___main___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Command_elabSyntax___closed__20; +lean_object* l_Lean_Elab_Term_toParserDescr___main___closed__3; +lean_object* l_Array_umapMAux___main___at_Lean_Elab_Term_toParserDescr___main___spec__2(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___regBuiltinCommandElab_Lean_Elab_Command_elabDeclareSyntaxCat___closed__2; +lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__6; +extern lean_object* l_Lean_Parser_Syntax_ident___elambda__1___closed__1; +lean_object* lean_string_utf8_byte_size(lean_object*); +lean_object* l_Lean_Elab_Term_toParserDescr___main___closed__61; +lean_object* l_Lean_Elab_Command_elabSyntax___closed__10; +lean_object* l___regBuiltinCommandElab_Lean_Elab_Command_elabSyntax___closed__1; +lean_object* l___private_Init_Lean_Elab_Quotation_1__quoteName___main(lean_object*); +extern lean_object* l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__2___closed__3; +extern lean_object* l___private_Init_Lean_Elab_Term_8__expandCDot___closed__4; +lean_object* lean_nat_add(lean_object*, lean_object*); +lean_object* l_Lean_Elab_Term_toParserDescr___main___closed__50; +lean_object* l_Lean_Elab_Command_elabDeclareSyntaxCat___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Command_addBuiltinCommandElab(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Term_toParserDescr___main___closed__99; +lean_object* l___private_Init_Lean_Elab_Syntax_2__mkParserSeq(lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Term_toParserDescr___main___closed__6; +lean_object* l_Lean_Elab_Term_toParserDescr___main___closed__80; +lean_object* l_Lean_Elab_Term_toParserDescr___main___closed__14; +lean_object* l_Lean_Elab_Term_toParserDescr___main___closed__28; +lean_object* l_Lean_Elab_Term_toParserDescr___main___closed__5; +lean_object* l_Lean_Elab_Term_toParserDescr___main___closed__75; +lean_object* l_Lean_Elab_Term_toParserDescr___main___closed__26; +lean_object* lean_array_fget(lean_object*, lean_object*); +lean_object* l_Lean_Elab_Term_toParserDescr___main___closed__58; +uint8_t lean_nat_dec_eq(lean_object*, lean_object*); +lean_object* l_Lean_Elab_Term_toParserDescr___main___closed__49; +extern lean_object* l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__2___closed__5; +lean_object* l_Lean_Elab_Term_toParserDescr___main___closed__34; +extern lean_object* l_Lean_Parser_Term_id___elambda__1___closed__2; +extern lean_object* l_Lean_numLitKind; +extern lean_object* l_Lean_Parser_Syntax_num___elambda__1___closed__1; +lean_object* l_Lean_Elab_Term_toParserDescr___main___closed__48; +lean_object* l_Lean_Elab_Term_throwUnsupportedSyntax___rarg(lean_object*); +lean_object* l___private_Init_Lean_Elab_Quotation_4__quoteOption___at_Lean_Elab_Term_toParserDescr___main___spec__1(lean_object*); +lean_object* l_Lean_Syntax_isStrLit_x3f(lean_object*); +lean_object* l_Lean_Elab_Command_elabSyntax___closed__6; +lean_object* l_Lean_Elab_Term_toParserDescr___main___closed__98; +lean_object* l_Lean_Elab_Term_toParserDescr___main___closed__73; +lean_object* l_Lean_Elab_Term_toParserDescr___main___closed__10; +lean_object* l_Lean_Elab_Term_toParserDescr___main___closed__32; +extern lean_object* l_Lean_Parser_Command_def___elambda__1___closed__2; +extern lean_object* l_Lean_Parser_Command_declValSimple___elambda__1___closed__2; +lean_object* l_Lean_Elab_Term_toParserDescr___main___closed__20; +lean_object* lean_array_get(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Unhygienic_run___rarg(lean_object*); +extern lean_object* l_Lean_Parser_Command_def___elambda__1___closed__1; +lean_object* l_Lean_Elab_Term_toParserDescr___main___closed__81; +lean_object* lean_array_fset(lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_Parser_Syntax_optional___elambda__1___closed__1; +extern lean_object* l_Lean_Elab_Term_mkConst___closed__4; +lean_object* l_Lean_Elab_Term_toParserDescr___main___closed__46; +lean_object* l___private_Init_Lean_Elab_Command_11__getVarDecls(lean_object*); +extern lean_object* l_Lean_Parser_unquotedSymbolFn___rarg___closed__1; +lean_object* l_Lean_Elab_Term_toParserDescr___main___closed__43; +lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__3; +lean_object* l_Lean_Elab_Term_toParserDescr___main___closed__15; +lean_object* l_Nat_repr(lean_object*); +lean_object* l_Lean_Elab_Term_toParserDescr___main___closed__96; +lean_object* l_Lean_Elab_Term_toParserDescr___main___closed__72; +extern lean_object* l_Lean_Parser_Command_attrInstance___elambda__1___closed__2; +lean_object* l_Lean_Elab_Term_toParserDescr___main___closed__23; +lean_object* l_Lean_Elab_Term_toParserDescr___main___closed__88; +lean_object* l_Lean_Elab_Term_toParserDescr___main___closed__30; +lean_object* l___private_Init_Lean_Elab_Command_1__ioErrorToMessage(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Term_toParserDescr___main___closed__76; +lean_object* l_Lean_Elab_Term_toParserDescr___main___closed__18; +extern lean_object* l_Lean_Parser_mkParserAttributeImpl___closed__1; +lean_object* lean_name_mk_string(lean_object*, lean_object*); +extern lean_object* l_Lean_choiceKind; +lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__7; +lean_object* l_Lean_Elab_Term_throwError___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Term_toParserDescr___main___closed__66; +lean_object* l_Lean_Elab_Term_toParserDescr___main___closed__56; +lean_object* l_Lean_Elab_Command_elabSyntax___closed__22; +lean_object* l_Lean_Elab_Term_toParserDescr___main___closed__77; +lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__1; +lean_object* l_Lean_Elab_Term_getCurrMacroScope(lean_object*, lean_object*); +lean_object* l_Lean_Elab_Term_toParserDescr___main___closed__41; +lean_object* l_Lean_Elab_Term_toParserDescr___main___closed__13; +lean_object* l_Lean_Elab_Command_throwError___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Term_toParserDescr___main___closed__104; +extern lean_object* l_Lean_Elab_Term_elabArrow___lambda__1___closed__6; +extern lean_object* l_Lean_Options_empty; +lean_object* l_Lean_Elab_Command_elabSyntax___closed__5; +lean_object* l___regBuiltinCommandElab_Lean_Elab_Command_elabSyntax___closed__3; +lean_object* l_Lean_Elab_Command_elabSyntax___closed__14; +lean_object* l_Lean_Elab_Term_toParserDescr___main___closed__35; +extern lean_object* l_Lean_Parser_Syntax_char___elambda__1___closed__1; +extern lean_object* l_Lean_Parser_Command_attributes___elambda__1___closed__5; +lean_object* l_Lean_Elab_Command_elabSyntax___closed__18; +lean_object* l___private_Init_Lean_Elab_Command_9__mkTermContext(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Command_elabSyntax___closed__15; +extern lean_object* l_Lean_Parser_Syntax_cat___elambda__1___closed__2; +extern lean_object* l_Lean_Parser_Command_attributes___elambda__1___closed__2; +lean_object* l_Lean_Elab_Term_toParserDescr___main___closed__36; +lean_object* l_Lean_Elab_Command_elabSyntax___closed__3; +lean_object* l_Lean_Elab_Command_elabCommand(lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_Parser_Syntax_sepBy___elambda__1___closed__1; +lean_object* l_Lean_Elab_Term_toParserDescr___main___closed__83; +lean_object* l___regBuiltinCommandElab_Lean_Elab_Command_elabSyntax(lean_object*); +extern lean_object* l_Lean_Parser_Command_declModifiers___elambda__1___closed__2; +lean_object* l_Lean_Elab_Term_toParserDescr___main___closed__16; +lean_object* l_Lean_Elab_Term_toParserDescr___main___closed__86; +lean_object* l_Lean_Elab_Term_toParserDescr___main___closed__85; +lean_object* l_Lean_Elab_Term_toParserDescr___main___closed__65; +extern lean_object* l_Lean_nullKind___closed__2; +extern lean_object* l_Lean_Parser_Term_str___elambda__1___closed__1; +extern lean_object* l_Lean_Unhygienic_MonadQuotation___closed__1; +extern lean_object* l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__2___closed__8; +lean_object* l_Lean_Elab_Term_toParserDescr___main___closed__70; +extern lean_object* l_Lean_Parser_Syntax_lookahead___elambda__1___closed__1; +extern lean_object* l_Lean_Parser_Syntax_sepBy1___elambda__1___closed__2; +lean_object* l_Lean_Elab_Term_toParserDescr___main(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Command_2__getState(lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Syntax_2__mkParserSeq___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_registerParserCategory(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*); +lean_object* l_Lean_Elab_Term_toParserDescr___main___closed__33; +lean_object* l_Lean_Elab_Command_elabSyntax___closed__9; +lean_object* l_Lean_Elab_Term_toParserDescr___main___closed__22; +extern lean_object* l_Lean_Parser_Term_str___elambda__1___closed__2; +lean_object* l_Lean_Elab_Term_toParserDescr___main___closed__93; +lean_object* l_Lean_Elab_Term_toParserDescr___main___closed__54; +lean_object* l_Lean_Elab_Term_toParserDescr___main___closed__84; +lean_object* l_Lean_Elab_Command_elabSyntax___closed__4; +lean_object* l_Lean_Name_appendAfter(lean_object*, lean_object*); +extern lean_object* l_Lean_Parser_Syntax_lookahead___elambda__1___closed__2; +lean_object* l_Lean_Elab_Term_toParserDescr___main___closed__45; +lean_object* l_Lean_Elab_Command_elabSyntax___closed__17; +lean_object* l_Lean_Elab_Term_toParserDescr___main___closed__40; +lean_object* l_Lean_Elab_Term_toParserDescr___main___closed__67; +extern lean_object* l_Lean_Parser_Syntax_sepBy1___elambda__1___closed__1; +lean_object* l_Lean_Elab_Term_toParserDescr___main___closed__78; +lean_object* l_Lean_Elab_Term_toParserDescr___main___closed__91; +uint8_t l_Lean_Parser_isParserCategory(lean_object*, lean_object*); +lean_object* l_Lean_Elab_Command_getCurrMacroScope(lean_object*, lean_object*); +extern lean_object* l_Lean_Parser_Command_private___elambda__1___closed__1; +lean_object* l_Lean_Elab_Term_toParserDescr___main___closed__103; +extern lean_object* l_Lean_Parser_Syntax_optional___elambda__1___closed__2; +lean_object* l_Lean_Elab_Command_elabSyntax___closed__8; +lean_object* l_Lean_Syntax_getArgs(lean_object*); +lean_object* l_Lean_Syntax_getKind(lean_object*); +lean_object* l_Lean_Elab_Term_toParserDescr___main___closed__51; +extern lean_object* l_Lean_Parser_Syntax_atom___elambda__1___closed__2; +lean_object* l_Lean_Elab_Command_elabSyntax___closed__1; +lean_object* l_Lean_Elab_Term_toParserDescr___main___closed__21; +lean_object* l___regBuiltinCommandElab_Lean_Elab_Command_elabDeclareSyntaxCat(lean_object*); +lean_object* l_Lean_Elab_Term_toParserDescr___main___closed__38; +extern lean_object* l_Lean_Parser_Term_app___elambda__1___closed__2; +lean_object* l_Lean_Elab_Term_toParserDescr___main___closed__39; +lean_object* l_Lean_Parser_mkFreshKind(lean_object*, lean_object*); +lean_object* l_Lean_Elab_Command_elabSyntax___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__5; +lean_object* l_Lean_Elab_Command_elabSyntax___closed__2; +lean_object* l_Lean_Elab_Term_toParserDescr___main___closed__62; +lean_object* l_Lean_Elab_Term_toParserDescr___main___closed__19; +lean_object* l_Lean_Elab_Term_toParserDescr(lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_Parser_Syntax_str___elambda__1___closed__1; +lean_object* l_Lean_mkStxStrLit(lean_object*, lean_object*); +lean_object* l_Lean_Elab_Term_toParserDescr___main___closed__87; +lean_object* l_Lean_Elab_Command_elabSyntax(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Command_elabSyntax___closed__21; +extern lean_object* l_Lean_Elab_Command_declareBuiltinCommandElab___closed__3; +uint8_t l_Lean_Syntax_isNone(lean_object*); +lean_object* l_Lean_Elab_Command_getEnv(lean_object*, lean_object*); +lean_object* l_Lean_Elab_Command_elabSyntax___closed__23; +lean_object* l_Lean_Elab_Term_toParserDescr___main___closed__11; +extern lean_object* l_Lean_mkOptionalNode___closed__1; +lean_object* l_Lean_Elab_Command_elabSyntax___closed__13; +lean_object* l_Lean_Elab_Term_toParserDescr___main___closed__68; +lean_object* l_Lean_Elab_Term_toParserDescr___main___closed__25; +lean_object* l_Lean_Elab_Term_toParserDescr___main___closed__9; +lean_object* l_Lean_Elab_Term_elabBinders___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Command_setEnv(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Term_toParserDescr___main___closed__27; +extern lean_object* l_Lean_Syntax_getKind___closed__3; +lean_object* l_Lean_Elab_Term_toParserDescr___main___closed__52; +lean_object* l___regBuiltinCommandElab_Lean_Elab_Command_elabDeclareSyntaxCat___closed__3; +lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__9; +extern lean_object* l_Lean_Parser_Command_syntaxCat___elambda__1___closed__2; +lean_object* l_Lean_mkStxLit(lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_Parser_Command_private___elambda__1___closed__2; +lean_object* l_Lean_Syntax_getArg(lean_object*, lean_object*); +extern lean_object* l_Lean_Parser_Command_optDeclSig___elambda__1___closed__2; +lean_object* l_Lean_Elab_Term_toParserDescr___main___closed__29; +extern lean_object* l_Lean_Parser_Term_typeSpec___elambda__1___closed__2; +lean_object* l_Lean_Elab_Term_toParserDescr___main___closed__64; +extern lean_object* l_Lean_Meta_DiscrTree_Trie_format___main___rarg___closed__1; +lean_object* l_Lean_Syntax_formatStxAux___main(lean_object*, lean_object*, lean_object*); +lean_object* l_unsafeCast(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Term_toParserDescr___main___closed__1; +lean_object* l_Lean_Elab_Command_elabSyntax___closed__12; +lean_object* l_Lean_Elab_Term_toParserDescr___main___closed__97; +extern lean_object* l_Lean_Parser_Syntax_sepBy___elambda__1___closed__2; +lean_object* l_Lean_Elab_Term_toParserDescr___main___closed__90; +lean_object* l_Lean_Elab_Term_toParserDescr___main___closed__102; +lean_object* l_Lean_Elab_Term_toParserDescr___main___closed__2; +extern lean_object* l_Lean_Parser_mkParserOfConstantUnsafe___closed__3; +lean_object* l_Lean_Elab_Term_toParserDescr___main___closed__74; +lean_object* l_Lean_Elab_Term_toParserDescr___main___closed__47; +lean_object* l_Lean_Elab_Term_toParserDescr___main___closed__60; +lean_object* l_Lean_Elab_Term_toParserDescr___main___closed__89; +extern lean_object* l_Lean_Parser_Command_syntax___elambda__1___closed__1; +extern lean_object* l_Lean_Parser_Term_orelse___elambda__1___closed__1; +lean_object* lean_name_mk_numeral(lean_object*, lean_object*); +lean_object* l_Lean_Elab_Term_toParserDescr___main___closed__69; +lean_object* l_Lean_Elab_Command_elabDeclareSyntaxCat(lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_Parser_Syntax_try___elambda__1___closed__2; +lean_object* l_Lean_Elab_Term_toParserDescr___main___closed__92; +extern lean_object* l_Lean_Parser_Term_char___elambda__1___closed__1; +lean_object* l_Lean_Elab_Term_toParserDescr___main___closed__44; +lean_object* l___private_Init_Lean_Elab_Command_3__setState(lean_object*, lean_object*, lean_object*); +extern lean_object* l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___closed__3; +uint8_t lean_nat_dec_lt(lean_object*, lean_object*); +extern lean_object* l_Lean_Parser_Command_declId___elambda__1___closed__2; +lean_object* l___private_Init_Lean_Elab_Command_10__mkTermState(lean_object*); +lean_object* l_Lean_Elab_Command_logTrace(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Init_Lean_Elab_Syntax_1__getOptNum(lean_object* x_1) { +_start: +{ +uint8_t x_2; +x_2 = l_Lean_Syntax_isNone(x_1); +if (x_2 == 0) +{ +lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; +x_3 = lean_unsigned_to_nat(1u); +x_4 = l_Lean_Syntax_getArg(x_1, x_3); +x_5 = l_Lean_numLitKind; +x_6 = l_Lean_Syntax_isNatLitAux(x_5, x_4); +lean_dec(x_4); +return x_6; +} +else +{ +lean_object* x_7; +x_7 = lean_box(0); +return x_7; +} +} +} +lean_object* l___private_Init_Lean_Elab_Syntax_1__getOptNum___boxed(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = l___private_Init_Lean_Elab_Syntax_1__getOptNum(x_1); +lean_dec(x_1); +return x_2; +} +} +lean_object* _init_l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("ParserDescr.andthen"); +return x_1; +} +} +lean_object* _init_l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__1; +x_2 = lean_string_utf8_byte_size(x_1); +return x_2; +} +} +lean_object* _init_l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__1; +x_2 = lean_unsigned_to_nat(0u); +x_3 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__2; +x_4 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_4, 0, x_1); +lean_ctor_set(x_4, 1, x_2); +lean_ctor_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* _init_l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Parser_mkParserOfConstantUnsafe___closed__3; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +lean_object* _init_l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__4; +x_2 = l_Lean_Parser_Term_andthen___elambda__1___closed__1; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +lean_object* _init_l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_nameToExprAux___main___closed__4; +x_2 = l_Lean_Parser_mkParserOfConstantUnsafe___closed__3; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +lean_object* _init_l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__6; +x_2 = l_Lean_Parser_Term_andthen___elambda__1___closed__1; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +lean_object* _init_l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__8() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__7; +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_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__9() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__8; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; +} +} +lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___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_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; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; +x_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_Elab_Term_getCurrMacroScope(x_5, x_6); +x_14 = lean_ctor_get(x_13, 0); +lean_inc(x_14); +x_15 = lean_ctor_get(x_13, 1); +lean_inc(x_15); +lean_dec(x_13); +x_16 = lean_box(0); +x_17 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__5; +x_18 = lean_name_mk_numeral(x_17, x_14); +x_19 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__3; +x_20 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__9; +x_21 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_21, 0, x_16); +lean_ctor_set(x_21, 1, x_19); +lean_ctor_set(x_21, 2, x_18); +lean_ctor_set(x_21, 3, x_20); +x_22 = l_Array_empty___closed__1; +x_23 = lean_array_push(x_22, x_21); +x_24 = l___private_Init_Lean_Elab_Term_8__expandCDot___closed__4; +x_25 = lean_array_push(x_23, x_24); +x_26 = l_Lean_Parser_Term_id___elambda__1___closed__2; +x_27 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_27, 0, x_26); +lean_ctor_set(x_27, 1, x_25); +x_28 = lean_array_push(x_22, x_27); +x_29 = lean_array_push(x_28, x_4); +x_30 = l_Lean_Parser_Term_app___elambda__1___closed__2; +x_31 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_31, 0, x_30); +lean_ctor_set(x_31, 1, x_29); +x_32 = lean_array_push(x_22, x_31); +x_33 = lean_array_push(x_32, x_10); +x_34 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_34, 0, x_30); +lean_ctor_set(x_34, 1, x_33); +x_3 = x_12; +x_4 = x_34; +x_6 = x_15; +goto _start; +} +} +} +lean_object* l___private_Init_Lean_Elab_Syntax_2__mkParserSeq(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; lean_object* x_5; uint8_t x_6; +x_4 = lean_array_get_size(x_1); +x_5 = lean_unsigned_to_nat(0u); +x_6 = lean_nat_dec_eq(x_4, x_5); +if (x_6 == 0) +{ +lean_object* x_7; uint8_t x_8; +x_7 = lean_unsigned_to_nat(1u); +x_8 = lean_nat_dec_eq(x_4, x_7); +lean_dec(x_4); +if (x_8 == 0) +{ +lean_object* x_9; lean_object* x_10; lean_object* x_11; +x_9 = l_Lean_stxInh; +x_10 = lean_array_get(x_9, x_1, x_5); +x_11 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1(x_1, x_1, x_7, x_10, x_2, x_3); +return x_11; +} +else +{ +lean_object* x_12; lean_object* x_13; lean_object* x_14; +x_12 = l_Lean_stxInh; +x_13 = lean_array_get(x_12, x_1, x_5); +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; +lean_dec(x_4); +x_15 = l_Lean_Elab_Term_throwUnsupportedSyntax___rarg(x_3); +return x_15; +} +} +} +lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___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_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1(x_1, x_2, x_3, x_4, x_5, x_6); +lean_dec(x_5); +lean_dec(x_2); +lean_dec(x_1); +return x_7; +} +} +lean_object* l___private_Init_Lean_Elab_Syntax_2__mkParserSeq___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; +x_4 = l___private_Init_Lean_Elab_Syntax_2__mkParserSeq(x_1, x_2, x_3); +lean_dec(x_2); +lean_dec(x_1); +return x_4; +} +} +lean_object* l___private_Init_Lean_Elab_Quotation_4__quoteOption___at_Lean_Elab_Term_toParserDescr___main___spec__1___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; 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; +x_5 = lean_box(0); +x_6 = l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__2___closed__5; +x_7 = lean_name_mk_numeral(x_6, x_2); +x_8 = l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__2___closed__3; +x_9 = l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___lambda__2___closed__8; +x_10 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_10, 0, x_5); +lean_ctor_set(x_10, 1, x_8); +lean_ctor_set(x_10, 2, x_7); +lean_ctor_set(x_10, 3, x_9); +x_11 = l_Array_empty___closed__1; +x_12 = lean_array_push(x_11, x_10); +x_13 = l___private_Init_Lean_Elab_Term_8__expandCDot___closed__4; +x_14 = lean_array_push(x_12, x_13); +x_15 = l_Lean_Parser_Term_id___elambda__1___closed__2; +x_16 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_16, 0, x_15); +lean_ctor_set(x_16, 1, x_14); +x_17 = lean_array_push(x_11, x_16); +x_18 = l_Nat_repr(x_1); +x_19 = l_Lean_numLitKind; +x_20 = l_Lean_mkStxLit(x_19, x_18, x_5); +x_21 = l_Lean_mkOptionalNode___closed__1; +x_22 = lean_array_push(x_21, x_20); +x_23 = l_Lean_Parser_Term_num___elambda__1___closed__1; +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_17, x_24); +x_26 = l_Lean_Parser_Term_app___elambda__1___closed__2; +x_27 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_27, 0, x_26); +lean_ctor_set(x_27, 1, x_25); +x_28 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_28, 0, x_27); +lean_ctor_set(x_28, 1, x_4); +return x_28; +} +} +lean_object* l___private_Init_Lean_Elab_Quotation_4__quoteOption___at_Lean_Elab_Term_toParserDescr___main___spec__1(lean_object* x_1) { +_start: +{ +if (lean_obj_tag(x_1) == 0) +{ +lean_object* x_2; +x_2 = l___private_Init_Lean_Elab_Quotation_4__quoteOption___rarg___closed__3; +return x_2; +} +else +{ +lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; +x_3 = lean_ctor_get(x_1, 0); +lean_inc(x_3); +lean_dec(x_1); +x_4 = lean_alloc_closure((void*)(l___private_Init_Lean_Elab_Quotation_4__quoteOption___at_Lean_Elab_Term_toParserDescr___main___spec__1___lambda__1___boxed), 4, 1); +lean_closure_set(x_4, 0, x_3); +x_5 = l_Lean_Unhygienic_MonadQuotation___closed__1; +x_6 = lean_alloc_closure((void*)(l_ReaderT_bind___at___private_Init_Lean_Elab_Quotation_1__quoteName___main___spec__1___rarg), 4, 2); +lean_closure_set(x_6, 0, x_5); +lean_closure_set(x_6, 1, x_4); +x_7 = l_Lean_Unhygienic_run___rarg(x_6); +return x_7; +} +} +} +lean_object* l_Array_umapMAux___main___at_Lean_Elab_Term_toParserDescr___main___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +lean_object* x_5; uint8_t x_6; +x_5 = lean_array_get_size(x_2); +x_6 = lean_nat_dec_lt(x_1, x_5); +lean_dec(x_5); +if (x_6 == 0) +{ +lean_object* x_7; lean_object* x_8; lean_object* x_9; +lean_dec(x_3); +lean_dec(x_1); +x_7 = l_Array_empty___closed__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_4); +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_1); +x_11 = lean_box(0); +x_12 = x_11; +x_13 = lean_array_fset(x_2, x_1, x_12); +lean_inc(x_3); +lean_inc(x_10); +x_14 = l_Lean_Elab_Term_toParserDescr___main(x_10, x_3, x_4); +if (lean_obj_tag(x_14) == 0) +{ +lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; +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_1, x_17); +x_19 = x_15; +lean_dec(x_10); +x_20 = lean_array_fset(x_13, x_1, x_19); +lean_dec(x_1); +x_1 = x_18; +x_2 = x_20; +x_4 = x_16; +goto _start; +} +else +{ +uint8_t x_22; +lean_dec(x_13); +lean_dec(x_10); +lean_dec(x_3); +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* _init_l_Lean_Elab_Term_toParserDescr___main___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("ERROR "); +return x_1; +} +} +lean_object* _init_l_Lean_Elab_Term_toParserDescr___main___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Term_toParserDescr___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_Lean_Elab_Term_toParserDescr___main___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Term_toParserDescr___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_Lean_Elab_Term_toParserDescr___main___closed__4() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("ParserDescr.orelse"); +return x_1; +} +} +lean_object* _init_l_Lean_Elab_Term_toParserDescr___main___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Term_toParserDescr___main___closed__4; +x_2 = lean_string_utf8_byte_size(x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Elab_Term_toParserDescr___main___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Elab_Term_toParserDescr___main___closed__4; +x_2 = lean_unsigned_to_nat(0u); +x_3 = l_Lean_Elab_Term_toParserDescr___main___closed__5; +x_4 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_4, 0, x_1); +lean_ctor_set(x_4, 1, x_2); +lean_ctor_set(x_4, 2, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Elab_Term_toParserDescr___main___closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__4; +x_2 = l_Lean_Parser_Term_orelse___elambda__1___closed__1; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Elab_Term_toParserDescr___main___closed__8() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__6; +x_2 = l_Lean_Parser_Term_orelse___elambda__1___closed__1; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Elab_Term_toParserDescr___main___closed__9() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Term_toParserDescr___main___closed__8; +x_3 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; +} +} +lean_object* _init_l_Lean_Elab_Term_toParserDescr___main___closed__10() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Term_toParserDescr___main___closed__9; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; +} +} +lean_object* _init_l_Lean_Elab_Term_toParserDescr___main___closed__11() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("ParserDescr.many1"); +return x_1; +} +} +lean_object* _init_l_Lean_Elab_Term_toParserDescr___main___closed__12() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Term_toParserDescr___main___closed__11; +x_2 = lean_string_utf8_byte_size(x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Elab_Term_toParserDescr___main___closed__13() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Elab_Term_toParserDescr___main___closed__11; +x_2 = lean_unsigned_to_nat(0u); +x_3 = l_Lean_Elab_Term_toParserDescr___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_Lean_Elab_Term_toParserDescr___main___closed__14() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__4; +x_2 = l_Lean_Parser_Syntax_many1___elambda__1___closed__1; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Elab_Term_toParserDescr___main___closed__15() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__6; +x_2 = l_Lean_Parser_Syntax_many1___elambda__1___closed__1; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Elab_Term_toParserDescr___main___closed__16() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Term_toParserDescr___main___closed__15; +x_3 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; +} +} +lean_object* _init_l_Lean_Elab_Term_toParserDescr___main___closed__17() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Term_toParserDescr___main___closed__16; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; +} +} +lean_object* _init_l_Lean_Elab_Term_toParserDescr___main___closed__18() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("ParserDescr.many"); +return x_1; +} +} +lean_object* _init_l_Lean_Elab_Term_toParserDescr___main___closed__19() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Term_toParserDescr___main___closed__18; +x_2 = lean_string_utf8_byte_size(x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Elab_Term_toParserDescr___main___closed__20() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Elab_Term_toParserDescr___main___closed__18; +x_2 = lean_unsigned_to_nat(0u); +x_3 = l_Lean_Elab_Term_toParserDescr___main___closed__19; +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_Lean_Elab_Term_toParserDescr___main___closed__21() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__4; +x_2 = l_Lean_Parser_Syntax_many___elambda__1___closed__1; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Elab_Term_toParserDescr___main___closed__22() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__6; +x_2 = l_Lean_Parser_Syntax_many___elambda__1___closed__1; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Elab_Term_toParserDescr___main___closed__23() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Term_toParserDescr___main___closed__22; +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_Lean_Elab_Term_toParserDescr___main___closed__24() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Term_toParserDescr___main___closed__23; +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_toParserDescr___main___closed__25() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("ParserDescr.sepBy1"); +return x_1; +} +} +lean_object* _init_l_Lean_Elab_Term_toParserDescr___main___closed__26() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Term_toParserDescr___main___closed__25; +x_2 = lean_string_utf8_byte_size(x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Elab_Term_toParserDescr___main___closed__27() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Elab_Term_toParserDescr___main___closed__25; +x_2 = lean_unsigned_to_nat(0u); +x_3 = l_Lean_Elab_Term_toParserDescr___main___closed__26; +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_Lean_Elab_Term_toParserDescr___main___closed__28() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__4; +x_2 = l_Lean_Parser_Syntax_sepBy1___elambda__1___closed__1; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Elab_Term_toParserDescr___main___closed__29() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__6; +x_2 = l_Lean_Parser_Syntax_sepBy1___elambda__1___closed__1; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Elab_Term_toParserDescr___main___closed__30() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Term_toParserDescr___main___closed__29; +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_Lean_Elab_Term_toParserDescr___main___closed__31() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Term_toParserDescr___main___closed__30; +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_toParserDescr___main___closed__32() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("ParserDescr.sepBy"); +return x_1; +} +} +lean_object* _init_l_Lean_Elab_Term_toParserDescr___main___closed__33() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Term_toParserDescr___main___closed__32; +x_2 = lean_string_utf8_byte_size(x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Elab_Term_toParserDescr___main___closed__34() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Elab_Term_toParserDescr___main___closed__32; +x_2 = lean_unsigned_to_nat(0u); +x_3 = l_Lean_Elab_Term_toParserDescr___main___closed__33; +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_Lean_Elab_Term_toParserDescr___main___closed__35() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__4; +x_2 = l_Lean_Parser_Syntax_sepBy___elambda__1___closed__1; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Elab_Term_toParserDescr___main___closed__36() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__6; +x_2 = l_Lean_Parser_Syntax_sepBy___elambda__1___closed__1; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Elab_Term_toParserDescr___main___closed__37() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Term_toParserDescr___main___closed__36; +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_Lean_Elab_Term_toParserDescr___main___closed__38() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Term_toParserDescr___main___closed__37; +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_toParserDescr___main___closed__39() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("ParserDescr.optional"); +return x_1; +} +} +lean_object* _init_l_Lean_Elab_Term_toParserDescr___main___closed__40() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Term_toParserDescr___main___closed__39; +x_2 = lean_string_utf8_byte_size(x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Elab_Term_toParserDescr___main___closed__41() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Elab_Term_toParserDescr___main___closed__39; +x_2 = lean_unsigned_to_nat(0u); +x_3 = l_Lean_Elab_Term_toParserDescr___main___closed__40; +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_Lean_Elab_Term_toParserDescr___main___closed__42() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__4; +x_2 = l_Lean_Parser_Syntax_optional___elambda__1___closed__1; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Elab_Term_toParserDescr___main___closed__43() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__6; +x_2 = l_Lean_Parser_Syntax_optional___elambda__1___closed__1; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Elab_Term_toParserDescr___main___closed__44() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Term_toParserDescr___main___closed__43; +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_Lean_Elab_Term_toParserDescr___main___closed__45() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Term_toParserDescr___main___closed__44; +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_toParserDescr___main___closed__46() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("ParserDescr.lookahead"); +return x_1; +} +} +lean_object* _init_l_Lean_Elab_Term_toParserDescr___main___closed__47() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Term_toParserDescr___main___closed__46; +x_2 = lean_string_utf8_byte_size(x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Elab_Term_toParserDescr___main___closed__48() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Elab_Term_toParserDescr___main___closed__46; +x_2 = lean_unsigned_to_nat(0u); +x_3 = l_Lean_Elab_Term_toParserDescr___main___closed__47; +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_Lean_Elab_Term_toParserDescr___main___closed__49() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__4; +x_2 = l_Lean_Parser_Syntax_lookahead___elambda__1___closed__1; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Elab_Term_toParserDescr___main___closed__50() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__6; +x_2 = l_Lean_Parser_Syntax_lookahead___elambda__1___closed__1; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Elab_Term_toParserDescr___main___closed__51() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Term_toParserDescr___main___closed__50; +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_Lean_Elab_Term_toParserDescr___main___closed__52() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Term_toParserDescr___main___closed__51; +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_toParserDescr___main___closed__53() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("ParserDescr.try"); +return x_1; +} +} +lean_object* _init_l_Lean_Elab_Term_toParserDescr___main___closed__54() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Term_toParserDescr___main___closed__53; +x_2 = lean_string_utf8_byte_size(x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Elab_Term_toParserDescr___main___closed__55() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Elab_Term_toParserDescr___main___closed__53; +x_2 = lean_unsigned_to_nat(0u); +x_3 = l_Lean_Elab_Term_toParserDescr___main___closed__54; +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_Lean_Elab_Term_toParserDescr___main___closed__56() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__4; +x_2 = l_Lean_Parser_Syntax_try___elambda__1___closed__1; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Elab_Term_toParserDescr___main___closed__57() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__6; +x_2 = l_Lean_Parser_Syntax_try___elambda__1___closed__1; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Elab_Term_toParserDescr___main___closed__58() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Term_toParserDescr___main___closed__57; +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_Lean_Elab_Term_toParserDescr___main___closed__59() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Term_toParserDescr___main___closed__58; +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_toParserDescr___main___closed__60() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("ParserDescr.ident"); +return x_1; +} +} +lean_object* _init_l_Lean_Elab_Term_toParserDescr___main___closed__61() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Term_toParserDescr___main___closed__60; +x_2 = lean_string_utf8_byte_size(x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Elab_Term_toParserDescr___main___closed__62() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Elab_Term_toParserDescr___main___closed__60; +x_2 = lean_unsigned_to_nat(0u); +x_3 = l_Lean_Elab_Term_toParserDescr___main___closed__61; +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_Lean_Elab_Term_toParserDescr___main___closed__63() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__4; +x_2 = l_Lean_Syntax_getKind___closed__3; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Elab_Term_toParserDescr___main___closed__64() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__6; +x_2 = l_Lean_Syntax_getKind___closed__3; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Elab_Term_toParserDescr___main___closed__65() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Term_toParserDescr___main___closed__64; +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_Lean_Elab_Term_toParserDescr___main___closed__66() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Term_toParserDescr___main___closed__65; +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_toParserDescr___main___closed__67() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("ParserDescr.char"); +return x_1; +} +} +lean_object* _init_l_Lean_Elab_Term_toParserDescr___main___closed__68() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Term_toParserDescr___main___closed__67; +x_2 = lean_string_utf8_byte_size(x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Elab_Term_toParserDescr___main___closed__69() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Elab_Term_toParserDescr___main___closed__67; +x_2 = lean_unsigned_to_nat(0u); +x_3 = l_Lean_Elab_Term_toParserDescr___main___closed__68; +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_Lean_Elab_Term_toParserDescr___main___closed__70() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__4; +x_2 = l_Lean_Parser_Term_char___elambda__1___closed__1; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Elab_Term_toParserDescr___main___closed__71() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__6; +x_2 = l_Lean_Parser_Term_char___elambda__1___closed__1; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Elab_Term_toParserDescr___main___closed__72() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Term_toParserDescr___main___closed__71; +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_Lean_Elab_Term_toParserDescr___main___closed__73() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Term_toParserDescr___main___closed__72; +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_toParserDescr___main___closed__74() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("ParserDescr.str"); +return x_1; +} +} +lean_object* _init_l_Lean_Elab_Term_toParserDescr___main___closed__75() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Term_toParserDescr___main___closed__74; +x_2 = lean_string_utf8_byte_size(x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Elab_Term_toParserDescr___main___closed__76() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Elab_Term_toParserDescr___main___closed__74; +x_2 = lean_unsigned_to_nat(0u); +x_3 = l_Lean_Elab_Term_toParserDescr___main___closed__75; +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_Lean_Elab_Term_toParserDescr___main___closed__77() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__4; +x_2 = l_Lean_Parser_Term_str___elambda__1___closed__1; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Elab_Term_toParserDescr___main___closed__78() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__6; +x_2 = l_Lean_Parser_Term_str___elambda__1___closed__1; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Elab_Term_toParserDescr___main___closed__79() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Term_toParserDescr___main___closed__78; +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_Lean_Elab_Term_toParserDescr___main___closed__80() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Term_toParserDescr___main___closed__79; +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_toParserDescr___main___closed__81() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("ParserDescr.num"); +return x_1; +} +} +lean_object* _init_l_Lean_Elab_Term_toParserDescr___main___closed__82() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Term_toParserDescr___main___closed__81; +x_2 = lean_string_utf8_byte_size(x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Elab_Term_toParserDescr___main___closed__83() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Elab_Term_toParserDescr___main___closed__81; +x_2 = lean_unsigned_to_nat(0u); +x_3 = l_Lean_Elab_Term_toParserDescr___main___closed__82; +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_Lean_Elab_Term_toParserDescr___main___closed__84() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__4; +x_2 = l_Lean_Parser_Level_num___elambda__1___closed__1; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Elab_Term_toParserDescr___main___closed__85() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__6; +x_2 = l_Lean_Parser_Level_num___elambda__1___closed__1; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Elab_Term_toParserDescr___main___closed__86() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Term_toParserDescr___main___closed__85; +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_Lean_Elab_Term_toParserDescr___main___closed__87() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Term_toParserDescr___main___closed__86; +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_toParserDescr___main___closed__88() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("ParserDescr.symbol"); +return x_1; +} +} +lean_object* _init_l_Lean_Elab_Term_toParserDescr___main___closed__89() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Term_toParserDescr___main___closed__88; +x_2 = lean_string_utf8_byte_size(x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Elab_Term_toParserDescr___main___closed__90() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Elab_Term_toParserDescr___main___closed__88; +x_2 = lean_unsigned_to_nat(0u); +x_3 = l_Lean_Elab_Term_toParserDescr___main___closed__89; +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_Lean_Elab_Term_toParserDescr___main___closed__91() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__4; +x_2 = l_Lean_Parser_unquotedSymbolFn___rarg___closed__1; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Elab_Term_toParserDescr___main___closed__92() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__6; +x_2 = l_Lean_Parser_unquotedSymbolFn___rarg___closed__1; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Elab_Term_toParserDescr___main___closed__93() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Term_toParserDescr___main___closed__92; +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_Lean_Elab_Term_toParserDescr___main___closed__94() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Term_toParserDescr___main___closed__93; +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_toParserDescr___main___closed__95() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("ParserDescr.parser"); +return x_1; +} +} +lean_object* _init_l_Lean_Elab_Term_toParserDescr___main___closed__96() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Term_toParserDescr___main___closed__95; +x_2 = lean_string_utf8_byte_size(x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Elab_Term_toParserDescr___main___closed__97() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Elab_Term_toParserDescr___main___closed__95; +x_2 = lean_unsigned_to_nat(0u); +x_3 = l_Lean_Elab_Term_toParserDescr___main___closed__96; +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_Lean_Elab_Term_toParserDescr___main___closed__98() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__4; +x_2 = l_Lean_Parser_mkParserAttributeImpl___closed__1; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Elab_Term_toParserDescr___main___closed__99() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__6; +x_2 = l_Lean_Parser_mkParserAttributeImpl___closed__1; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Elab_Term_toParserDescr___main___closed__100() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Term_toParserDescr___main___closed__99; +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_Lean_Elab_Term_toParserDescr___main___closed__101() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Term_toParserDescr___main___closed__100; +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_toParserDescr___main___closed__102() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("unknown category '"); +return x_1; +} +} +lean_object* _init_l_Lean_Elab_Term_toParserDescr___main___closed__103() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Term_toParserDescr___main___closed__102; +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_toParserDescr___main___closed__104() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Term_toParserDescr___main___closed__103; +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_toParserDescr___main(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; lean_object* x_5; uint8_t x_6; +lean_inc(x_1); +x_4 = l_Lean_Syntax_getKind(x_1); +x_5 = l_Lean_nullKind; +x_6 = lean_name_eq(x_4, x_5); +if (x_6 == 0) +{ +lean_object* x_7; uint8_t x_8; +x_7 = l_Lean_choiceKind; +x_8 = lean_name_eq(x_4, x_7); +if (x_8 == 0) +{ +lean_object* x_9; uint8_t x_10; +x_9 = l_Lean_Parser_Syntax_paren___elambda__1___closed__3; +x_10 = lean_name_eq(x_4, x_9); +if (x_10 == 0) +{ +lean_object* x_11; uint8_t x_12; +x_11 = l_Lean_Parser_Syntax_cat___elambda__1___closed__2; +x_12 = lean_name_eq(x_4, x_11); +if (x_12 == 0) +{ +lean_object* x_13; uint8_t x_14; +x_13 = l_Lean_Parser_Syntax_atom___elambda__1___closed__2; +x_14 = lean_name_eq(x_4, x_13); +if (x_14 == 0) +{ +lean_object* x_15; uint8_t x_16; +x_15 = l_Lean_Parser_Syntax_num___elambda__1___closed__1; +x_16 = lean_name_eq(x_4, x_15); +if (x_16 == 0) +{ +lean_object* x_17; uint8_t x_18; +x_17 = l_Lean_Parser_Syntax_str___elambda__1___closed__1; +x_18 = lean_name_eq(x_4, x_17); +if (x_18 == 0) +{ +lean_object* x_19; uint8_t x_20; +x_19 = l_Lean_Parser_Syntax_char___elambda__1___closed__1; +x_20 = lean_name_eq(x_4, x_19); +if (x_20 == 0) +{ +lean_object* x_21; uint8_t x_22; +x_21 = l_Lean_Parser_Syntax_ident___elambda__1___closed__1; +x_22 = lean_name_eq(x_4, x_21); +if (x_22 == 0) +{ +lean_object* x_23; uint8_t x_24; +x_23 = l_Lean_Parser_Syntax_try___elambda__1___closed__2; +x_24 = lean_name_eq(x_4, x_23); +if (x_24 == 0) +{ +lean_object* x_25; uint8_t x_26; +x_25 = l_Lean_Parser_Syntax_lookahead___elambda__1___closed__2; +x_26 = lean_name_eq(x_4, x_25); +if (x_26 == 0) +{ +lean_object* x_27; uint8_t x_28; +x_27 = l_Lean_Parser_Syntax_optional___elambda__1___closed__2; +x_28 = lean_name_eq(x_4, x_27); +if (x_28 == 0) +{ +lean_object* x_29; uint8_t x_30; +x_29 = l_Lean_Parser_Syntax_sepBy___elambda__1___closed__2; +x_30 = lean_name_eq(x_4, x_29); +if (x_30 == 0) +{ +lean_object* x_31; uint8_t x_32; +x_31 = l_Lean_Parser_Syntax_sepBy1___elambda__1___closed__2; +x_32 = lean_name_eq(x_4, x_31); +if (x_32 == 0) +{ +lean_object* x_33; uint8_t x_34; +x_33 = l_Lean_Parser_Syntax_many___elambda__1___closed__2; +x_34 = lean_name_eq(x_4, x_33); +if (x_34 == 0) +{ +lean_object* x_35; uint8_t x_36; +x_35 = l_Lean_Parser_Syntax_many1___elambda__1___closed__2; +x_36 = lean_name_eq(x_4, x_35); +if (x_36 == 0) +{ +lean_object* x_37; uint8_t x_38; +x_37 = l_Lean_Parser_Syntax_orelse___elambda__1___closed__1; +x_38 = lean_name_eq(x_4, x_37); +lean_dec(x_4); +if (x_38 == 0) +{ +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; +x_39 = lean_box(0); +x_40 = lean_unsigned_to_nat(0u); +lean_inc(x_1); +x_41 = l_Lean_Syntax_formatStxAux___main(x_39, x_40, x_1); +x_42 = l_Lean_Options_empty; +x_43 = l_Lean_Format_pretty(x_41, x_42); +x_44 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_44, 0, x_43); +x_45 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_45, 0, x_44); +x_46 = l_Lean_Elab_Term_toParserDescr___main___closed__3; +x_47 = lean_alloc_ctor(8, 2, 0); +lean_ctor_set(x_47, 0, x_46); +lean_ctor_set(x_47, 1, x_45); +x_48 = l_Lean_Elab_Term_throwError___rarg(x_1, x_47, x_2, x_3); +return x_48; +} +else +{ +lean_object* x_49; lean_object* x_50; lean_object* x_51; +x_49 = lean_unsigned_to_nat(0u); +x_50 = l_Lean_Syntax_getArg(x_1, x_49); +lean_inc(x_2); +x_51 = l_Lean_Elab_Term_toParserDescr___main(x_50, x_2, x_3); +if (lean_obj_tag(x_51) == 0) +{ +lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; +x_52 = lean_ctor_get(x_51, 0); +lean_inc(x_52); +x_53 = lean_ctor_get(x_51, 1); +lean_inc(x_53); +lean_dec(x_51); +x_54 = lean_unsigned_to_nat(2u); +x_55 = l_Lean_Syntax_getArg(x_1, x_54); +lean_dec(x_1); +lean_inc(x_2); +x_56 = l_Lean_Elab_Term_toParserDescr___main(x_55, x_2, x_53); +if (lean_obj_tag(x_56) == 0) +{ +lean_object* x_57; lean_object* x_58; lean_object* x_59; uint8_t x_60; +x_57 = lean_ctor_get(x_56, 0); +lean_inc(x_57); +x_58 = lean_ctor_get(x_56, 1); +lean_inc(x_58); +lean_dec(x_56); +x_59 = l_Lean_Elab_Term_getCurrMacroScope(x_2, x_58); +lean_dec(x_2); +x_60 = !lean_is_exclusive(x_59); +if (x_60 == 0) +{ +lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; +x_61 = lean_ctor_get(x_59, 0); +x_62 = lean_box(0); +x_63 = l_Lean_Elab_Term_toParserDescr___main___closed__7; +x_64 = lean_name_mk_numeral(x_63, x_61); +x_65 = l_Lean_Elab_Term_toParserDescr___main___closed__6; +x_66 = l_Lean_Elab_Term_toParserDescr___main___closed__10; +x_67 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_67, 0, x_62); +lean_ctor_set(x_67, 1, x_65); +lean_ctor_set(x_67, 2, x_64); +lean_ctor_set(x_67, 3, x_66); +x_68 = l_Array_empty___closed__1; +x_69 = lean_array_push(x_68, x_67); +x_70 = l___private_Init_Lean_Elab_Term_8__expandCDot___closed__4; +x_71 = lean_array_push(x_69, x_70); +x_72 = l_Lean_Parser_Term_id___elambda__1___closed__2; +x_73 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_73, 0, x_72); +lean_ctor_set(x_73, 1, x_71); +x_74 = lean_array_push(x_68, x_73); +x_75 = lean_array_push(x_74, x_52); +x_76 = l_Lean_Parser_Term_app___elambda__1___closed__2; +x_77 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_77, 0, x_76); +lean_ctor_set(x_77, 1, x_75); +x_78 = lean_array_push(x_68, x_77); +x_79 = lean_array_push(x_78, x_57); +x_80 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_80, 0, x_76); +lean_ctor_set(x_80, 1, x_79); +lean_ctor_set(x_59, 0, x_80); +return x_59; +} +else +{ +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; +x_81 = lean_ctor_get(x_59, 0); +x_82 = lean_ctor_get(x_59, 1); +lean_inc(x_82); +lean_inc(x_81); +lean_dec(x_59); +x_83 = lean_box(0); +x_84 = l_Lean_Elab_Term_toParserDescr___main___closed__7; +x_85 = lean_name_mk_numeral(x_84, x_81); +x_86 = l_Lean_Elab_Term_toParserDescr___main___closed__6; +x_87 = l_Lean_Elab_Term_toParserDescr___main___closed__10; +x_88 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_88, 0, x_83); +lean_ctor_set(x_88, 1, x_86); +lean_ctor_set(x_88, 2, x_85); +lean_ctor_set(x_88, 3, x_87); +x_89 = l_Array_empty___closed__1; +x_90 = lean_array_push(x_89, x_88); +x_91 = l___private_Init_Lean_Elab_Term_8__expandCDot___closed__4; +x_92 = lean_array_push(x_90, x_91); +x_93 = l_Lean_Parser_Term_id___elambda__1___closed__2; +x_94 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_94, 0, x_93); +lean_ctor_set(x_94, 1, x_92); +x_95 = lean_array_push(x_89, x_94); +x_96 = lean_array_push(x_95, x_52); +x_97 = l_Lean_Parser_Term_app___elambda__1___closed__2; +x_98 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_98, 0, x_97); +lean_ctor_set(x_98, 1, x_96); +x_99 = lean_array_push(x_89, x_98); +x_100 = lean_array_push(x_99, x_57); +x_101 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_101, 0, x_97); +lean_ctor_set(x_101, 1, x_100); +x_102 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_102, 0, x_101); +lean_ctor_set(x_102, 1, x_82); +return x_102; +} +} +else +{ +uint8_t x_103; +lean_dec(x_52); +lean_dec(x_2); +x_103 = !lean_is_exclusive(x_56); +if (x_103 == 0) +{ +return x_56; +} +else +{ +lean_object* x_104; lean_object* x_105; lean_object* x_106; +x_104 = lean_ctor_get(x_56, 0); +x_105 = lean_ctor_get(x_56, 1); +lean_inc(x_105); +lean_inc(x_104); +lean_dec(x_56); +x_106 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_106, 0, x_104); +lean_ctor_set(x_106, 1, x_105); +return x_106; +} +} +} +else +{ +uint8_t x_107; +lean_dec(x_2); +lean_dec(x_1); +x_107 = !lean_is_exclusive(x_51); +if (x_107 == 0) +{ +return x_51; +} +else +{ +lean_object* x_108; lean_object* x_109; lean_object* x_110; +x_108 = lean_ctor_get(x_51, 0); +x_109 = lean_ctor_get(x_51, 1); +lean_inc(x_109); +lean_inc(x_108); +lean_dec(x_51); +x_110 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_110, 0, x_108); +lean_ctor_set(x_110, 1, x_109); +return x_110; +} +} +} +} +else +{ +lean_object* x_111; lean_object* x_112; lean_object* x_113; +lean_dec(x_4); +x_111 = lean_unsigned_to_nat(0u); +x_112 = l_Lean_Syntax_getArg(x_1, x_111); +lean_dec(x_1); +lean_inc(x_2); +x_113 = l_Lean_Elab_Term_toParserDescr___main(x_112, x_2, x_3); +if (lean_obj_tag(x_113) == 0) +{ +lean_object* x_114; lean_object* x_115; lean_object* x_116; uint8_t x_117; +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 = l_Lean_Elab_Term_getCurrMacroScope(x_2, x_115); +lean_dec(x_2); +x_117 = !lean_is_exclusive(x_116); +if (x_117 == 0) +{ +lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; +x_118 = lean_ctor_get(x_116, 0); +x_119 = lean_box(0); +x_120 = l_Lean_Elab_Term_toParserDescr___main___closed__14; +x_121 = lean_name_mk_numeral(x_120, x_118); +x_122 = l_Lean_Elab_Term_toParserDescr___main___closed__13; +x_123 = l_Lean_Elab_Term_toParserDescr___main___closed__17; +x_124 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_124, 0, x_119); +lean_ctor_set(x_124, 1, x_122); +lean_ctor_set(x_124, 2, x_121); +lean_ctor_set(x_124, 3, x_123); +x_125 = l_Array_empty___closed__1; +x_126 = lean_array_push(x_125, x_124); +x_127 = l___private_Init_Lean_Elab_Term_8__expandCDot___closed__4; +x_128 = lean_array_push(x_126, x_127); +x_129 = l_Lean_Parser_Term_id___elambda__1___closed__2; +x_130 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_130, 0, x_129); +lean_ctor_set(x_130, 1, x_128); +x_131 = lean_array_push(x_125, x_130); +x_132 = lean_array_push(x_131, x_114); +x_133 = l_Lean_Parser_Term_app___elambda__1___closed__2; +x_134 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_134, 0, x_133); +lean_ctor_set(x_134, 1, x_132); +lean_ctor_set(x_116, 0, x_134); +return x_116; +} +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; lean_object* x_151; lean_object* x_152; lean_object* x_153; +x_135 = lean_ctor_get(x_116, 0); +x_136 = lean_ctor_get(x_116, 1); +lean_inc(x_136); +lean_inc(x_135); +lean_dec(x_116); +x_137 = lean_box(0); +x_138 = l_Lean_Elab_Term_toParserDescr___main___closed__14; +x_139 = lean_name_mk_numeral(x_138, x_135); +x_140 = l_Lean_Elab_Term_toParserDescr___main___closed__13; +x_141 = l_Lean_Elab_Term_toParserDescr___main___closed__17; +x_142 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_142, 0, x_137); +lean_ctor_set(x_142, 1, x_140); +lean_ctor_set(x_142, 2, x_139); +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___private_Init_Lean_Elab_Term_8__expandCDot___closed__4; +x_146 = lean_array_push(x_144, x_145); +x_147 = l_Lean_Parser_Term_id___elambda__1___closed__2; +x_148 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_148, 0, x_147); +lean_ctor_set(x_148, 1, x_146); +x_149 = lean_array_push(x_143, x_148); +x_150 = lean_array_push(x_149, x_114); +x_151 = l_Lean_Parser_Term_app___elambda__1___closed__2; +x_152 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_152, 0, x_151); +lean_ctor_set(x_152, 1, x_150); +x_153 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_153, 0, x_152); +lean_ctor_set(x_153, 1, x_136); +return x_153; +} +} +else +{ +uint8_t x_154; +lean_dec(x_2); +x_154 = !lean_is_exclusive(x_113); +if (x_154 == 0) +{ +return x_113; +} +else +{ +lean_object* x_155; lean_object* x_156; lean_object* x_157; +x_155 = lean_ctor_get(x_113, 0); +x_156 = lean_ctor_get(x_113, 1); +lean_inc(x_156); +lean_inc(x_155); +lean_dec(x_113); +x_157 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_157, 0, x_155); +lean_ctor_set(x_157, 1, x_156); +return x_157; +} +} +} +} +else +{ +lean_object* x_158; lean_object* x_159; lean_object* x_160; +lean_dec(x_4); +x_158 = lean_unsigned_to_nat(0u); +x_159 = l_Lean_Syntax_getArg(x_1, x_158); +lean_dec(x_1); +lean_inc(x_2); +x_160 = l_Lean_Elab_Term_toParserDescr___main(x_159, x_2, x_3); +if (lean_obj_tag(x_160) == 0) +{ +lean_object* x_161; lean_object* x_162; lean_object* x_163; uint8_t x_164; +x_161 = lean_ctor_get(x_160, 0); +lean_inc(x_161); +x_162 = lean_ctor_get(x_160, 1); +lean_inc(x_162); +lean_dec(x_160); +x_163 = l_Lean_Elab_Term_getCurrMacroScope(x_2, x_162); +lean_dec(x_2); +x_164 = !lean_is_exclusive(x_163); +if (x_164 == 0) +{ +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_165 = lean_ctor_get(x_163, 0); +x_166 = lean_box(0); +x_167 = l_Lean_Elab_Term_toParserDescr___main___closed__21; +x_168 = lean_name_mk_numeral(x_167, x_165); +x_169 = l_Lean_Elab_Term_toParserDescr___main___closed__20; +x_170 = l_Lean_Elab_Term_toParserDescr___main___closed__24; +x_171 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_171, 0, x_166); +lean_ctor_set(x_171, 1, x_169); +lean_ctor_set(x_171, 2, x_168); +lean_ctor_set(x_171, 3, x_170); +x_172 = l_Array_empty___closed__1; +x_173 = lean_array_push(x_172, x_171); +x_174 = l___private_Init_Lean_Elab_Term_8__expandCDot___closed__4; +x_175 = lean_array_push(x_173, x_174); +x_176 = l_Lean_Parser_Term_id___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_172, x_177); +x_179 = lean_array_push(x_178, x_161); +x_180 = l_Lean_Parser_Term_app___elambda__1___closed__2; +x_181 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_181, 0, x_180); +lean_ctor_set(x_181, 1, x_179); +lean_ctor_set(x_163, 0, x_181); +return x_163; +} +else +{ +lean_object* x_182; lean_object* x_183; lean_object* x_184; lean_object* x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; lean_object* x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; lean_object* x_200; +x_182 = lean_ctor_get(x_163, 0); +x_183 = lean_ctor_get(x_163, 1); +lean_inc(x_183); +lean_inc(x_182); +lean_dec(x_163); +x_184 = lean_box(0); +x_185 = l_Lean_Elab_Term_toParserDescr___main___closed__21; +x_186 = lean_name_mk_numeral(x_185, x_182); +x_187 = l_Lean_Elab_Term_toParserDescr___main___closed__20; +x_188 = l_Lean_Elab_Term_toParserDescr___main___closed__24; +x_189 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_189, 0, x_184); +lean_ctor_set(x_189, 1, x_187); +lean_ctor_set(x_189, 2, x_186); +lean_ctor_set(x_189, 3, x_188); +x_190 = l_Array_empty___closed__1; +x_191 = lean_array_push(x_190, x_189); +x_192 = l___private_Init_Lean_Elab_Term_8__expandCDot___closed__4; +x_193 = lean_array_push(x_191, x_192); +x_194 = l_Lean_Parser_Term_id___elambda__1___closed__2; +x_195 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_195, 0, x_194); +lean_ctor_set(x_195, 1, x_193); +x_196 = lean_array_push(x_190, x_195); +x_197 = lean_array_push(x_196, x_161); +x_198 = l_Lean_Parser_Term_app___elambda__1___closed__2; +x_199 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_199, 0, x_198); +lean_ctor_set(x_199, 1, x_197); +x_200 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_200, 0, x_199); +lean_ctor_set(x_200, 1, x_183); +return x_200; +} +} +else +{ +uint8_t x_201; +lean_dec(x_2); +x_201 = !lean_is_exclusive(x_160); +if (x_201 == 0) +{ +return x_160; +} +else +{ +lean_object* x_202; lean_object* x_203; lean_object* x_204; +x_202 = lean_ctor_get(x_160, 0); +x_203 = lean_ctor_get(x_160, 1); +lean_inc(x_203); +lean_inc(x_202); +lean_dec(x_160); +x_204 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_204, 0, x_202); +lean_ctor_set(x_204, 1, x_203); +return x_204; +} +} +} +} +else +{ +lean_object* x_205; lean_object* x_206; lean_object* x_207; +lean_dec(x_4); +x_205 = lean_unsigned_to_nat(1u); +x_206 = l_Lean_Syntax_getArg(x_1, x_205); +lean_inc(x_2); +x_207 = l_Lean_Elab_Term_toParserDescr___main(x_206, x_2, x_3); +if (lean_obj_tag(x_207) == 0) +{ +lean_object* x_208; lean_object* x_209; lean_object* x_210; lean_object* x_211; lean_object* x_212; +x_208 = lean_ctor_get(x_207, 0); +lean_inc(x_208); +x_209 = lean_ctor_get(x_207, 1); +lean_inc(x_209); +lean_dec(x_207); +x_210 = lean_unsigned_to_nat(2u); +x_211 = l_Lean_Syntax_getArg(x_1, x_210); +lean_dec(x_1); +lean_inc(x_2); +x_212 = l_Lean_Elab_Term_toParserDescr___main(x_211, x_2, x_209); +if (lean_obj_tag(x_212) == 0) +{ +lean_object* x_213; lean_object* x_214; lean_object* x_215; uint8_t x_216; +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); +x_215 = l_Lean_Elab_Term_getCurrMacroScope(x_2, x_214); +lean_dec(x_2); +x_216 = !lean_is_exclusive(x_215); +if (x_216 == 0) +{ +lean_object* x_217; lean_object* x_218; lean_object* x_219; lean_object* x_220; lean_object* x_221; lean_object* x_222; lean_object* x_223; lean_object* x_224; lean_object* x_225; lean_object* x_226; lean_object* x_227; lean_object* x_228; lean_object* x_229; lean_object* x_230; lean_object* x_231; lean_object* x_232; lean_object* x_233; lean_object* x_234; lean_object* x_235; lean_object* x_236; +x_217 = lean_ctor_get(x_215, 0); +x_218 = lean_box(0); +x_219 = l_Lean_Elab_Term_toParserDescr___main___closed__28; +x_220 = lean_name_mk_numeral(x_219, x_217); +x_221 = l_Lean_Elab_Term_toParserDescr___main___closed__27; +x_222 = l_Lean_Elab_Term_toParserDescr___main___closed__31; +x_223 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_223, 0, x_218); +lean_ctor_set(x_223, 1, x_221); +lean_ctor_set(x_223, 2, x_220); +lean_ctor_set(x_223, 3, x_222); +x_224 = l_Array_empty___closed__1; +x_225 = lean_array_push(x_224, x_223); +x_226 = l___private_Init_Lean_Elab_Term_8__expandCDot___closed__4; +x_227 = lean_array_push(x_225, x_226); +x_228 = l_Lean_Parser_Term_id___elambda__1___closed__2; +x_229 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_229, 0, x_228); +lean_ctor_set(x_229, 1, x_227); +x_230 = lean_array_push(x_224, x_229); +x_231 = lean_array_push(x_230, x_208); +x_232 = l_Lean_Parser_Term_app___elambda__1___closed__2; +x_233 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_233, 0, x_232); +lean_ctor_set(x_233, 1, x_231); +x_234 = lean_array_push(x_224, x_233); +x_235 = lean_array_push(x_234, x_213); +x_236 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_236, 0, x_232); +lean_ctor_set(x_236, 1, x_235); +lean_ctor_set(x_215, 0, x_236); +return x_215; +} +else +{ +lean_object* x_237; lean_object* x_238; lean_object* x_239; lean_object* x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; lean_object* x_247; lean_object* x_248; lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; lean_object* x_255; lean_object* x_256; lean_object* x_257; lean_object* x_258; +x_237 = lean_ctor_get(x_215, 0); +x_238 = lean_ctor_get(x_215, 1); +lean_inc(x_238); +lean_inc(x_237); +lean_dec(x_215); +x_239 = lean_box(0); +x_240 = l_Lean_Elab_Term_toParserDescr___main___closed__28; +x_241 = lean_name_mk_numeral(x_240, x_237); +x_242 = l_Lean_Elab_Term_toParserDescr___main___closed__27; +x_243 = l_Lean_Elab_Term_toParserDescr___main___closed__31; +x_244 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_244, 0, x_239); +lean_ctor_set(x_244, 1, x_242); +lean_ctor_set(x_244, 2, x_241); +lean_ctor_set(x_244, 3, x_243); +x_245 = l_Array_empty___closed__1; +x_246 = lean_array_push(x_245, x_244); +x_247 = l___private_Init_Lean_Elab_Term_8__expandCDot___closed__4; +x_248 = lean_array_push(x_246, x_247); +x_249 = l_Lean_Parser_Term_id___elambda__1___closed__2; +x_250 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_250, 0, x_249); +lean_ctor_set(x_250, 1, x_248); +x_251 = lean_array_push(x_245, x_250); +x_252 = lean_array_push(x_251, x_208); +x_253 = l_Lean_Parser_Term_app___elambda__1___closed__2; +x_254 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_254, 0, x_253); +lean_ctor_set(x_254, 1, x_252); +x_255 = lean_array_push(x_245, x_254); +x_256 = lean_array_push(x_255, x_213); +x_257 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_257, 0, x_253); +lean_ctor_set(x_257, 1, x_256); +x_258 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_258, 0, x_257); +lean_ctor_set(x_258, 1, x_238); +return x_258; +} +} +else +{ +uint8_t x_259; +lean_dec(x_208); +lean_dec(x_2); +x_259 = !lean_is_exclusive(x_212); +if (x_259 == 0) +{ +return x_212; +} +else +{ +lean_object* x_260; lean_object* x_261; lean_object* x_262; +x_260 = lean_ctor_get(x_212, 0); +x_261 = lean_ctor_get(x_212, 1); +lean_inc(x_261); +lean_inc(x_260); +lean_dec(x_212); +x_262 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_262, 0, x_260); +lean_ctor_set(x_262, 1, x_261); +return x_262; +} +} +} +else +{ +uint8_t x_263; +lean_dec(x_2); +lean_dec(x_1); +x_263 = !lean_is_exclusive(x_207); +if (x_263 == 0) +{ +return x_207; +} +else +{ +lean_object* x_264; lean_object* x_265; lean_object* x_266; +x_264 = lean_ctor_get(x_207, 0); +x_265 = lean_ctor_get(x_207, 1); +lean_inc(x_265); +lean_inc(x_264); +lean_dec(x_207); +x_266 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_266, 0, x_264); +lean_ctor_set(x_266, 1, x_265); +return x_266; +} +} +} +} +else +{ +lean_object* x_267; lean_object* x_268; lean_object* x_269; +lean_dec(x_4); +x_267 = lean_unsigned_to_nat(1u); +x_268 = l_Lean_Syntax_getArg(x_1, x_267); +lean_inc(x_2); +x_269 = l_Lean_Elab_Term_toParserDescr___main(x_268, x_2, x_3); +if (lean_obj_tag(x_269) == 0) +{ +lean_object* x_270; lean_object* x_271; lean_object* x_272; lean_object* x_273; lean_object* x_274; +x_270 = lean_ctor_get(x_269, 0); +lean_inc(x_270); +x_271 = lean_ctor_get(x_269, 1); +lean_inc(x_271); +lean_dec(x_269); +x_272 = lean_unsigned_to_nat(2u); +x_273 = l_Lean_Syntax_getArg(x_1, x_272); +lean_dec(x_1); +lean_inc(x_2); +x_274 = l_Lean_Elab_Term_toParserDescr___main(x_273, x_2, x_271); +if (lean_obj_tag(x_274) == 0) +{ +lean_object* x_275; lean_object* x_276; lean_object* x_277; uint8_t x_278; +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_getCurrMacroScope(x_2, x_276); +lean_dec(x_2); +x_278 = !lean_is_exclusive(x_277); +if (x_278 == 0) +{ +lean_object* x_279; lean_object* x_280; lean_object* x_281; lean_object* x_282; lean_object* x_283; lean_object* x_284; lean_object* x_285; lean_object* x_286; lean_object* x_287; lean_object* x_288; lean_object* x_289; lean_object* x_290; lean_object* x_291; lean_object* x_292; lean_object* x_293; lean_object* x_294; lean_object* x_295; lean_object* x_296; lean_object* x_297; lean_object* x_298; +x_279 = lean_ctor_get(x_277, 0); +x_280 = lean_box(0); +x_281 = l_Lean_Elab_Term_toParserDescr___main___closed__35; +x_282 = lean_name_mk_numeral(x_281, x_279); +x_283 = l_Lean_Elab_Term_toParserDescr___main___closed__34; +x_284 = l_Lean_Elab_Term_toParserDescr___main___closed__38; +x_285 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_285, 0, x_280); +lean_ctor_set(x_285, 1, x_283); +lean_ctor_set(x_285, 2, x_282); +lean_ctor_set(x_285, 3, x_284); +x_286 = l_Array_empty___closed__1; +x_287 = lean_array_push(x_286, x_285); +x_288 = l___private_Init_Lean_Elab_Term_8__expandCDot___closed__4; +x_289 = lean_array_push(x_287, x_288); +x_290 = l_Lean_Parser_Term_id___elambda__1___closed__2; +x_291 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_291, 0, x_290); +lean_ctor_set(x_291, 1, x_289); +x_292 = lean_array_push(x_286, x_291); +x_293 = lean_array_push(x_292, x_270); +x_294 = l_Lean_Parser_Term_app___elambda__1___closed__2; +x_295 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_295, 0, x_294); +lean_ctor_set(x_295, 1, x_293); +x_296 = lean_array_push(x_286, x_295); +x_297 = lean_array_push(x_296, x_275); +x_298 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_298, 0, x_294); +lean_ctor_set(x_298, 1, x_297); +lean_ctor_set(x_277, 0, x_298); +return x_277; +} +else +{ +lean_object* x_299; lean_object* x_300; lean_object* x_301; lean_object* x_302; lean_object* x_303; lean_object* x_304; lean_object* x_305; lean_object* x_306; lean_object* x_307; lean_object* x_308; lean_object* x_309; lean_object* x_310; lean_object* x_311; lean_object* x_312; lean_object* x_313; lean_object* x_314; lean_object* x_315; lean_object* x_316; lean_object* x_317; lean_object* x_318; lean_object* x_319; lean_object* x_320; +x_299 = lean_ctor_get(x_277, 0); +x_300 = lean_ctor_get(x_277, 1); +lean_inc(x_300); +lean_inc(x_299); +lean_dec(x_277); +x_301 = lean_box(0); +x_302 = l_Lean_Elab_Term_toParserDescr___main___closed__35; +x_303 = lean_name_mk_numeral(x_302, x_299); +x_304 = l_Lean_Elab_Term_toParserDescr___main___closed__34; +x_305 = l_Lean_Elab_Term_toParserDescr___main___closed__38; +x_306 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_306, 0, x_301); +lean_ctor_set(x_306, 1, x_304); +lean_ctor_set(x_306, 2, x_303); +lean_ctor_set(x_306, 3, x_305); +x_307 = l_Array_empty___closed__1; +x_308 = lean_array_push(x_307, x_306); +x_309 = l___private_Init_Lean_Elab_Term_8__expandCDot___closed__4; +x_310 = lean_array_push(x_308, x_309); +x_311 = l_Lean_Parser_Term_id___elambda__1___closed__2; +x_312 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_312, 0, x_311); +lean_ctor_set(x_312, 1, x_310); +x_313 = lean_array_push(x_307, x_312); +x_314 = lean_array_push(x_313, x_270); +x_315 = l_Lean_Parser_Term_app___elambda__1___closed__2; +x_316 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_316, 0, x_315); +lean_ctor_set(x_316, 1, x_314); +x_317 = lean_array_push(x_307, x_316); +x_318 = lean_array_push(x_317, x_275); +x_319 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_319, 0, x_315); +lean_ctor_set(x_319, 1, x_318); +x_320 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_320, 0, x_319); +lean_ctor_set(x_320, 1, x_300); +return x_320; +} +} +else +{ +uint8_t x_321; +lean_dec(x_270); +lean_dec(x_2); +x_321 = !lean_is_exclusive(x_274); +if (x_321 == 0) +{ +return x_274; +} +else +{ +lean_object* x_322; lean_object* x_323; lean_object* x_324; +x_322 = lean_ctor_get(x_274, 0); +x_323 = lean_ctor_get(x_274, 1); +lean_inc(x_323); +lean_inc(x_322); +lean_dec(x_274); +x_324 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_324, 0, x_322); +lean_ctor_set(x_324, 1, x_323); +return x_324; +} +} +} +else +{ +uint8_t x_325; +lean_dec(x_2); +lean_dec(x_1); +x_325 = !lean_is_exclusive(x_269); +if (x_325 == 0) +{ +return x_269; +} +else +{ +lean_object* x_326; lean_object* x_327; lean_object* x_328; +x_326 = lean_ctor_get(x_269, 0); +x_327 = lean_ctor_get(x_269, 1); +lean_inc(x_327); +lean_inc(x_326); +lean_dec(x_269); +x_328 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_328, 0, x_326); +lean_ctor_set(x_328, 1, x_327); +return x_328; +} +} +} +} +else +{ +lean_object* x_329; lean_object* x_330; lean_object* x_331; +lean_dec(x_4); +x_329 = lean_unsigned_to_nat(1u); +x_330 = l_Lean_Syntax_getArg(x_1, x_329); +lean_dec(x_1); +lean_inc(x_2); +x_331 = l_Lean_Elab_Term_toParserDescr___main(x_330, x_2, x_3); +if (lean_obj_tag(x_331) == 0) +{ +lean_object* x_332; lean_object* x_333; lean_object* x_334; uint8_t x_335; +x_332 = lean_ctor_get(x_331, 0); +lean_inc(x_332); +x_333 = lean_ctor_get(x_331, 1); +lean_inc(x_333); +lean_dec(x_331); +x_334 = l_Lean_Elab_Term_getCurrMacroScope(x_2, x_333); +lean_dec(x_2); +x_335 = !lean_is_exclusive(x_334); +if (x_335 == 0) +{ +lean_object* x_336; lean_object* x_337; lean_object* x_338; lean_object* x_339; lean_object* x_340; lean_object* x_341; lean_object* x_342; lean_object* x_343; lean_object* x_344; lean_object* x_345; lean_object* x_346; lean_object* x_347; lean_object* x_348; lean_object* x_349; lean_object* x_350; lean_object* x_351; lean_object* x_352; +x_336 = lean_ctor_get(x_334, 0); +x_337 = lean_box(0); +x_338 = l_Lean_Elab_Term_toParserDescr___main___closed__42; +x_339 = lean_name_mk_numeral(x_338, x_336); +x_340 = l_Lean_Elab_Term_toParserDescr___main___closed__41; +x_341 = l_Lean_Elab_Term_toParserDescr___main___closed__45; +x_342 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_342, 0, x_337); +lean_ctor_set(x_342, 1, x_340); +lean_ctor_set(x_342, 2, x_339); +lean_ctor_set(x_342, 3, x_341); +x_343 = l_Array_empty___closed__1; +x_344 = lean_array_push(x_343, x_342); +x_345 = l___private_Init_Lean_Elab_Term_8__expandCDot___closed__4; +x_346 = lean_array_push(x_344, x_345); +x_347 = l_Lean_Parser_Term_id___elambda__1___closed__2; +x_348 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_348, 0, x_347); +lean_ctor_set(x_348, 1, x_346); +x_349 = lean_array_push(x_343, x_348); +x_350 = lean_array_push(x_349, x_332); +x_351 = l_Lean_Parser_Term_app___elambda__1___closed__2; +x_352 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_352, 0, x_351); +lean_ctor_set(x_352, 1, x_350); +lean_ctor_set(x_334, 0, x_352); +return x_334; +} +else +{ +lean_object* x_353; lean_object* x_354; lean_object* x_355; lean_object* x_356; lean_object* x_357; lean_object* x_358; lean_object* x_359; lean_object* x_360; lean_object* x_361; lean_object* x_362; lean_object* x_363; lean_object* x_364; lean_object* x_365; lean_object* x_366; lean_object* x_367; lean_object* x_368; lean_object* x_369; lean_object* x_370; lean_object* x_371; +x_353 = lean_ctor_get(x_334, 0); +x_354 = lean_ctor_get(x_334, 1); +lean_inc(x_354); +lean_inc(x_353); +lean_dec(x_334); +x_355 = lean_box(0); +x_356 = l_Lean_Elab_Term_toParserDescr___main___closed__42; +x_357 = lean_name_mk_numeral(x_356, x_353); +x_358 = l_Lean_Elab_Term_toParserDescr___main___closed__41; +x_359 = l_Lean_Elab_Term_toParserDescr___main___closed__45; +x_360 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_360, 0, x_355); +lean_ctor_set(x_360, 1, x_358); +lean_ctor_set(x_360, 2, x_357); +lean_ctor_set(x_360, 3, x_359); +x_361 = l_Array_empty___closed__1; +x_362 = lean_array_push(x_361, x_360); +x_363 = l___private_Init_Lean_Elab_Term_8__expandCDot___closed__4; +x_364 = lean_array_push(x_362, x_363); +x_365 = l_Lean_Parser_Term_id___elambda__1___closed__2; +x_366 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_366, 0, x_365); +lean_ctor_set(x_366, 1, x_364); +x_367 = lean_array_push(x_361, x_366); +x_368 = lean_array_push(x_367, x_332); +x_369 = l_Lean_Parser_Term_app___elambda__1___closed__2; +x_370 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_370, 0, x_369); +lean_ctor_set(x_370, 1, x_368); +x_371 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_371, 0, x_370); +lean_ctor_set(x_371, 1, x_354); +return x_371; +} +} +else +{ +uint8_t x_372; +lean_dec(x_2); +x_372 = !lean_is_exclusive(x_331); +if (x_372 == 0) +{ +return x_331; +} +else +{ +lean_object* x_373; lean_object* x_374; lean_object* x_375; +x_373 = lean_ctor_get(x_331, 0); +x_374 = lean_ctor_get(x_331, 1); +lean_inc(x_374); +lean_inc(x_373); +lean_dec(x_331); +x_375 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_375, 0, x_373); +lean_ctor_set(x_375, 1, x_374); +return x_375; +} +} +} +} +else +{ +lean_object* x_376; lean_object* x_377; lean_object* x_378; +lean_dec(x_4); +x_376 = lean_unsigned_to_nat(1u); +x_377 = l_Lean_Syntax_getArg(x_1, x_376); +lean_dec(x_1); +lean_inc(x_2); +x_378 = l_Lean_Elab_Term_toParserDescr___main(x_377, x_2, x_3); +if (lean_obj_tag(x_378) == 0) +{ +lean_object* x_379; lean_object* x_380; lean_object* x_381; uint8_t x_382; +x_379 = lean_ctor_get(x_378, 0); +lean_inc(x_379); +x_380 = lean_ctor_get(x_378, 1); +lean_inc(x_380); +lean_dec(x_378); +x_381 = l_Lean_Elab_Term_getCurrMacroScope(x_2, x_380); +lean_dec(x_2); +x_382 = !lean_is_exclusive(x_381); +if (x_382 == 0) +{ +lean_object* x_383; lean_object* x_384; lean_object* x_385; lean_object* x_386; lean_object* x_387; lean_object* x_388; lean_object* x_389; lean_object* x_390; lean_object* x_391; lean_object* x_392; lean_object* x_393; lean_object* x_394; lean_object* x_395; lean_object* x_396; lean_object* x_397; lean_object* x_398; lean_object* x_399; +x_383 = lean_ctor_get(x_381, 0); +x_384 = lean_box(0); +x_385 = l_Lean_Elab_Term_toParserDescr___main___closed__49; +x_386 = lean_name_mk_numeral(x_385, x_383); +x_387 = l_Lean_Elab_Term_toParserDescr___main___closed__48; +x_388 = l_Lean_Elab_Term_toParserDescr___main___closed__52; +x_389 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_389, 0, x_384); +lean_ctor_set(x_389, 1, x_387); +lean_ctor_set(x_389, 2, x_386); +lean_ctor_set(x_389, 3, x_388); +x_390 = l_Array_empty___closed__1; +x_391 = lean_array_push(x_390, x_389); +x_392 = l___private_Init_Lean_Elab_Term_8__expandCDot___closed__4; +x_393 = lean_array_push(x_391, x_392); +x_394 = l_Lean_Parser_Term_id___elambda__1___closed__2; +x_395 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_395, 0, x_394); +lean_ctor_set(x_395, 1, x_393); +x_396 = lean_array_push(x_390, x_395); +x_397 = lean_array_push(x_396, x_379); +x_398 = l_Lean_Parser_Term_app___elambda__1___closed__2; +x_399 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_399, 0, x_398); +lean_ctor_set(x_399, 1, x_397); +lean_ctor_set(x_381, 0, x_399); +return x_381; +} +else +{ +lean_object* x_400; lean_object* x_401; lean_object* x_402; lean_object* x_403; lean_object* x_404; lean_object* x_405; lean_object* x_406; lean_object* x_407; lean_object* x_408; lean_object* x_409; lean_object* x_410; lean_object* x_411; lean_object* x_412; lean_object* x_413; lean_object* x_414; lean_object* x_415; lean_object* x_416; lean_object* x_417; lean_object* x_418; +x_400 = lean_ctor_get(x_381, 0); +x_401 = lean_ctor_get(x_381, 1); +lean_inc(x_401); +lean_inc(x_400); +lean_dec(x_381); +x_402 = lean_box(0); +x_403 = l_Lean_Elab_Term_toParserDescr___main___closed__49; +x_404 = lean_name_mk_numeral(x_403, x_400); +x_405 = l_Lean_Elab_Term_toParserDescr___main___closed__48; +x_406 = l_Lean_Elab_Term_toParserDescr___main___closed__52; +x_407 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_407, 0, x_402); +lean_ctor_set(x_407, 1, x_405); +lean_ctor_set(x_407, 2, x_404); +lean_ctor_set(x_407, 3, x_406); +x_408 = l_Array_empty___closed__1; +x_409 = lean_array_push(x_408, x_407); +x_410 = l___private_Init_Lean_Elab_Term_8__expandCDot___closed__4; +x_411 = lean_array_push(x_409, x_410); +x_412 = l_Lean_Parser_Term_id___elambda__1___closed__2; +x_413 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_413, 0, x_412); +lean_ctor_set(x_413, 1, x_411); +x_414 = lean_array_push(x_408, x_413); +x_415 = lean_array_push(x_414, x_379); +x_416 = l_Lean_Parser_Term_app___elambda__1___closed__2; +x_417 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_417, 0, x_416); +lean_ctor_set(x_417, 1, x_415); +x_418 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_418, 0, x_417); +lean_ctor_set(x_418, 1, x_401); +return x_418; +} +} +else +{ +uint8_t x_419; +lean_dec(x_2); +x_419 = !lean_is_exclusive(x_378); +if (x_419 == 0) +{ +return x_378; +} +else +{ +lean_object* x_420; lean_object* x_421; lean_object* x_422; +x_420 = lean_ctor_get(x_378, 0); +x_421 = lean_ctor_get(x_378, 1); +lean_inc(x_421); +lean_inc(x_420); +lean_dec(x_378); +x_422 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_422, 0, x_420); +lean_ctor_set(x_422, 1, x_421); +return x_422; +} +} +} +} +else +{ +lean_object* x_423; lean_object* x_424; lean_object* x_425; +lean_dec(x_4); +x_423 = lean_unsigned_to_nat(1u); +x_424 = l_Lean_Syntax_getArg(x_1, x_423); +lean_dec(x_1); +lean_inc(x_2); +x_425 = l_Lean_Elab_Term_toParserDescr___main(x_424, x_2, x_3); +if (lean_obj_tag(x_425) == 0) +{ +lean_object* x_426; lean_object* x_427; lean_object* x_428; uint8_t x_429; +x_426 = lean_ctor_get(x_425, 0); +lean_inc(x_426); +x_427 = lean_ctor_get(x_425, 1); +lean_inc(x_427); +lean_dec(x_425); +x_428 = l_Lean_Elab_Term_getCurrMacroScope(x_2, x_427); +lean_dec(x_2); +x_429 = !lean_is_exclusive(x_428); +if (x_429 == 0) +{ +lean_object* x_430; lean_object* x_431; lean_object* x_432; lean_object* x_433; lean_object* x_434; lean_object* x_435; lean_object* x_436; lean_object* x_437; lean_object* x_438; lean_object* x_439; lean_object* x_440; lean_object* x_441; lean_object* x_442; lean_object* x_443; lean_object* x_444; lean_object* x_445; lean_object* x_446; +x_430 = lean_ctor_get(x_428, 0); +x_431 = lean_box(0); +x_432 = l_Lean_Elab_Term_toParserDescr___main___closed__56; +x_433 = lean_name_mk_numeral(x_432, x_430); +x_434 = l_Lean_Elab_Term_toParserDescr___main___closed__55; +x_435 = l_Lean_Elab_Term_toParserDescr___main___closed__59; +x_436 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_436, 0, x_431); +lean_ctor_set(x_436, 1, x_434); +lean_ctor_set(x_436, 2, x_433); +lean_ctor_set(x_436, 3, x_435); +x_437 = l_Array_empty___closed__1; +x_438 = lean_array_push(x_437, x_436); +x_439 = l___private_Init_Lean_Elab_Term_8__expandCDot___closed__4; +x_440 = lean_array_push(x_438, x_439); +x_441 = l_Lean_Parser_Term_id___elambda__1___closed__2; +x_442 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_442, 0, x_441); +lean_ctor_set(x_442, 1, x_440); +x_443 = lean_array_push(x_437, x_442); +x_444 = lean_array_push(x_443, x_426); +x_445 = l_Lean_Parser_Term_app___elambda__1___closed__2; +x_446 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_446, 0, x_445); +lean_ctor_set(x_446, 1, x_444); +lean_ctor_set(x_428, 0, x_446); +return x_428; +} +else +{ +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; +x_447 = lean_ctor_get(x_428, 0); +x_448 = lean_ctor_get(x_428, 1); +lean_inc(x_448); +lean_inc(x_447); +lean_dec(x_428); +x_449 = lean_box(0); +x_450 = l_Lean_Elab_Term_toParserDescr___main___closed__56; +x_451 = lean_name_mk_numeral(x_450, x_447); +x_452 = l_Lean_Elab_Term_toParserDescr___main___closed__55; +x_453 = l_Lean_Elab_Term_toParserDescr___main___closed__59; +x_454 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_454, 0, x_449); +lean_ctor_set(x_454, 1, x_452); +lean_ctor_set(x_454, 2, x_451); +lean_ctor_set(x_454, 3, x_453); +x_455 = l_Array_empty___closed__1; +x_456 = lean_array_push(x_455, x_454); +x_457 = l___private_Init_Lean_Elab_Term_8__expandCDot___closed__4; +x_458 = lean_array_push(x_456, x_457); +x_459 = l_Lean_Parser_Term_id___elambda__1___closed__2; +x_460 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_460, 0, x_459); +lean_ctor_set(x_460, 1, x_458); +x_461 = lean_array_push(x_455, x_460); +x_462 = lean_array_push(x_461, x_426); +x_463 = l_Lean_Parser_Term_app___elambda__1___closed__2; +x_464 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_464, 0, x_463); +lean_ctor_set(x_464, 1, x_462); +x_465 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_465, 0, x_464); +lean_ctor_set(x_465, 1, x_448); +return x_465; +} +} +else +{ +uint8_t x_466; +lean_dec(x_2); +x_466 = !lean_is_exclusive(x_425); +if (x_466 == 0) +{ +return x_425; +} +else +{ +lean_object* x_467; lean_object* x_468; lean_object* x_469; +x_467 = lean_ctor_get(x_425, 0); +x_468 = lean_ctor_get(x_425, 1); +lean_inc(x_468); +lean_inc(x_467); +lean_dec(x_425); +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; +} +} +} +} +else +{ +lean_object* x_470; uint8_t x_471; +lean_dec(x_4); +lean_dec(x_1); +x_470 = l_Lean_Elab_Term_getCurrMacroScope(x_2, x_3); +lean_dec(x_2); +x_471 = !lean_is_exclusive(x_470); +if (x_471 == 0) +{ +lean_object* x_472; lean_object* x_473; lean_object* x_474; lean_object* x_475; lean_object* x_476; lean_object* x_477; lean_object* x_478; lean_object* x_479; lean_object* x_480; lean_object* x_481; lean_object* x_482; lean_object* x_483; lean_object* x_484; +x_472 = lean_ctor_get(x_470, 0); +x_473 = lean_box(0); +x_474 = l_Lean_Elab_Term_toParserDescr___main___closed__63; +x_475 = lean_name_mk_numeral(x_474, x_472); +x_476 = l_Lean_Elab_Term_toParserDescr___main___closed__62; +x_477 = l_Lean_Elab_Term_toParserDescr___main___closed__66; +x_478 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_478, 0, x_473); +lean_ctor_set(x_478, 1, x_476); +lean_ctor_set(x_478, 2, x_475); +lean_ctor_set(x_478, 3, x_477); +x_479 = l_Array_empty___closed__1; +x_480 = lean_array_push(x_479, x_478); +x_481 = l___private_Init_Lean_Elab_Term_8__expandCDot___closed__4; +x_482 = lean_array_push(x_480, x_481); +x_483 = l_Lean_Parser_Term_id___elambda__1___closed__2; +x_484 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_484, 0, x_483); +lean_ctor_set(x_484, 1, x_482); +lean_ctor_set(x_470, 0, x_484); +return x_470; +} +else +{ +lean_object* x_485; lean_object* x_486; lean_object* x_487; lean_object* x_488; lean_object* x_489; lean_object* x_490; lean_object* x_491; lean_object* x_492; lean_object* x_493; lean_object* x_494; lean_object* x_495; lean_object* x_496; lean_object* x_497; lean_object* x_498; lean_object* x_499; +x_485 = lean_ctor_get(x_470, 0); +x_486 = lean_ctor_get(x_470, 1); +lean_inc(x_486); +lean_inc(x_485); +lean_dec(x_470); +x_487 = lean_box(0); +x_488 = l_Lean_Elab_Term_toParserDescr___main___closed__63; +x_489 = lean_name_mk_numeral(x_488, x_485); +x_490 = l_Lean_Elab_Term_toParserDescr___main___closed__62; +x_491 = l_Lean_Elab_Term_toParserDescr___main___closed__66; +x_492 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_492, 0, x_487); +lean_ctor_set(x_492, 1, x_490); +lean_ctor_set(x_492, 2, x_489); +lean_ctor_set(x_492, 3, x_491); +x_493 = l_Array_empty___closed__1; +x_494 = lean_array_push(x_493, x_492); +x_495 = l___private_Init_Lean_Elab_Term_8__expandCDot___closed__4; +x_496 = lean_array_push(x_494, x_495); +x_497 = l_Lean_Parser_Term_id___elambda__1___closed__2; +x_498 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_498, 0, x_497); +lean_ctor_set(x_498, 1, x_496); +x_499 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_499, 0, x_498); +lean_ctor_set(x_499, 1, x_486); +return x_499; +} +} +} +else +{ +lean_object* x_500; uint8_t x_501; +lean_dec(x_4); +lean_dec(x_1); +x_500 = l_Lean_Elab_Term_getCurrMacroScope(x_2, x_3); +lean_dec(x_2); +x_501 = !lean_is_exclusive(x_500); +if (x_501 == 0) +{ +lean_object* x_502; lean_object* x_503; lean_object* x_504; lean_object* x_505; lean_object* x_506; lean_object* x_507; lean_object* x_508; lean_object* x_509; lean_object* x_510; lean_object* x_511; lean_object* x_512; lean_object* x_513; lean_object* x_514; +x_502 = lean_ctor_get(x_500, 0); +x_503 = lean_box(0); +x_504 = l_Lean_Elab_Term_toParserDescr___main___closed__70; +x_505 = lean_name_mk_numeral(x_504, x_502); +x_506 = l_Lean_Elab_Term_toParserDescr___main___closed__69; +x_507 = l_Lean_Elab_Term_toParserDescr___main___closed__73; +x_508 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_508, 0, x_503); +lean_ctor_set(x_508, 1, x_506); +lean_ctor_set(x_508, 2, x_505); +lean_ctor_set(x_508, 3, x_507); +x_509 = l_Array_empty___closed__1; +x_510 = lean_array_push(x_509, x_508); +x_511 = l___private_Init_Lean_Elab_Term_8__expandCDot___closed__4; +x_512 = lean_array_push(x_510, x_511); +x_513 = l_Lean_Parser_Term_id___elambda__1___closed__2; +x_514 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_514, 0, x_513); +lean_ctor_set(x_514, 1, x_512); +lean_ctor_set(x_500, 0, x_514); +return x_500; +} +else +{ +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; +x_515 = lean_ctor_get(x_500, 0); +x_516 = lean_ctor_get(x_500, 1); +lean_inc(x_516); +lean_inc(x_515); +lean_dec(x_500); +x_517 = lean_box(0); +x_518 = l_Lean_Elab_Term_toParserDescr___main___closed__70; +x_519 = lean_name_mk_numeral(x_518, x_515); +x_520 = l_Lean_Elab_Term_toParserDescr___main___closed__69; +x_521 = l_Lean_Elab_Term_toParserDescr___main___closed__73; +x_522 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_522, 0, x_517); +lean_ctor_set(x_522, 1, x_520); +lean_ctor_set(x_522, 2, x_519); +lean_ctor_set(x_522, 3, x_521); +x_523 = l_Array_empty___closed__1; +x_524 = lean_array_push(x_523, x_522); +x_525 = l___private_Init_Lean_Elab_Term_8__expandCDot___closed__4; +x_526 = lean_array_push(x_524, x_525); +x_527 = l_Lean_Parser_Term_id___elambda__1___closed__2; +x_528 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_528, 0, x_527); +lean_ctor_set(x_528, 1, x_526); +x_529 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_529, 0, x_528); +lean_ctor_set(x_529, 1, x_516); +return x_529; +} +} +} +else +{ +lean_object* x_530; uint8_t x_531; +lean_dec(x_4); +lean_dec(x_1); +x_530 = l_Lean_Elab_Term_getCurrMacroScope(x_2, x_3); +lean_dec(x_2); +x_531 = !lean_is_exclusive(x_530); +if (x_531 == 0) +{ +lean_object* x_532; lean_object* x_533; lean_object* x_534; lean_object* x_535; lean_object* x_536; lean_object* x_537; lean_object* x_538; lean_object* x_539; lean_object* x_540; lean_object* x_541; lean_object* x_542; lean_object* x_543; lean_object* x_544; +x_532 = lean_ctor_get(x_530, 0); +x_533 = lean_box(0); +x_534 = l_Lean_Elab_Term_toParserDescr___main___closed__77; +x_535 = lean_name_mk_numeral(x_534, x_532); +x_536 = l_Lean_Elab_Term_toParserDescr___main___closed__76; +x_537 = l_Lean_Elab_Term_toParserDescr___main___closed__80; +x_538 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_538, 0, x_533); +lean_ctor_set(x_538, 1, x_536); +lean_ctor_set(x_538, 2, x_535); +lean_ctor_set(x_538, 3, x_537); +x_539 = l_Array_empty___closed__1; +x_540 = lean_array_push(x_539, x_538); +x_541 = l___private_Init_Lean_Elab_Term_8__expandCDot___closed__4; +x_542 = lean_array_push(x_540, x_541); +x_543 = l_Lean_Parser_Term_id___elambda__1___closed__2; +x_544 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_544, 0, x_543); +lean_ctor_set(x_544, 1, x_542); +lean_ctor_set(x_530, 0, x_544); +return x_530; +} +else +{ +lean_object* x_545; lean_object* x_546; lean_object* x_547; lean_object* x_548; lean_object* x_549; lean_object* x_550; lean_object* x_551; lean_object* x_552; lean_object* x_553; lean_object* x_554; lean_object* x_555; lean_object* x_556; lean_object* x_557; lean_object* x_558; lean_object* x_559; +x_545 = lean_ctor_get(x_530, 0); +x_546 = lean_ctor_get(x_530, 1); +lean_inc(x_546); +lean_inc(x_545); +lean_dec(x_530); +x_547 = lean_box(0); +x_548 = l_Lean_Elab_Term_toParserDescr___main___closed__77; +x_549 = lean_name_mk_numeral(x_548, x_545); +x_550 = l_Lean_Elab_Term_toParserDescr___main___closed__76; +x_551 = l_Lean_Elab_Term_toParserDescr___main___closed__80; +x_552 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_552, 0, x_547); +lean_ctor_set(x_552, 1, x_550); +lean_ctor_set(x_552, 2, x_549); +lean_ctor_set(x_552, 3, x_551); +x_553 = l_Array_empty___closed__1; +x_554 = lean_array_push(x_553, x_552); +x_555 = l___private_Init_Lean_Elab_Term_8__expandCDot___closed__4; +x_556 = lean_array_push(x_554, x_555); +x_557 = l_Lean_Parser_Term_id___elambda__1___closed__2; +x_558 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_558, 0, x_557); +lean_ctor_set(x_558, 1, x_556); +x_559 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_559, 0, x_558); +lean_ctor_set(x_559, 1, x_546); +return x_559; +} +} +} +else +{ +lean_object* x_560; uint8_t x_561; +lean_dec(x_4); +lean_dec(x_1); +x_560 = l_Lean_Elab_Term_getCurrMacroScope(x_2, x_3); +lean_dec(x_2); +x_561 = !lean_is_exclusive(x_560); +if (x_561 == 0) +{ +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; +x_562 = lean_ctor_get(x_560, 0); +x_563 = lean_box(0); +x_564 = l_Lean_Elab_Term_toParserDescr___main___closed__84; +x_565 = lean_name_mk_numeral(x_564, x_562); +x_566 = l_Lean_Elab_Term_toParserDescr___main___closed__83; +x_567 = l_Lean_Elab_Term_toParserDescr___main___closed__87; +x_568 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_568, 0, x_563); +lean_ctor_set(x_568, 1, x_566); +lean_ctor_set(x_568, 2, x_565); +lean_ctor_set(x_568, 3, x_567); +x_569 = l_Array_empty___closed__1; +x_570 = lean_array_push(x_569, x_568); +x_571 = l___private_Init_Lean_Elab_Term_8__expandCDot___closed__4; +x_572 = lean_array_push(x_570, x_571); +x_573 = l_Lean_Parser_Term_id___elambda__1___closed__2; +x_574 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_574, 0, x_573); +lean_ctor_set(x_574, 1, x_572); +lean_ctor_set(x_560, 0, x_574); +return x_560; +} +else +{ +lean_object* x_575; lean_object* x_576; lean_object* x_577; lean_object* x_578; lean_object* x_579; lean_object* x_580; lean_object* x_581; lean_object* x_582; lean_object* x_583; lean_object* x_584; lean_object* x_585; lean_object* x_586; lean_object* x_587; lean_object* x_588; lean_object* x_589; +x_575 = lean_ctor_get(x_560, 0); +x_576 = lean_ctor_get(x_560, 1); +lean_inc(x_576); +lean_inc(x_575); +lean_dec(x_560); +x_577 = lean_box(0); +x_578 = l_Lean_Elab_Term_toParserDescr___main___closed__84; +x_579 = lean_name_mk_numeral(x_578, x_575); +x_580 = l_Lean_Elab_Term_toParserDescr___main___closed__83; +x_581 = l_Lean_Elab_Term_toParserDescr___main___closed__87; +x_582 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_582, 0, x_577); +lean_ctor_set(x_582, 1, x_580); +lean_ctor_set(x_582, 2, x_579); +lean_ctor_set(x_582, 3, x_581); +x_583 = l_Array_empty___closed__1; +x_584 = lean_array_push(x_583, x_582); +x_585 = l___private_Init_Lean_Elab_Term_8__expandCDot___closed__4; +x_586 = lean_array_push(x_584, x_585); +x_587 = l_Lean_Parser_Term_id___elambda__1___closed__2; +x_588 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_588, 0, x_587); +lean_ctor_set(x_588, 1, x_586); +x_589 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_589, 0, x_588); +lean_ctor_set(x_589, 1, x_576); +return x_589; +} +} +} +else +{ +lean_object* x_590; lean_object* x_591; lean_object* x_592; +lean_dec(x_4); +x_590 = lean_unsigned_to_nat(0u); +x_591 = l_Lean_Syntax_getArg(x_1, x_590); +x_592 = l_Lean_Syntax_isStrLit_x3f(x_591); +lean_dec(x_591); +if (lean_obj_tag(x_592) == 0) +{ +lean_object* x_593; +lean_dec(x_2); +lean_dec(x_1); +x_593 = l_Lean_Elab_Term_throwUnsupportedSyntax___rarg(x_3); +return x_593; +} +else +{ +lean_object* x_594; lean_object* x_595; lean_object* x_596; lean_object* x_597; lean_object* x_598; uint8_t x_599; +x_594 = lean_ctor_get(x_592, 0); +lean_inc(x_594); +lean_dec(x_592); +x_595 = lean_unsigned_to_nat(1u); +x_596 = l_Lean_Syntax_getArg(x_1, x_595); +lean_dec(x_1); +x_597 = l___private_Init_Lean_Elab_Syntax_1__getOptNum(x_596); +lean_dec(x_596); +x_598 = l_Lean_Elab_Term_getCurrMacroScope(x_2, x_3); +lean_dec(x_2); +x_599 = !lean_is_exclusive(x_598); +if (x_599 == 0) +{ +lean_object* x_600; lean_object* x_601; lean_object* x_602; lean_object* x_603; lean_object* x_604; lean_object* x_605; lean_object* x_606; lean_object* x_607; lean_object* x_608; lean_object* x_609; lean_object* x_610; lean_object* x_611; lean_object* x_612; lean_object* x_613; lean_object* x_614; lean_object* x_615; lean_object* x_616; lean_object* x_617; lean_object* x_618; lean_object* x_619; lean_object* x_620; lean_object* x_621; lean_object* x_622; lean_object* x_623; lean_object* x_624; lean_object* x_625; +x_600 = lean_ctor_get(x_598, 0); +x_601 = lean_box(0); +x_602 = l_Lean_Elab_Term_toParserDescr___main___closed__91; +x_603 = lean_name_mk_numeral(x_602, x_600); +x_604 = l_Lean_Elab_Term_toParserDescr___main___closed__90; +x_605 = l_Lean_Elab_Term_toParserDescr___main___closed__94; +x_606 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_606, 0, x_601); +lean_ctor_set(x_606, 1, x_604); +lean_ctor_set(x_606, 2, x_603); +lean_ctor_set(x_606, 3, x_605); +x_607 = l_Array_empty___closed__1; +x_608 = lean_array_push(x_607, x_606); +x_609 = l___private_Init_Lean_Elab_Term_8__expandCDot___closed__4; +x_610 = lean_array_push(x_608, x_609); +x_611 = l_Lean_Parser_Term_id___elambda__1___closed__2; +x_612 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_612, 0, x_611); +lean_ctor_set(x_612, 1, x_610); +x_613 = lean_array_push(x_607, x_612); +x_614 = l_Lean_mkStxStrLit(x_594, x_601); +x_615 = l_Lean_mkOptionalNode___closed__1; +x_616 = lean_array_push(x_615, x_614); +x_617 = l_Lean_Parser_Term_str___elambda__1___closed__2; +x_618 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_618, 0, x_617); +lean_ctor_set(x_618, 1, x_616); +x_619 = lean_array_push(x_613, x_618); +x_620 = l_Lean_Parser_Term_app___elambda__1___closed__2; +x_621 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_621, 0, x_620); +lean_ctor_set(x_621, 1, x_619); +x_622 = lean_array_push(x_607, x_621); +x_623 = l___private_Init_Lean_Elab_Quotation_4__quoteOption___at_Lean_Elab_Term_toParserDescr___main___spec__1(x_597); +x_624 = lean_array_push(x_622, x_623); +x_625 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_625, 0, x_620); +lean_ctor_set(x_625, 1, x_624); +lean_ctor_set(x_598, 0, x_625); +return x_598; +} +else +{ +lean_object* x_626; lean_object* x_627; lean_object* x_628; lean_object* x_629; lean_object* x_630; lean_object* x_631; lean_object* x_632; lean_object* x_633; lean_object* x_634; lean_object* x_635; lean_object* x_636; lean_object* x_637; lean_object* x_638; lean_object* x_639; lean_object* x_640; lean_object* x_641; lean_object* x_642; lean_object* x_643; lean_object* x_644; lean_object* x_645; lean_object* x_646; lean_object* x_647; lean_object* x_648; lean_object* x_649; lean_object* x_650; lean_object* x_651; lean_object* x_652; lean_object* x_653; +x_626 = lean_ctor_get(x_598, 0); +x_627 = lean_ctor_get(x_598, 1); +lean_inc(x_627); +lean_inc(x_626); +lean_dec(x_598); +x_628 = lean_box(0); +x_629 = l_Lean_Elab_Term_toParserDescr___main___closed__91; +x_630 = lean_name_mk_numeral(x_629, x_626); +x_631 = l_Lean_Elab_Term_toParserDescr___main___closed__90; +x_632 = l_Lean_Elab_Term_toParserDescr___main___closed__94; +x_633 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_633, 0, x_628); +lean_ctor_set(x_633, 1, x_631); +lean_ctor_set(x_633, 2, x_630); +lean_ctor_set(x_633, 3, x_632); +x_634 = l_Array_empty___closed__1; +x_635 = lean_array_push(x_634, x_633); +x_636 = l___private_Init_Lean_Elab_Term_8__expandCDot___closed__4; +x_637 = lean_array_push(x_635, x_636); +x_638 = l_Lean_Parser_Term_id___elambda__1___closed__2; +x_639 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_639, 0, x_638); +lean_ctor_set(x_639, 1, x_637); +x_640 = lean_array_push(x_634, x_639); +x_641 = l_Lean_mkStxStrLit(x_594, x_628); +x_642 = l_Lean_mkOptionalNode___closed__1; +x_643 = lean_array_push(x_642, x_641); +x_644 = l_Lean_Parser_Term_str___elambda__1___closed__2; +x_645 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_645, 0, x_644); +lean_ctor_set(x_645, 1, x_643); +x_646 = lean_array_push(x_640, x_645); +x_647 = l_Lean_Parser_Term_app___elambda__1___closed__2; +x_648 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_648, 0, x_647); +lean_ctor_set(x_648, 1, x_646); +x_649 = lean_array_push(x_634, x_648); +x_650 = l___private_Init_Lean_Elab_Quotation_4__quoteOption___at_Lean_Elab_Term_toParserDescr___main___spec__1(x_597); +x_651 = lean_array_push(x_649, x_650); +x_652 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_652, 0, x_647); +lean_ctor_set(x_652, 1, x_651); +x_653 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_653, 0, x_652); +lean_ctor_set(x_653, 1, x_627); +return x_653; +} +} +} +} +else +{ +lean_object* x_654; lean_object* x_655; lean_object* x_656; lean_object* x_736; lean_object* x_737; lean_object* x_738; +lean_dec(x_4); +x_654 = lean_unsigned_to_nat(0u); +x_655 = l_Lean_Syntax_getIdAt(x_1, x_654); +x_736 = lean_unsigned_to_nat(1u); +x_737 = l_Lean_Syntax_getArg(x_1, x_736); +x_738 = l___private_Init_Lean_Elab_Syntax_1__getOptNum(x_737); +lean_dec(x_737); +if (lean_obj_tag(x_738) == 0) +{ +x_656 = x_654; +goto block_735; +} +else +{ +lean_object* x_739; +x_739 = lean_ctor_get(x_738, 0); +lean_inc(x_739); +lean_dec(x_738); +x_656 = x_739; +goto block_735; +} +block_735: +{ +lean_object* x_657; lean_object* x_658; lean_object* x_659; lean_object* x_660; uint8_t x_722; +x_657 = l_Lean_Elab_Term_getEnv___rarg(x_3); +x_658 = lean_ctor_get(x_657, 0); +lean_inc(x_658); +x_659 = lean_ctor_get(x_657, 1); +lean_inc(x_659); +lean_dec(x_657); +x_722 = l_Lean_Parser_isParserCategory(x_658, x_655); +lean_dec(x_658); +if (x_722 == 0) +{ +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; uint8_t x_731; +lean_dec(x_656); +x_723 = lean_unsigned_to_nat(3u); +x_724 = l_Lean_Syntax_getArg(x_1, x_723); +lean_dec(x_1); +x_725 = lean_alloc_ctor(4, 1, 0); +lean_ctor_set(x_725, 0, x_655); +x_726 = l_Lean_Elab_Term_toParserDescr___main___closed__104; +x_727 = lean_alloc_ctor(8, 2, 0); +lean_ctor_set(x_727, 0, x_726); +lean_ctor_set(x_727, 1, x_725); +x_728 = l_Lean_Elab_Term_mkConst___closed__4; +x_729 = lean_alloc_ctor(8, 2, 0); +lean_ctor_set(x_729, 0, x_727); +lean_ctor_set(x_729, 1, x_728); +x_730 = l_Lean_Elab_Term_throwError___rarg(x_724, x_729, x_2, x_659); +x_731 = !lean_is_exclusive(x_730); +if (x_731 == 0) +{ +return x_730; +} +else +{ +lean_object* x_732; lean_object* x_733; lean_object* x_734; +x_732 = lean_ctor_get(x_730, 0); +x_733 = lean_ctor_get(x_730, 1); +lean_inc(x_733); +lean_inc(x_732); +lean_dec(x_730); +x_734 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_734, 0, x_732); +lean_ctor_set(x_734, 1, x_733); +return x_734; +} +} +else +{ +lean_dec(x_1); +x_660 = x_659; +goto block_721; +} +block_721: +{ +lean_object* x_661; uint8_t x_662; +x_661 = l_Lean_Elab_Term_getCurrMacroScope(x_2, x_660); +lean_dec(x_2); +x_662 = !lean_is_exclusive(x_661); +if (x_662 == 0) +{ +lean_object* x_663; lean_object* x_664; lean_object* x_665; lean_object* x_666; lean_object* x_667; lean_object* x_668; lean_object* x_669; lean_object* x_670; lean_object* x_671; lean_object* x_672; lean_object* x_673; lean_object* x_674; lean_object* x_675; lean_object* x_676; lean_object* x_677; lean_object* x_678; lean_object* x_679; lean_object* x_680; lean_object* x_681; lean_object* x_682; lean_object* x_683; lean_object* x_684; lean_object* x_685; lean_object* x_686; lean_object* x_687; lean_object* x_688; lean_object* x_689; lean_object* x_690; +x_663 = lean_ctor_get(x_661, 0); +x_664 = lean_box(0); +x_665 = l_Lean_Elab_Term_toParserDescr___main___closed__98; +x_666 = lean_name_mk_numeral(x_665, x_663); +x_667 = l_Lean_Elab_Term_toParserDescr___main___closed__97; +x_668 = l_Lean_Elab_Term_toParserDescr___main___closed__101; +x_669 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_669, 0, x_664); +lean_ctor_set(x_669, 1, x_667); +lean_ctor_set(x_669, 2, x_666); +lean_ctor_set(x_669, 3, x_668); +x_670 = l_Array_empty___closed__1; +x_671 = lean_array_push(x_670, x_669); +x_672 = l___private_Init_Lean_Elab_Term_8__expandCDot___closed__4; +x_673 = lean_array_push(x_671, x_672); +x_674 = l_Lean_Parser_Term_id___elambda__1___closed__2; +x_675 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_675, 0, x_674); +lean_ctor_set(x_675, 1, x_673); +x_676 = lean_array_push(x_670, x_675); +x_677 = l___private_Init_Lean_Elab_Quotation_1__quoteName___main(x_655); +x_678 = lean_array_push(x_676, x_677); +x_679 = l_Lean_Parser_Term_app___elambda__1___closed__2; +x_680 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_680, 0, x_679); +lean_ctor_set(x_680, 1, x_678); +x_681 = lean_array_push(x_670, x_680); +x_682 = l_Nat_repr(x_656); +x_683 = l_Lean_numLitKind; +x_684 = l_Lean_mkStxLit(x_683, x_682, x_664); +x_685 = l_Lean_mkOptionalNode___closed__1; +x_686 = lean_array_push(x_685, x_684); +x_687 = l_Lean_Parser_Term_num___elambda__1___closed__1; +x_688 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_688, 0, x_687); +lean_ctor_set(x_688, 1, x_686); +x_689 = lean_array_push(x_681, x_688); +x_690 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_690, 0, x_679); +lean_ctor_set(x_690, 1, x_689); +lean_ctor_set(x_661, 0, x_690); +return x_661; +} +else +{ +lean_object* x_691; lean_object* x_692; lean_object* x_693; lean_object* x_694; lean_object* x_695; lean_object* x_696; lean_object* x_697; lean_object* x_698; lean_object* x_699; lean_object* x_700; lean_object* x_701; lean_object* x_702; lean_object* x_703; lean_object* x_704; lean_object* x_705; lean_object* x_706; lean_object* x_707; lean_object* x_708; lean_object* x_709; lean_object* x_710; lean_object* x_711; lean_object* x_712; lean_object* x_713; lean_object* x_714; lean_object* x_715; lean_object* x_716; lean_object* x_717; lean_object* x_718; lean_object* x_719; lean_object* x_720; +x_691 = lean_ctor_get(x_661, 0); +x_692 = lean_ctor_get(x_661, 1); +lean_inc(x_692); +lean_inc(x_691); +lean_dec(x_661); +x_693 = lean_box(0); +x_694 = l_Lean_Elab_Term_toParserDescr___main___closed__98; +x_695 = lean_name_mk_numeral(x_694, x_691); +x_696 = l_Lean_Elab_Term_toParserDescr___main___closed__97; +x_697 = l_Lean_Elab_Term_toParserDescr___main___closed__101; +x_698 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_698, 0, x_693); +lean_ctor_set(x_698, 1, x_696); +lean_ctor_set(x_698, 2, x_695); +lean_ctor_set(x_698, 3, x_697); +x_699 = l_Array_empty___closed__1; +x_700 = lean_array_push(x_699, x_698); +x_701 = l___private_Init_Lean_Elab_Term_8__expandCDot___closed__4; +x_702 = lean_array_push(x_700, x_701); +x_703 = l_Lean_Parser_Term_id___elambda__1___closed__2; +x_704 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_704, 0, x_703); +lean_ctor_set(x_704, 1, x_702); +x_705 = lean_array_push(x_699, x_704); +x_706 = l___private_Init_Lean_Elab_Quotation_1__quoteName___main(x_655); +x_707 = lean_array_push(x_705, x_706); +x_708 = l_Lean_Parser_Term_app___elambda__1___closed__2; +x_709 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_709, 0, x_708); +lean_ctor_set(x_709, 1, x_707); +x_710 = lean_array_push(x_699, x_709); +x_711 = l_Nat_repr(x_656); +x_712 = l_Lean_numLitKind; +x_713 = l_Lean_mkStxLit(x_712, x_711, x_693); +x_714 = l_Lean_mkOptionalNode___closed__1; +x_715 = lean_array_push(x_714, x_713); +x_716 = l_Lean_Parser_Term_num___elambda__1___closed__1; +x_717 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_717, 0, x_716); +lean_ctor_set(x_717, 1, x_715); +x_718 = lean_array_push(x_710, x_717); +x_719 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_719, 0, x_708); +lean_ctor_set(x_719, 1, x_718); +x_720 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_720, 0, x_719); +lean_ctor_set(x_720, 1, x_692); +return x_720; +} +} +} +} +} +else +{ +lean_object* x_740; lean_object* x_741; +lean_dec(x_4); +x_740 = lean_unsigned_to_nat(1u); +x_741 = l_Lean_Syntax_getArg(x_1, x_740); +lean_dec(x_1); +x_1 = x_741; +goto _start; +} +} +else +{ +lean_object* x_743; lean_object* x_744; +lean_dec(x_4); +x_743 = lean_unsigned_to_nat(0u); +x_744 = l_Lean_Syntax_getArg(x_1, x_743); +lean_dec(x_1); +x_1 = x_744; +goto _start; +} +} +else +{ +lean_object* x_746; lean_object* x_747; lean_object* x_748; +lean_dec(x_4); +x_746 = l_Lean_Syntax_getArgs(x_1); +lean_dec(x_1); +x_747 = lean_unsigned_to_nat(0u); +lean_inc(x_2); +x_748 = l_Array_umapMAux___main___at_Lean_Elab_Term_toParserDescr___main___spec__2(x_747, x_746, x_2, x_3); +if (lean_obj_tag(x_748) == 0) +{ +lean_object* x_749; lean_object* x_750; lean_object* x_751; +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___private_Init_Lean_Elab_Syntax_2__mkParserSeq(x_749, x_2, x_750); +lean_dec(x_2); +lean_dec(x_749); +return x_751; +} +else +{ +uint8_t x_752; +lean_dec(x_2); +x_752 = !lean_is_exclusive(x_748); +if (x_752 == 0) +{ +return x_748; +} +else +{ +lean_object* x_753; lean_object* x_754; lean_object* x_755; +x_753 = lean_ctor_get(x_748, 0); +x_754 = lean_ctor_get(x_748, 1); +lean_inc(x_754); +lean_inc(x_753); +lean_dec(x_748); +x_755 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_755, 0, x_753); +lean_ctor_set(x_755, 1, x_754); +return x_755; +} +} +} +} +} +lean_object* l___private_Init_Lean_Elab_Quotation_4__quoteOption___at_Lean_Elab_Term_toParserDescr___main___spec__1___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +lean_object* x_5; +x_5 = l___private_Init_Lean_Elab_Quotation_4__quoteOption___at_Lean_Elab_Term_toParserDescr___main___spec__1___lambda__1(x_1, x_2, x_3, x_4); +lean_dec(x_3); +return x_5; +} +} +lean_object* l_Lean_Elab_Term_toParserDescr(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; +x_4 = l_Lean_Elab_Term_toParserDescr___main(x_1, x_2, x_3); +return x_4; +} +} +lean_object* l_Lean_Elab_Command_elabDeclareSyntaxCat(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; +x_4 = lean_unsigned_to_nat(1u); +x_5 = l_Lean_Syntax_getIdAt(x_1, x_4); +x_6 = l_Lean_Syntax_formatStxAux___main___closed__5; +lean_inc(x_5); +x_7 = l_Lean_Name_appendAfter(x_5, x_6); +lean_inc(x_2); +x_8 = l_Lean_Elab_Command_getEnv(x_2, x_3); +if (lean_obj_tag(x_8) == 0) +{ +lean_object* x_9; lean_object* x_10; uint8_t x_11; lean_object* 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 = 0; +x_12 = l_Lean_Parser_registerParserCategory(x_9, x_7, x_5, 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, 0); +lean_inc(x_13); +x_14 = lean_ctor_get(x_12, 1); +lean_inc(x_14); +lean_dec(x_12); +x_15 = l_Lean_Elab_Command_setEnv(x_13, x_2, x_14); +return x_15; +} +else +{ +uint8_t x_16; +x_16 = !lean_is_exclusive(x_12); +if (x_16 == 0) +{ +lean_object* x_17; lean_object* x_18; lean_object* x_19; +x_17 = lean_ctor_get(x_12, 0); +x_18 = l___private_Init_Lean_Elab_Command_1__ioErrorToMessage(x_2, x_1, x_17); +x_19 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_19, 0, x_18); +lean_ctor_set(x_12, 0, x_19); +return x_12; +} +else +{ +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_12, 0); +x_21 = lean_ctor_get(x_12, 1); +lean_inc(x_21); +lean_inc(x_20); +lean_dec(x_12); +x_22 = l___private_Init_Lean_Elab_Command_1__ioErrorToMessage(x_2, x_1, x_20); +x_23 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_23, 0, x_22); +x_24 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_24, 0, x_23); +lean_ctor_set(x_24, 1, x_21); +return x_24; +} +} +} +else +{ +uint8_t x_25; +lean_dec(x_7); +lean_dec(x_5); +lean_dec(x_2); +x_25 = !lean_is_exclusive(x_8); +if (x_25 == 0) +{ +return x_8; +} +else +{ +lean_object* x_26; lean_object* x_27; lean_object* x_28; +x_26 = lean_ctor_get(x_8, 0); +x_27 = lean_ctor_get(x_8, 1); +lean_inc(x_27); +lean_inc(x_26); +lean_dec(x_8); +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* l_Lean_Elab_Command_elabDeclareSyntaxCat___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; +x_4 = l_Lean_Elab_Command_elabDeclareSyntaxCat(x_1, x_2, x_3); +lean_dec(x_1); +return x_4; +} +} +lean_object* _init_l___regBuiltinCommandElab_Lean_Elab_Command_elabDeclareSyntaxCat___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("elabDeclareSyntaxCat"); +return x_1; +} +} +lean_object* _init_l___regBuiltinCommandElab_Lean_Elab_Command_elabDeclareSyntaxCat___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Elab_Command_declareBuiltinCommandElab___closed__3; +x_2 = l___regBuiltinCommandElab_Lean_Elab_Command_elabDeclareSyntaxCat___closed__1; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +lean_object* _init_l___regBuiltinCommandElab_Lean_Elab_Command_elabDeclareSyntaxCat___closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Command_elabDeclareSyntaxCat___boxed), 3, 0); +return x_1; +} +} +lean_object* l___regBuiltinCommandElab_Lean_Elab_Command_elabDeclareSyntaxCat(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_Parser_Command_syntaxCat___elambda__1___closed__2; +x_3 = l___regBuiltinCommandElab_Lean_Elab_Command_elabDeclareSyntaxCat___closed__2; +x_4 = l___regBuiltinCommandElab_Lean_Elab_Command_elabDeclareSyntaxCat___closed__3; +x_5 = l_Lean_Elab_Command_addBuiltinCommandElab(x_2, x_3, x_4, x_1); +return x_5; +} +} +lean_object* l_Lean_Elab_Command_elabSyntax___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(1u); +x_6 = l_Lean_Syntax_getArg(x_1, x_5); +x_7 = l_Lean_Elab_Term_toParserDescr___main(x_6, x_3, x_4); +return x_7; +} +} +lean_object* _init_l_Lean_Elab_Command_elabSyntax___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("Lean.ParserDescr"); +return x_1; +} +} +lean_object* _init_l_Lean_Elab_Command_elabSyntax___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Command_elabSyntax___closed__1; +x_2 = lean_string_utf8_byte_size(x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Elab_Command_elabSyntax___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Elab_Command_elabSyntax___closed__1; +x_2 = lean_unsigned_to_nat(0u); +x_3 = l_Lean_Elab_Command_elabSyntax___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_Lean_Elab_Command_elabSyntax___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___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_Lean_Elab_Command_elabSyntax___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Command_elabSyntax___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_Lean_Elab_Command_elabSyntax___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Array_empty___closed__1; +x_2 = l___private_Init_Lean_Elab_Term_8__expandCDot___closed__4; +x_3 = lean_array_push(x_1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Elab_Command_elabSyntax___closed__7() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Parser_Command_attributes___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_Lean_Elab_Command_elabSyntax___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_Command_elabSyntax___closed__7; +x_3 = lean_array_push(x_1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Elab_Command_elabSyntax___closed__9() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Parser_Command_private___elambda__1___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_Lean_Elab_Command_elabSyntax___closed__10() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Array_empty___closed__1; +x_2 = l_Lean_Elab_Command_elabSyntax___closed__9; +x_3 = lean_array_push(x_1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Elab_Command_elabSyntax___closed__11() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Command_private___elambda__1___closed__2; +x_2 = l_Lean_Elab_Command_elabSyntax___closed__10; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set(x_3, 1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Elab_Command_elabSyntax___closed__12() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Array_empty___closed__1; +x_2 = l_Lean_Elab_Command_elabSyntax___closed__11; +x_3 = lean_array_push(x_1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Elab_Command_elabSyntax___closed__13() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_nullKind___closed__2; +x_2 = l_Lean_Elab_Command_elabSyntax___closed__12; +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_Lean_Elab_Command_elabSyntax___closed__14() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Parser_Command_def___elambda__1___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_Lean_Elab_Command_elabSyntax___closed__15() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Array_empty___closed__1; +x_2 = l_Lean_Elab_Command_elabSyntax___closed__14; +x_3 = lean_array_push(x_1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Elab_Command_elabSyntax___closed__16() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Array_empty___closed__1; +x_2 = l___private_Init_Lean_Elab_Quotation_8__getHeadInfo___elambda__3___closed__4; +x_3 = lean_array_push(x_1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Elab_Command_elabSyntax___closed__17() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("ParserDescr.node"); +return x_1; +} +} +lean_object* _init_l_Lean_Elab_Command_elabSyntax___closed__18() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Elab_Command_elabSyntax___closed__17; +x_2 = lean_string_utf8_byte_size(x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Elab_Command_elabSyntax___closed__19() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Elab_Command_elabSyntax___closed__17; +x_2 = lean_unsigned_to_nat(0u); +x_3 = l_Lean_Elab_Command_elabSyntax___closed__18; +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_Lean_Elab_Command_elabSyntax___closed__20() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__4; +x_2 = l_Lean_Meta_DiscrTree_Trie_format___main___rarg___closed__1; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Elab_Command_elabSyntax___closed__21() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__6; +x_2 = l_Lean_Meta_DiscrTree_Trie_format___main___rarg___closed__1; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Elab_Command_elabSyntax___closed__22() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Command_elabSyntax___closed__21; +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_Lean_Elab_Command_elabSyntax___closed__23() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Elab_Command_elabSyntax___closed__22; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; +} +} +lean_object* l_Lean_Elab_Command_elabSyntax(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; +lean_inc(x_2); +x_4 = l_Lean_Elab_Command_getEnv(x_2, 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; lean_object* x_9; uint8_t x_242; +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_unsigned_to_nat(3u); +x_8 = l_Lean_Syntax_getIdAt(x_1, x_7); +x_242 = l_Lean_Parser_isParserCategory(x_5, x_8); +if (x_242 == 0) +{ +lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; lean_object* x_247; lean_object* x_248; lean_object* x_249; uint8_t x_250; +lean_dec(x_5); +x_243 = l_Lean_Syntax_getArg(x_1, x_7); +lean_dec(x_1); +x_244 = lean_alloc_ctor(4, 1, 0); +lean_ctor_set(x_244, 0, x_8); +x_245 = l_Lean_Elab_Term_toParserDescr___main___closed__104; +x_246 = lean_alloc_ctor(8, 2, 0); +lean_ctor_set(x_246, 0, x_245); +lean_ctor_set(x_246, 1, x_244); +x_247 = l_Lean_Elab_Term_mkConst___closed__4; +x_248 = lean_alloc_ctor(8, 2, 0); +lean_ctor_set(x_248, 0, x_246); +lean_ctor_set(x_248, 1, x_247); +x_249 = l_Lean_Elab_Command_throwError___rarg(x_243, x_248, x_2, x_6); +x_250 = !lean_is_exclusive(x_249); +if (x_250 == 0) +{ +return x_249; +} +else +{ +lean_object* x_251; lean_object* x_252; lean_object* x_253; +x_251 = lean_ctor_get(x_249, 0); +x_252 = lean_ctor_get(x_249, 1); +lean_inc(x_252); +lean_inc(x_251); +lean_dec(x_249); +x_253 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_253, 0, x_251); +lean_ctor_set(x_253, 1, x_252); +return x_253; +} +} +else +{ +x_9 = x_6; +goto block_241; +} +block_241: +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; +lean_inc(x_8); +x_10 = l_Lean_Parser_mkFreshKind(x_5, x_8); +x_11 = lean_ctor_get(x_10, 0); +lean_inc(x_11); +x_12 = lean_ctor_get(x_10, 1); +lean_inc(x_12); +lean_dec(x_10); +lean_inc(x_2); +x_13 = l_Lean_Elab_Command_setEnv(x_11, x_2, x_9); +if (lean_obj_tag(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; 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_148; lean_object* x_149; +x_14 = lean_ctor_get(x_13, 1); +lean_inc(x_14); +lean_dec(x_13); +x_15 = l_Lean_Syntax_formatStxAux___main___closed__5; +x_16 = l_Lean_Name_appendAfter(x_8, x_15); +x_17 = l_Lean_mkIdentFrom(x_1, x_16); +x_18 = l_Lean_Elab_Command_getCurrMacroScope(x_2, x_14); +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 = lean_box(0); +x_22 = l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__6; +x_23 = lean_name_mk_numeral(x_22, x_19); +x_24 = l_Lean_Elab_Command_elabSyntax___closed__3; +x_25 = l_Lean_Elab_Command_elabSyntax___closed__5; +x_26 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_26, 0, x_21); +lean_ctor_set(x_26, 1, x_24); +lean_ctor_set(x_26, 2, x_23); +lean_ctor_set(x_26, 3, x_25); +x_27 = l_Array_empty___closed__1; +x_28 = lean_array_push(x_27, x_26); +x_29 = l___private_Init_Lean_Elab_Term_8__expandCDot___closed__4; +x_30 = lean_array_push(x_28, x_29); +x_31 = l_Lean_Parser_Term_id___elambda__1___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); +lean_inc(x_1); +x_148 = lean_alloc_closure((void*)(l_Lean_Elab_Command_elabSyntax___lambda__1___boxed), 4, 1); +lean_closure_set(x_148, 0, x_1); +lean_inc(x_2); +x_149 = l___private_Init_Lean_Elab_Command_2__getState(x_2, x_20); +if (lean_obj_tag(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; +x_150 = lean_ctor_get(x_149, 0); +lean_inc(x_150); +x_151 = lean_ctor_get(x_149, 1); +lean_inc(x_151); +lean_dec(x_149); +x_152 = l___private_Init_Lean_Elab_Command_11__getVarDecls(x_150); +x_153 = l___private_Init_Lean_Elab_Command_9__mkTermContext(x_2, x_150, x_21); +x_154 = l___private_Init_Lean_Elab_Command_10__mkTermState(x_150); +lean_dec(x_150); +x_155 = l_Lean_Elab_Term_elabBinders___rarg(x_152, x_148, x_153, x_154); +lean_dec(x_152); +if (lean_obj_tag(x_155) == 0) +{ +lean_object* x_156; lean_object* x_157; lean_object* x_158; +x_156 = lean_ctor_get(x_155, 0); +lean_inc(x_156); +x_157 = lean_ctor_get(x_155, 1); +lean_inc(x_157); +lean_dec(x_155); +lean_inc(x_2); +x_158 = l___private_Init_Lean_Elab_Command_2__getState(x_2, x_151); +if (lean_obj_tag(x_158) == 0) +{ +lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; uint8_t x_164; +x_159 = lean_ctor_get(x_157, 0); +lean_inc(x_159); +x_160 = lean_ctor_get(x_158, 0); +lean_inc(x_160); +x_161 = lean_ctor_get(x_158, 1); +lean_inc(x_161); +lean_dec(x_158); +x_162 = lean_ctor_get(x_159, 0); +lean_inc(x_162); +lean_dec(x_159); +x_163 = lean_ctor_get(x_157, 2); +lean_inc(x_163); +lean_dec(x_157); +x_164 = !lean_is_exclusive(x_160); +if (x_164 == 0) +{ +lean_object* x_165; lean_object* x_166; lean_object* x_167; +x_165 = lean_ctor_get(x_160, 1); +lean_dec(x_165); +x_166 = lean_ctor_get(x_160, 0); +lean_dec(x_166); +lean_ctor_set(x_160, 1, x_163); +lean_ctor_set(x_160, 0, x_162); +lean_inc(x_2); +x_167 = l___private_Init_Lean_Elab_Command_3__setState(x_160, x_2, x_161); +if (lean_obj_tag(x_167) == 0) +{ +lean_object* x_168; +x_168 = lean_ctor_get(x_167, 1); +lean_inc(x_168); +lean_dec(x_167); +x_33 = x_156; +x_34 = x_168; +goto block_147; +} +else +{ +uint8_t x_169; +lean_dec(x_156); +lean_dec(x_32); +lean_dec(x_17); +lean_dec(x_12); +lean_dec(x_2); +lean_dec(x_1); +x_169 = !lean_is_exclusive(x_167); +if (x_169 == 0) +{ +return x_167; +} +else +{ +lean_object* x_170; lean_object* x_171; lean_object* x_172; +x_170 = lean_ctor_get(x_167, 0); +x_171 = lean_ctor_get(x_167, 1); +lean_inc(x_171); +lean_inc(x_170); +lean_dec(x_167); +x_172 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_172, 0, x_170); +lean_ctor_set(x_172, 1, x_171); +return x_172; +} +} +} +else +{ +lean_object* x_173; lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; +x_173 = lean_ctor_get(x_160, 2); +x_174 = lean_ctor_get(x_160, 3); +x_175 = lean_ctor_get(x_160, 4); +lean_inc(x_175); +lean_inc(x_174); +lean_inc(x_173); +lean_dec(x_160); +x_176 = lean_alloc_ctor(0, 5, 0); +lean_ctor_set(x_176, 0, x_162); +lean_ctor_set(x_176, 1, x_163); +lean_ctor_set(x_176, 2, x_173); +lean_ctor_set(x_176, 3, x_174); +lean_ctor_set(x_176, 4, x_175); +lean_inc(x_2); +x_177 = l___private_Init_Lean_Elab_Command_3__setState(x_176, x_2, x_161); +if (lean_obj_tag(x_177) == 0) +{ +lean_object* x_178; +x_178 = lean_ctor_get(x_177, 1); +lean_inc(x_178); +lean_dec(x_177); +x_33 = x_156; +x_34 = x_178; +goto block_147; +} +else +{ +lean_object* x_179; lean_object* x_180; lean_object* x_181; lean_object* x_182; +lean_dec(x_156); +lean_dec(x_32); +lean_dec(x_17); +lean_dec(x_12); +lean_dec(x_2); +lean_dec(x_1); +x_179 = lean_ctor_get(x_177, 0); +lean_inc(x_179); +x_180 = lean_ctor_get(x_177, 1); +lean_inc(x_180); +if (lean_is_exclusive(x_177)) { + lean_ctor_release(x_177, 0); + lean_ctor_release(x_177, 1); + x_181 = x_177; +} else { + lean_dec_ref(x_177); + x_181 = lean_box(0); +} +if (lean_is_scalar(x_181)) { + x_182 = lean_alloc_ctor(1, 2, 0); +} else { + x_182 = x_181; +} +lean_ctor_set(x_182, 0, x_179); +lean_ctor_set(x_182, 1, x_180); +return x_182; +} +} +} +else +{ +uint8_t x_183; +lean_dec(x_157); +lean_dec(x_156); +lean_dec(x_32); +lean_dec(x_17); +lean_dec(x_12); +lean_dec(x_2); +lean_dec(x_1); +x_183 = !lean_is_exclusive(x_158); +if (x_183 == 0) +{ +return x_158; +} +else +{ +lean_object* x_184; lean_object* x_185; lean_object* x_186; +x_184 = lean_ctor_get(x_158, 0); +x_185 = lean_ctor_get(x_158, 1); +lean_inc(x_185); +lean_inc(x_184); +lean_dec(x_158); +x_186 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_186, 0, x_184); +lean_ctor_set(x_186, 1, x_185); +return x_186; +} +} +} +else +{ +lean_object* x_187; +x_187 = lean_ctor_get(x_155, 0); +lean_inc(x_187); +if (lean_obj_tag(x_187) == 0) +{ +lean_object* x_188; lean_object* x_189; lean_object* x_190; +lean_dec(x_32); +lean_dec(x_17); +lean_dec(x_12); +lean_dec(x_1); +x_188 = lean_ctor_get(x_155, 1); +lean_inc(x_188); +lean_dec(x_155); +x_189 = lean_ctor_get(x_187, 0); +lean_inc(x_189); +lean_dec(x_187); +lean_inc(x_2); +x_190 = l___private_Init_Lean_Elab_Command_2__getState(x_2, x_151); +if (lean_obj_tag(x_190) == 0) +{ +lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; uint8_t x_196; +x_191 = lean_ctor_get(x_188, 0); +lean_inc(x_191); +x_192 = lean_ctor_get(x_190, 0); +lean_inc(x_192); +x_193 = lean_ctor_get(x_190, 1); +lean_inc(x_193); +lean_dec(x_190); +x_194 = lean_ctor_get(x_191, 0); +lean_inc(x_194); +lean_dec(x_191); +x_195 = lean_ctor_get(x_188, 2); +lean_inc(x_195); +lean_dec(x_188); +x_196 = !lean_is_exclusive(x_192); +if (x_196 == 0) +{ +lean_object* x_197; lean_object* x_198; lean_object* x_199; +x_197 = lean_ctor_get(x_192, 1); +lean_dec(x_197); +x_198 = lean_ctor_get(x_192, 0); +lean_dec(x_198); +lean_ctor_set(x_192, 1, x_195); +lean_ctor_set(x_192, 0, x_194); +x_199 = l___private_Init_Lean_Elab_Command_3__setState(x_192, x_2, x_193); +if (lean_obj_tag(x_199) == 0) +{ +uint8_t x_200; +x_200 = !lean_is_exclusive(x_199); +if (x_200 == 0) +{ +lean_object* x_201; +x_201 = lean_ctor_get(x_199, 0); +lean_dec(x_201); +lean_ctor_set_tag(x_199, 1); +lean_ctor_set(x_199, 0, x_189); +return x_199; +} +else +{ +lean_object* x_202; lean_object* x_203; +x_202 = lean_ctor_get(x_199, 1); +lean_inc(x_202); +lean_dec(x_199); +x_203 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_203, 0, x_189); +lean_ctor_set(x_203, 1, x_202); +return x_203; +} +} +else +{ +uint8_t x_204; +lean_dec(x_189); +x_204 = !lean_is_exclusive(x_199); +if (x_204 == 0) +{ +return x_199; +} +else +{ +lean_object* x_205; lean_object* x_206; lean_object* x_207; +x_205 = lean_ctor_get(x_199, 0); +x_206 = lean_ctor_get(x_199, 1); +lean_inc(x_206); +lean_inc(x_205); +lean_dec(x_199); +x_207 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_207, 0, x_205); +lean_ctor_set(x_207, 1, x_206); +return x_207; +} +} +} +else +{ +lean_object* x_208; lean_object* x_209; lean_object* x_210; lean_object* x_211; lean_object* x_212; +x_208 = lean_ctor_get(x_192, 2); +x_209 = lean_ctor_get(x_192, 3); +x_210 = lean_ctor_get(x_192, 4); +lean_inc(x_210); +lean_inc(x_209); +lean_inc(x_208); +lean_dec(x_192); +x_211 = lean_alloc_ctor(0, 5, 0); +lean_ctor_set(x_211, 0, x_194); +lean_ctor_set(x_211, 1, x_195); +lean_ctor_set(x_211, 2, x_208); +lean_ctor_set(x_211, 3, x_209); +lean_ctor_set(x_211, 4, x_210); +x_212 = l___private_Init_Lean_Elab_Command_3__setState(x_211, x_2, x_193); +if (lean_obj_tag(x_212) == 0) +{ +lean_object* x_213; lean_object* x_214; lean_object* x_215; +x_213 = lean_ctor_get(x_212, 1); +lean_inc(x_213); +if (lean_is_exclusive(x_212)) { + lean_ctor_release(x_212, 0); + lean_ctor_release(x_212, 1); + x_214 = x_212; +} else { + lean_dec_ref(x_212); + x_214 = lean_box(0); +} +if (lean_is_scalar(x_214)) { + x_215 = lean_alloc_ctor(1, 2, 0); +} else { + x_215 = x_214; + lean_ctor_set_tag(x_215, 1); +} +lean_ctor_set(x_215, 0, x_189); +lean_ctor_set(x_215, 1, x_213); +return x_215; +} +else +{ +lean_object* x_216; lean_object* x_217; lean_object* x_218; lean_object* x_219; +lean_dec(x_189); +x_216 = lean_ctor_get(x_212, 0); +lean_inc(x_216); +x_217 = lean_ctor_get(x_212, 1); +lean_inc(x_217); +if (lean_is_exclusive(x_212)) { + lean_ctor_release(x_212, 0); + lean_ctor_release(x_212, 1); + x_218 = x_212; +} else { + lean_dec_ref(x_212); + x_218 = lean_box(0); +} +if (lean_is_scalar(x_218)) { + x_219 = lean_alloc_ctor(1, 2, 0); +} else { + x_219 = x_218; +} +lean_ctor_set(x_219, 0, x_216); +lean_ctor_set(x_219, 1, x_217); +return x_219; +} +} +} +else +{ +uint8_t x_220; +lean_dec(x_189); +lean_dec(x_188); +lean_dec(x_2); +x_220 = !lean_is_exclusive(x_190); +if (x_220 == 0) +{ +return x_190; +} +else +{ +lean_object* x_221; lean_object* x_222; lean_object* x_223; +x_221 = lean_ctor_get(x_190, 0); +x_222 = lean_ctor_get(x_190, 1); +lean_inc(x_222); +lean_inc(x_221); +lean_dec(x_190); +x_223 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_223, 0, x_221); +lean_ctor_set(x_223, 1, x_222); +return x_223; +} +} +} +else +{ +lean_object* x_224; lean_object* x_225; lean_object* x_226; +lean_dec(x_155); +x_224 = l_Lean_Elab_Command_runTermElabM___rarg___closed__1; +x_225 = l_unreachable_x21___rarg(x_224); +lean_inc(x_2); +x_226 = lean_apply_2(x_225, x_2, x_151); +if (lean_obj_tag(x_226) == 0) +{ +lean_object* x_227; lean_object* x_228; +x_227 = lean_ctor_get(x_226, 0); +lean_inc(x_227); +x_228 = lean_ctor_get(x_226, 1); +lean_inc(x_228); +lean_dec(x_226); +x_33 = x_227; +x_34 = x_228; +goto block_147; +} +else +{ +uint8_t x_229; +lean_dec(x_32); +lean_dec(x_17); +lean_dec(x_12); +lean_dec(x_2); +lean_dec(x_1); +x_229 = !lean_is_exclusive(x_226); +if (x_229 == 0) +{ +return x_226; +} +else +{ +lean_object* x_230; lean_object* x_231; lean_object* x_232; +x_230 = lean_ctor_get(x_226, 0); +x_231 = lean_ctor_get(x_226, 1); +lean_inc(x_231); +lean_inc(x_230); +lean_dec(x_226); +x_232 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_232, 0, x_230); +lean_ctor_set(x_232, 1, x_231); +return x_232; +} +} +} +} +} +else +{ +uint8_t x_233; +lean_dec(x_148); +lean_dec(x_32); +lean_dec(x_17); +lean_dec(x_12); +lean_dec(x_2); +lean_dec(x_1); +x_233 = !lean_is_exclusive(x_149); +if (x_233 == 0) +{ +return x_149; +} +else +{ +lean_object* x_234; lean_object* x_235; lean_object* x_236; +x_234 = lean_ctor_get(x_149, 0); +x_235 = lean_ctor_get(x_149, 1); +lean_inc(x_235); +lean_inc(x_234); +lean_dec(x_149); +x_236 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_236, 0, x_234); +lean_ctor_set(x_236, 1, x_235); +return x_236; +} +} +block_147: +{ +lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; 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; +x_35 = l_Lean_Elab_Command_getCurrMacroScope(x_2, x_34); +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_array_push(x_27, x_17); +x_39 = lean_array_push(x_38, x_29); +x_40 = l_Lean_Parser_Command_attrInstance___elambda__1___closed__2; +lean_inc(x_39); +x_41 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_41, 0, x_40); +lean_ctor_set(x_41, 1, x_39); +x_42 = lean_array_push(x_27, x_41); +x_43 = l_Lean_nullKind___closed__2; +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 = l_Lean_Elab_Command_elabSyntax___closed__8; +x_46 = lean_array_push(x_45, x_44); +x_47 = l_Lean_Elab_Term_elabArrayLit___closed__13; +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); +lean_ctor_set(x_50, 0, x_49); +lean_ctor_set(x_50, 1, x_48); +x_51 = lean_array_push(x_27, x_50); +x_52 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_52, 0, x_43); +lean_ctor_set(x_52, 1, x_51); +x_53 = l_Lean_Elab_Command_elabSyntax___closed__6; +x_54 = lean_array_push(x_53, x_52); +x_55 = l_Lean_Elab_Command_elabSyntax___closed__13; +x_56 = lean_array_push(x_54, x_55); +x_57 = lean_array_push(x_56, x_29); +x_58 = lean_array_push(x_57, x_29); +x_59 = lean_array_push(x_58, x_29); +x_60 = l_Lean_Parser_Command_declModifiers___elambda__1___closed__2; +x_61 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_61, 0, x_60); +lean_ctor_set(x_61, 1, x_59); +x_62 = lean_array_push(x_27, x_61); +x_63 = l_Lean_Parser_Command_declId___elambda__1___closed__2; +x_64 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_64, 0, x_63); +lean_ctor_set(x_64, 1, x_39); +x_65 = l_Lean_Elab_Command_elabSyntax___closed__15; +x_66 = lean_array_push(x_65, x_64); +x_67 = l_Lean_Elab_Term_elabArrow___lambda__1___closed__6; +x_68 = lean_array_push(x_67, x_32); +x_69 = l_Lean_Parser_Term_typeSpec___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); +x_71 = lean_array_push(x_27, x_70); +x_72 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_72, 0, x_43); +lean_ctor_set(x_72, 1, x_71); +x_73 = lean_array_push(x_53, x_72); +x_74 = l_Lean_Parser_Command_optDeclSig___elambda__1___closed__2; +x_75 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_75, 0, x_74); +lean_ctor_set(x_75, 1, x_73); +x_76 = lean_array_push(x_66, x_75); +x_77 = l_Lean_Elab_Command_elabSyntax___closed__20; +x_78 = lean_name_mk_numeral(x_77, x_36); +x_79 = l_Lean_Elab_Command_elabSyntax___closed__19; +x_80 = l_Lean_Elab_Command_elabSyntax___closed__23; +x_81 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_81, 0, x_21); +lean_ctor_set(x_81, 1, x_79); +lean_ctor_set(x_81, 2, x_78); +lean_ctor_set(x_81, 3, x_80); +x_82 = lean_array_push(x_27, x_81); +x_83 = lean_array_push(x_82, x_29); +x_84 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_84, 0, x_31); +lean_ctor_set(x_84, 1, x_83); +x_85 = lean_array_push(x_27, x_84); +x_86 = l___private_Init_Lean_Elab_Quotation_1__quoteName___main(x_12); +x_87 = lean_array_push(x_85, x_86); +x_88 = l_Lean_Parser_Term_app___elambda__1___closed__2; +x_89 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_89, 0, x_88); +lean_ctor_set(x_89, 1, x_87); +x_90 = lean_array_push(x_27, x_89); +x_91 = lean_array_push(x_90, x_33); +x_92 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_92, 0, x_88); +lean_ctor_set(x_92, 1, x_91); +x_93 = l_Lean_Elab_Command_elabSyntax___closed__16; +x_94 = lean_array_push(x_93, x_92); +x_95 = l_Lean_Parser_Command_declValSimple___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_76, x_96); +x_98 = l_Lean_Parser_Command_def___elambda__1___closed__2; +x_99 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_99, 0, x_98); +lean_ctor_set(x_99, 1, x_97); +x_100 = lean_array_push(x_62, x_99); +x_101 = l_Lean_Parser_Command_declaration___elambda__1___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); +lean_inc(x_2); +x_103 = l_Lean_Elab_Command_getOptions(x_2, x_37); +if (lean_obj_tag(x_103) == 0) +{ +lean_object* x_104; lean_object* x_105; lean_object* x_106; uint8_t x_107; +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 = l___private_Init_Lean_Elab_Util_7__regTraceClasses___closed__2; +x_107 = l_Lean_checkTraceOption(x_104, x_106); +lean_dec(x_104); +if (x_107 == 0) +{ +uint8_t x_108; +x_108 = !lean_is_exclusive(x_2); +if (x_108 == 0) +{ +lean_object* x_109; lean_object* x_110; lean_object* x_111; +x_109 = lean_ctor_get(x_2, 5); +x_110 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_110, 0, x_1); +lean_ctor_set(x_110, 1, x_109); +lean_ctor_set(x_2, 5, x_110); +x_111 = l_Lean_Elab_Command_elabCommand(x_102, x_2, x_105); +return x_111; +} +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_119; lean_object* x_120; lean_object* x_121; +x_112 = lean_ctor_get(x_2, 0); +x_113 = lean_ctor_get(x_2, 1); +x_114 = lean_ctor_get(x_2, 2); +x_115 = lean_ctor_get(x_2, 3); +x_116 = lean_ctor_get(x_2, 4); +x_117 = lean_ctor_get(x_2, 5); +x_118 = lean_ctor_get(x_2, 6); +lean_inc(x_118); +lean_inc(x_117); +lean_inc(x_116); +lean_inc(x_115); +lean_inc(x_114); +lean_inc(x_113); +lean_inc(x_112); +lean_dec(x_2); +x_119 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_119, 0, x_1); +lean_ctor_set(x_119, 1, x_117); +x_120 = lean_alloc_ctor(0, 7, 0); +lean_ctor_set(x_120, 0, x_112); +lean_ctor_set(x_120, 1, x_113); +lean_ctor_set(x_120, 2, x_114); +lean_ctor_set(x_120, 3, x_115); +lean_ctor_set(x_120, 4, x_116); +lean_ctor_set(x_120, 5, x_119); +lean_ctor_set(x_120, 6, x_118); +x_121 = l_Lean_Elab_Command_elabCommand(x_102, x_120, x_105); +return x_121; +} +} +else +{ +lean_object* x_122; lean_object* x_123; +lean_inc(x_102); +x_122 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_122, 0, x_102); +lean_inc(x_2); +x_123 = l_Lean_Elab_Command_logTrace(x_106, x_1, x_122, x_2, x_105); +if (lean_obj_tag(x_123) == 0) +{ +lean_object* x_124; uint8_t x_125; +x_124 = lean_ctor_get(x_123, 1); +lean_inc(x_124); +lean_dec(x_123); +x_125 = !lean_is_exclusive(x_2); +if (x_125 == 0) +{ +lean_object* x_126; lean_object* x_127; lean_object* x_128; +x_126 = lean_ctor_get(x_2, 5); +x_127 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_127, 0, x_1); +lean_ctor_set(x_127, 1, x_126); +lean_ctor_set(x_2, 5, x_127); +x_128 = l_Lean_Elab_Command_elabCommand(x_102, x_2, x_124); +return x_128; +} +else +{ +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; +x_129 = lean_ctor_get(x_2, 0); +x_130 = lean_ctor_get(x_2, 1); +x_131 = lean_ctor_get(x_2, 2); +x_132 = lean_ctor_get(x_2, 3); +x_133 = lean_ctor_get(x_2, 4); +x_134 = lean_ctor_get(x_2, 5); +x_135 = lean_ctor_get(x_2, 6); +lean_inc(x_135); +lean_inc(x_134); +lean_inc(x_133); +lean_inc(x_132); +lean_inc(x_131); +lean_inc(x_130); +lean_inc(x_129); +lean_dec(x_2); +x_136 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_136, 0, x_1); +lean_ctor_set(x_136, 1, x_134); +x_137 = lean_alloc_ctor(0, 7, 0); +lean_ctor_set(x_137, 0, x_129); +lean_ctor_set(x_137, 1, x_130); +lean_ctor_set(x_137, 2, x_131); +lean_ctor_set(x_137, 3, x_132); +lean_ctor_set(x_137, 4, x_133); +lean_ctor_set(x_137, 5, x_136); +lean_ctor_set(x_137, 6, x_135); +x_138 = l_Lean_Elab_Command_elabCommand(x_102, x_137, x_124); +return x_138; +} +} +else +{ +uint8_t x_139; +lean_dec(x_102); +lean_dec(x_2); +lean_dec(x_1); +x_139 = !lean_is_exclusive(x_123); +if (x_139 == 0) +{ +return x_123; +} +else +{ +lean_object* x_140; lean_object* x_141; lean_object* x_142; +x_140 = lean_ctor_get(x_123, 0); +x_141 = lean_ctor_get(x_123, 1); +lean_inc(x_141); +lean_inc(x_140); +lean_dec(x_123); +x_142 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_142, 0, x_140); +lean_ctor_set(x_142, 1, x_141); +return x_142; +} +} +} +} +else +{ +uint8_t x_143; +lean_dec(x_102); +lean_dec(x_2); +lean_dec(x_1); +x_143 = !lean_is_exclusive(x_103); +if (x_143 == 0) +{ +return x_103; +} +else +{ +lean_object* x_144; lean_object* x_145; lean_object* x_146; +x_144 = lean_ctor_get(x_103, 0); +x_145 = lean_ctor_get(x_103, 1); +lean_inc(x_145); +lean_inc(x_144); +lean_dec(x_103); +x_146 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_146, 0, x_144); +lean_ctor_set(x_146, 1, x_145); +return x_146; +} +} +} +} +else +{ +uint8_t x_237; +lean_dec(x_12); +lean_dec(x_8); +lean_dec(x_2); +lean_dec(x_1); +x_237 = !lean_is_exclusive(x_13); +if (x_237 == 0) +{ +return x_13; +} +else +{ +lean_object* x_238; lean_object* x_239; lean_object* x_240; +x_238 = lean_ctor_get(x_13, 0); +x_239 = lean_ctor_get(x_13, 1); +lean_inc(x_239); +lean_inc(x_238); +lean_dec(x_13); +x_240 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_240, 0, x_238); +lean_ctor_set(x_240, 1, x_239); +return x_240; +} +} +} +} +else +{ +uint8_t x_254; +lean_dec(x_2); +lean_dec(x_1); +x_254 = !lean_is_exclusive(x_4); +if (x_254 == 0) +{ +return x_4; +} +else +{ +lean_object* x_255; lean_object* x_256; lean_object* x_257; +x_255 = lean_ctor_get(x_4, 0); +x_256 = lean_ctor_get(x_4, 1); +lean_inc(x_256); +lean_inc(x_255); +lean_dec(x_4); +x_257 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_257, 0, x_255); +lean_ctor_set(x_257, 1, x_256); +return x_257; +} +} +} +} +lean_object* l_Lean_Elab_Command_elabSyntax___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +lean_object* x_5; +x_5 = l_Lean_Elab_Command_elabSyntax___lambda__1(x_1, x_2, x_3, x_4); +lean_dec(x_2); +lean_dec(x_1); +return x_5; +} +} +lean_object* _init_l___regBuiltinCommandElab_Lean_Elab_Command_elabSyntax___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("elabSyntax"); +return x_1; +} +} +lean_object* _init_l___regBuiltinCommandElab_Lean_Elab_Command_elabSyntax___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Elab_Command_declareBuiltinCommandElab___closed__3; +x_2 = l___regBuiltinCommandElab_Lean_Elab_Command_elabSyntax___closed__1; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +lean_object* _init_l___regBuiltinCommandElab_Lean_Elab_Command_elabSyntax___closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Command_elabSyntax), 3, 0); +return x_1; +} +} +lean_object* l___regBuiltinCommandElab_Lean_Elab_Command_elabSyntax(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_2 = l_Lean_Parser_Command_syntax___elambda__1___closed__1; +x_3 = l___regBuiltinCommandElab_Lean_Elab_Command_elabSyntax___closed__2; +x_4 = l___regBuiltinCommandElab_Lean_Elab_Command_elabSyntax___closed__3; +x_5 = l_Lean_Elab_Command_addBuiltinCommandElab(x_2, x_3, x_4, x_1); +return x_5; +} +} +lean_object* initialize_Init_Lean_Elab_Command(lean_object*); +lean_object* initialize_Init_Lean_Elab_Quotation(lean_object*); +static bool _G_initialized = false; +lean_object* initialize_Init_Lean_Elab_Syntax(lean_object* w) { +lean_object * res; +if (_G_initialized) return lean_mk_io_result(lean_box(0)); +_G_initialized = true; +res = initialize_Init_Lean_Elab_Command(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Init_Lean_Elab_Quotation(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__1 = _init_l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__1(); +lean_mark_persistent(l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__1); +l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__2 = _init_l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__2(); +lean_mark_persistent(l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__2); +l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__3 = _init_l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__3(); +lean_mark_persistent(l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__3); +l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__4 = _init_l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__4(); +lean_mark_persistent(l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__4); +l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__5 = _init_l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__5(); +lean_mark_persistent(l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__5); +l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__6 = _init_l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__6(); +lean_mark_persistent(l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__6); +l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__7 = _init_l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__7(); +lean_mark_persistent(l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__7); +l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__8 = _init_l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__8(); +lean_mark_persistent(l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__8); +l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__9 = _init_l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__9(); +lean_mark_persistent(l_Array_iterateMAux___main___at___private_Init_Lean_Elab_Syntax_2__mkParserSeq___spec__1___closed__9); +l_Lean_Elab_Term_toParserDescr___main___closed__1 = _init_l_Lean_Elab_Term_toParserDescr___main___closed__1(); +lean_mark_persistent(l_Lean_Elab_Term_toParserDescr___main___closed__1); +l_Lean_Elab_Term_toParserDescr___main___closed__2 = _init_l_Lean_Elab_Term_toParserDescr___main___closed__2(); +lean_mark_persistent(l_Lean_Elab_Term_toParserDescr___main___closed__2); +l_Lean_Elab_Term_toParserDescr___main___closed__3 = _init_l_Lean_Elab_Term_toParserDescr___main___closed__3(); +lean_mark_persistent(l_Lean_Elab_Term_toParserDescr___main___closed__3); +l_Lean_Elab_Term_toParserDescr___main___closed__4 = _init_l_Lean_Elab_Term_toParserDescr___main___closed__4(); +lean_mark_persistent(l_Lean_Elab_Term_toParserDescr___main___closed__4); +l_Lean_Elab_Term_toParserDescr___main___closed__5 = _init_l_Lean_Elab_Term_toParserDescr___main___closed__5(); +lean_mark_persistent(l_Lean_Elab_Term_toParserDescr___main___closed__5); +l_Lean_Elab_Term_toParserDescr___main___closed__6 = _init_l_Lean_Elab_Term_toParserDescr___main___closed__6(); +lean_mark_persistent(l_Lean_Elab_Term_toParserDescr___main___closed__6); +l_Lean_Elab_Term_toParserDescr___main___closed__7 = _init_l_Lean_Elab_Term_toParserDescr___main___closed__7(); +lean_mark_persistent(l_Lean_Elab_Term_toParserDescr___main___closed__7); +l_Lean_Elab_Term_toParserDescr___main___closed__8 = _init_l_Lean_Elab_Term_toParserDescr___main___closed__8(); +lean_mark_persistent(l_Lean_Elab_Term_toParserDescr___main___closed__8); +l_Lean_Elab_Term_toParserDescr___main___closed__9 = _init_l_Lean_Elab_Term_toParserDescr___main___closed__9(); +lean_mark_persistent(l_Lean_Elab_Term_toParserDescr___main___closed__9); +l_Lean_Elab_Term_toParserDescr___main___closed__10 = _init_l_Lean_Elab_Term_toParserDescr___main___closed__10(); +lean_mark_persistent(l_Lean_Elab_Term_toParserDescr___main___closed__10); +l_Lean_Elab_Term_toParserDescr___main___closed__11 = _init_l_Lean_Elab_Term_toParserDescr___main___closed__11(); +lean_mark_persistent(l_Lean_Elab_Term_toParserDescr___main___closed__11); +l_Lean_Elab_Term_toParserDescr___main___closed__12 = _init_l_Lean_Elab_Term_toParserDescr___main___closed__12(); +lean_mark_persistent(l_Lean_Elab_Term_toParserDescr___main___closed__12); +l_Lean_Elab_Term_toParserDescr___main___closed__13 = _init_l_Lean_Elab_Term_toParserDescr___main___closed__13(); +lean_mark_persistent(l_Lean_Elab_Term_toParserDescr___main___closed__13); +l_Lean_Elab_Term_toParserDescr___main___closed__14 = _init_l_Lean_Elab_Term_toParserDescr___main___closed__14(); +lean_mark_persistent(l_Lean_Elab_Term_toParserDescr___main___closed__14); +l_Lean_Elab_Term_toParserDescr___main___closed__15 = _init_l_Lean_Elab_Term_toParserDescr___main___closed__15(); +lean_mark_persistent(l_Lean_Elab_Term_toParserDescr___main___closed__15); +l_Lean_Elab_Term_toParserDescr___main___closed__16 = _init_l_Lean_Elab_Term_toParserDescr___main___closed__16(); +lean_mark_persistent(l_Lean_Elab_Term_toParserDescr___main___closed__16); +l_Lean_Elab_Term_toParserDescr___main___closed__17 = _init_l_Lean_Elab_Term_toParserDescr___main___closed__17(); +lean_mark_persistent(l_Lean_Elab_Term_toParserDescr___main___closed__17); +l_Lean_Elab_Term_toParserDescr___main___closed__18 = _init_l_Lean_Elab_Term_toParserDescr___main___closed__18(); +lean_mark_persistent(l_Lean_Elab_Term_toParserDescr___main___closed__18); +l_Lean_Elab_Term_toParserDescr___main___closed__19 = _init_l_Lean_Elab_Term_toParserDescr___main___closed__19(); +lean_mark_persistent(l_Lean_Elab_Term_toParserDescr___main___closed__19); +l_Lean_Elab_Term_toParserDescr___main___closed__20 = _init_l_Lean_Elab_Term_toParserDescr___main___closed__20(); +lean_mark_persistent(l_Lean_Elab_Term_toParserDescr___main___closed__20); +l_Lean_Elab_Term_toParserDescr___main___closed__21 = _init_l_Lean_Elab_Term_toParserDescr___main___closed__21(); +lean_mark_persistent(l_Lean_Elab_Term_toParserDescr___main___closed__21); +l_Lean_Elab_Term_toParserDescr___main___closed__22 = _init_l_Lean_Elab_Term_toParserDescr___main___closed__22(); +lean_mark_persistent(l_Lean_Elab_Term_toParserDescr___main___closed__22); +l_Lean_Elab_Term_toParserDescr___main___closed__23 = _init_l_Lean_Elab_Term_toParserDescr___main___closed__23(); +lean_mark_persistent(l_Lean_Elab_Term_toParserDescr___main___closed__23); +l_Lean_Elab_Term_toParserDescr___main___closed__24 = _init_l_Lean_Elab_Term_toParserDescr___main___closed__24(); +lean_mark_persistent(l_Lean_Elab_Term_toParserDescr___main___closed__24); +l_Lean_Elab_Term_toParserDescr___main___closed__25 = _init_l_Lean_Elab_Term_toParserDescr___main___closed__25(); +lean_mark_persistent(l_Lean_Elab_Term_toParserDescr___main___closed__25); +l_Lean_Elab_Term_toParserDescr___main___closed__26 = _init_l_Lean_Elab_Term_toParserDescr___main___closed__26(); +lean_mark_persistent(l_Lean_Elab_Term_toParserDescr___main___closed__26); +l_Lean_Elab_Term_toParserDescr___main___closed__27 = _init_l_Lean_Elab_Term_toParserDescr___main___closed__27(); +lean_mark_persistent(l_Lean_Elab_Term_toParserDescr___main___closed__27); +l_Lean_Elab_Term_toParserDescr___main___closed__28 = _init_l_Lean_Elab_Term_toParserDescr___main___closed__28(); +lean_mark_persistent(l_Lean_Elab_Term_toParserDescr___main___closed__28); +l_Lean_Elab_Term_toParserDescr___main___closed__29 = _init_l_Lean_Elab_Term_toParserDescr___main___closed__29(); +lean_mark_persistent(l_Lean_Elab_Term_toParserDescr___main___closed__29); +l_Lean_Elab_Term_toParserDescr___main___closed__30 = _init_l_Lean_Elab_Term_toParserDescr___main___closed__30(); +lean_mark_persistent(l_Lean_Elab_Term_toParserDescr___main___closed__30); +l_Lean_Elab_Term_toParserDescr___main___closed__31 = _init_l_Lean_Elab_Term_toParserDescr___main___closed__31(); +lean_mark_persistent(l_Lean_Elab_Term_toParserDescr___main___closed__31); +l_Lean_Elab_Term_toParserDescr___main___closed__32 = _init_l_Lean_Elab_Term_toParserDescr___main___closed__32(); +lean_mark_persistent(l_Lean_Elab_Term_toParserDescr___main___closed__32); +l_Lean_Elab_Term_toParserDescr___main___closed__33 = _init_l_Lean_Elab_Term_toParserDescr___main___closed__33(); +lean_mark_persistent(l_Lean_Elab_Term_toParserDescr___main___closed__33); +l_Lean_Elab_Term_toParserDescr___main___closed__34 = _init_l_Lean_Elab_Term_toParserDescr___main___closed__34(); +lean_mark_persistent(l_Lean_Elab_Term_toParserDescr___main___closed__34); +l_Lean_Elab_Term_toParserDescr___main___closed__35 = _init_l_Lean_Elab_Term_toParserDescr___main___closed__35(); +lean_mark_persistent(l_Lean_Elab_Term_toParserDescr___main___closed__35); +l_Lean_Elab_Term_toParserDescr___main___closed__36 = _init_l_Lean_Elab_Term_toParserDescr___main___closed__36(); +lean_mark_persistent(l_Lean_Elab_Term_toParserDescr___main___closed__36); +l_Lean_Elab_Term_toParserDescr___main___closed__37 = _init_l_Lean_Elab_Term_toParserDescr___main___closed__37(); +lean_mark_persistent(l_Lean_Elab_Term_toParserDescr___main___closed__37); +l_Lean_Elab_Term_toParserDescr___main___closed__38 = _init_l_Lean_Elab_Term_toParserDescr___main___closed__38(); +lean_mark_persistent(l_Lean_Elab_Term_toParserDescr___main___closed__38); +l_Lean_Elab_Term_toParserDescr___main___closed__39 = _init_l_Lean_Elab_Term_toParserDescr___main___closed__39(); +lean_mark_persistent(l_Lean_Elab_Term_toParserDescr___main___closed__39); +l_Lean_Elab_Term_toParserDescr___main___closed__40 = _init_l_Lean_Elab_Term_toParserDescr___main___closed__40(); +lean_mark_persistent(l_Lean_Elab_Term_toParserDescr___main___closed__40); +l_Lean_Elab_Term_toParserDescr___main___closed__41 = _init_l_Lean_Elab_Term_toParserDescr___main___closed__41(); +lean_mark_persistent(l_Lean_Elab_Term_toParserDescr___main___closed__41); +l_Lean_Elab_Term_toParserDescr___main___closed__42 = _init_l_Lean_Elab_Term_toParserDescr___main___closed__42(); +lean_mark_persistent(l_Lean_Elab_Term_toParserDescr___main___closed__42); +l_Lean_Elab_Term_toParserDescr___main___closed__43 = _init_l_Lean_Elab_Term_toParserDescr___main___closed__43(); +lean_mark_persistent(l_Lean_Elab_Term_toParserDescr___main___closed__43); +l_Lean_Elab_Term_toParserDescr___main___closed__44 = _init_l_Lean_Elab_Term_toParserDescr___main___closed__44(); +lean_mark_persistent(l_Lean_Elab_Term_toParserDescr___main___closed__44); +l_Lean_Elab_Term_toParserDescr___main___closed__45 = _init_l_Lean_Elab_Term_toParserDescr___main___closed__45(); +lean_mark_persistent(l_Lean_Elab_Term_toParserDescr___main___closed__45); +l_Lean_Elab_Term_toParserDescr___main___closed__46 = _init_l_Lean_Elab_Term_toParserDescr___main___closed__46(); +lean_mark_persistent(l_Lean_Elab_Term_toParserDescr___main___closed__46); +l_Lean_Elab_Term_toParserDescr___main___closed__47 = _init_l_Lean_Elab_Term_toParserDescr___main___closed__47(); +lean_mark_persistent(l_Lean_Elab_Term_toParserDescr___main___closed__47); +l_Lean_Elab_Term_toParserDescr___main___closed__48 = _init_l_Lean_Elab_Term_toParserDescr___main___closed__48(); +lean_mark_persistent(l_Lean_Elab_Term_toParserDescr___main___closed__48); +l_Lean_Elab_Term_toParserDescr___main___closed__49 = _init_l_Lean_Elab_Term_toParserDescr___main___closed__49(); +lean_mark_persistent(l_Lean_Elab_Term_toParserDescr___main___closed__49); +l_Lean_Elab_Term_toParserDescr___main___closed__50 = _init_l_Lean_Elab_Term_toParserDescr___main___closed__50(); +lean_mark_persistent(l_Lean_Elab_Term_toParserDescr___main___closed__50); +l_Lean_Elab_Term_toParserDescr___main___closed__51 = _init_l_Lean_Elab_Term_toParserDescr___main___closed__51(); +lean_mark_persistent(l_Lean_Elab_Term_toParserDescr___main___closed__51); +l_Lean_Elab_Term_toParserDescr___main___closed__52 = _init_l_Lean_Elab_Term_toParserDescr___main___closed__52(); +lean_mark_persistent(l_Lean_Elab_Term_toParserDescr___main___closed__52); +l_Lean_Elab_Term_toParserDescr___main___closed__53 = _init_l_Lean_Elab_Term_toParserDescr___main___closed__53(); +lean_mark_persistent(l_Lean_Elab_Term_toParserDescr___main___closed__53); +l_Lean_Elab_Term_toParserDescr___main___closed__54 = _init_l_Lean_Elab_Term_toParserDescr___main___closed__54(); +lean_mark_persistent(l_Lean_Elab_Term_toParserDescr___main___closed__54); +l_Lean_Elab_Term_toParserDescr___main___closed__55 = _init_l_Lean_Elab_Term_toParserDescr___main___closed__55(); +lean_mark_persistent(l_Lean_Elab_Term_toParserDescr___main___closed__55); +l_Lean_Elab_Term_toParserDescr___main___closed__56 = _init_l_Lean_Elab_Term_toParserDescr___main___closed__56(); +lean_mark_persistent(l_Lean_Elab_Term_toParserDescr___main___closed__56); +l_Lean_Elab_Term_toParserDescr___main___closed__57 = _init_l_Lean_Elab_Term_toParserDescr___main___closed__57(); +lean_mark_persistent(l_Lean_Elab_Term_toParserDescr___main___closed__57); +l_Lean_Elab_Term_toParserDescr___main___closed__58 = _init_l_Lean_Elab_Term_toParserDescr___main___closed__58(); +lean_mark_persistent(l_Lean_Elab_Term_toParserDescr___main___closed__58); +l_Lean_Elab_Term_toParserDescr___main___closed__59 = _init_l_Lean_Elab_Term_toParserDescr___main___closed__59(); +lean_mark_persistent(l_Lean_Elab_Term_toParserDescr___main___closed__59); +l_Lean_Elab_Term_toParserDescr___main___closed__60 = _init_l_Lean_Elab_Term_toParserDescr___main___closed__60(); +lean_mark_persistent(l_Lean_Elab_Term_toParserDescr___main___closed__60); +l_Lean_Elab_Term_toParserDescr___main___closed__61 = _init_l_Lean_Elab_Term_toParserDescr___main___closed__61(); +lean_mark_persistent(l_Lean_Elab_Term_toParserDescr___main___closed__61); +l_Lean_Elab_Term_toParserDescr___main___closed__62 = _init_l_Lean_Elab_Term_toParserDescr___main___closed__62(); +lean_mark_persistent(l_Lean_Elab_Term_toParserDescr___main___closed__62); +l_Lean_Elab_Term_toParserDescr___main___closed__63 = _init_l_Lean_Elab_Term_toParserDescr___main___closed__63(); +lean_mark_persistent(l_Lean_Elab_Term_toParserDescr___main___closed__63); +l_Lean_Elab_Term_toParserDescr___main___closed__64 = _init_l_Lean_Elab_Term_toParserDescr___main___closed__64(); +lean_mark_persistent(l_Lean_Elab_Term_toParserDescr___main___closed__64); +l_Lean_Elab_Term_toParserDescr___main___closed__65 = _init_l_Lean_Elab_Term_toParserDescr___main___closed__65(); +lean_mark_persistent(l_Lean_Elab_Term_toParserDescr___main___closed__65); +l_Lean_Elab_Term_toParserDescr___main___closed__66 = _init_l_Lean_Elab_Term_toParserDescr___main___closed__66(); +lean_mark_persistent(l_Lean_Elab_Term_toParserDescr___main___closed__66); +l_Lean_Elab_Term_toParserDescr___main___closed__67 = _init_l_Lean_Elab_Term_toParserDescr___main___closed__67(); +lean_mark_persistent(l_Lean_Elab_Term_toParserDescr___main___closed__67); +l_Lean_Elab_Term_toParserDescr___main___closed__68 = _init_l_Lean_Elab_Term_toParserDescr___main___closed__68(); +lean_mark_persistent(l_Lean_Elab_Term_toParserDescr___main___closed__68); +l_Lean_Elab_Term_toParserDescr___main___closed__69 = _init_l_Lean_Elab_Term_toParserDescr___main___closed__69(); +lean_mark_persistent(l_Lean_Elab_Term_toParserDescr___main___closed__69); +l_Lean_Elab_Term_toParserDescr___main___closed__70 = _init_l_Lean_Elab_Term_toParserDescr___main___closed__70(); +lean_mark_persistent(l_Lean_Elab_Term_toParserDescr___main___closed__70); +l_Lean_Elab_Term_toParserDescr___main___closed__71 = _init_l_Lean_Elab_Term_toParserDescr___main___closed__71(); +lean_mark_persistent(l_Lean_Elab_Term_toParserDescr___main___closed__71); +l_Lean_Elab_Term_toParserDescr___main___closed__72 = _init_l_Lean_Elab_Term_toParserDescr___main___closed__72(); +lean_mark_persistent(l_Lean_Elab_Term_toParserDescr___main___closed__72); +l_Lean_Elab_Term_toParserDescr___main___closed__73 = _init_l_Lean_Elab_Term_toParserDescr___main___closed__73(); +lean_mark_persistent(l_Lean_Elab_Term_toParserDescr___main___closed__73); +l_Lean_Elab_Term_toParserDescr___main___closed__74 = _init_l_Lean_Elab_Term_toParserDescr___main___closed__74(); +lean_mark_persistent(l_Lean_Elab_Term_toParserDescr___main___closed__74); +l_Lean_Elab_Term_toParserDescr___main___closed__75 = _init_l_Lean_Elab_Term_toParserDescr___main___closed__75(); +lean_mark_persistent(l_Lean_Elab_Term_toParserDescr___main___closed__75); +l_Lean_Elab_Term_toParserDescr___main___closed__76 = _init_l_Lean_Elab_Term_toParserDescr___main___closed__76(); +lean_mark_persistent(l_Lean_Elab_Term_toParserDescr___main___closed__76); +l_Lean_Elab_Term_toParserDescr___main___closed__77 = _init_l_Lean_Elab_Term_toParserDescr___main___closed__77(); +lean_mark_persistent(l_Lean_Elab_Term_toParserDescr___main___closed__77); +l_Lean_Elab_Term_toParserDescr___main___closed__78 = _init_l_Lean_Elab_Term_toParserDescr___main___closed__78(); +lean_mark_persistent(l_Lean_Elab_Term_toParserDescr___main___closed__78); +l_Lean_Elab_Term_toParserDescr___main___closed__79 = _init_l_Lean_Elab_Term_toParserDescr___main___closed__79(); +lean_mark_persistent(l_Lean_Elab_Term_toParserDescr___main___closed__79); +l_Lean_Elab_Term_toParserDescr___main___closed__80 = _init_l_Lean_Elab_Term_toParserDescr___main___closed__80(); +lean_mark_persistent(l_Lean_Elab_Term_toParserDescr___main___closed__80); +l_Lean_Elab_Term_toParserDescr___main___closed__81 = _init_l_Lean_Elab_Term_toParserDescr___main___closed__81(); +lean_mark_persistent(l_Lean_Elab_Term_toParserDescr___main___closed__81); +l_Lean_Elab_Term_toParserDescr___main___closed__82 = _init_l_Lean_Elab_Term_toParserDescr___main___closed__82(); +lean_mark_persistent(l_Lean_Elab_Term_toParserDescr___main___closed__82); +l_Lean_Elab_Term_toParserDescr___main___closed__83 = _init_l_Lean_Elab_Term_toParserDescr___main___closed__83(); +lean_mark_persistent(l_Lean_Elab_Term_toParserDescr___main___closed__83); +l_Lean_Elab_Term_toParserDescr___main___closed__84 = _init_l_Lean_Elab_Term_toParserDescr___main___closed__84(); +lean_mark_persistent(l_Lean_Elab_Term_toParserDescr___main___closed__84); +l_Lean_Elab_Term_toParserDescr___main___closed__85 = _init_l_Lean_Elab_Term_toParserDescr___main___closed__85(); +lean_mark_persistent(l_Lean_Elab_Term_toParserDescr___main___closed__85); +l_Lean_Elab_Term_toParserDescr___main___closed__86 = _init_l_Lean_Elab_Term_toParserDescr___main___closed__86(); +lean_mark_persistent(l_Lean_Elab_Term_toParserDescr___main___closed__86); +l_Lean_Elab_Term_toParserDescr___main___closed__87 = _init_l_Lean_Elab_Term_toParserDescr___main___closed__87(); +lean_mark_persistent(l_Lean_Elab_Term_toParserDescr___main___closed__87); +l_Lean_Elab_Term_toParserDescr___main___closed__88 = _init_l_Lean_Elab_Term_toParserDescr___main___closed__88(); +lean_mark_persistent(l_Lean_Elab_Term_toParserDescr___main___closed__88); +l_Lean_Elab_Term_toParserDescr___main___closed__89 = _init_l_Lean_Elab_Term_toParserDescr___main___closed__89(); +lean_mark_persistent(l_Lean_Elab_Term_toParserDescr___main___closed__89); +l_Lean_Elab_Term_toParserDescr___main___closed__90 = _init_l_Lean_Elab_Term_toParserDescr___main___closed__90(); +lean_mark_persistent(l_Lean_Elab_Term_toParserDescr___main___closed__90); +l_Lean_Elab_Term_toParserDescr___main___closed__91 = _init_l_Lean_Elab_Term_toParserDescr___main___closed__91(); +lean_mark_persistent(l_Lean_Elab_Term_toParserDescr___main___closed__91); +l_Lean_Elab_Term_toParserDescr___main___closed__92 = _init_l_Lean_Elab_Term_toParserDescr___main___closed__92(); +lean_mark_persistent(l_Lean_Elab_Term_toParserDescr___main___closed__92); +l_Lean_Elab_Term_toParserDescr___main___closed__93 = _init_l_Lean_Elab_Term_toParserDescr___main___closed__93(); +lean_mark_persistent(l_Lean_Elab_Term_toParserDescr___main___closed__93); +l_Lean_Elab_Term_toParserDescr___main___closed__94 = _init_l_Lean_Elab_Term_toParserDescr___main___closed__94(); +lean_mark_persistent(l_Lean_Elab_Term_toParserDescr___main___closed__94); +l_Lean_Elab_Term_toParserDescr___main___closed__95 = _init_l_Lean_Elab_Term_toParserDescr___main___closed__95(); +lean_mark_persistent(l_Lean_Elab_Term_toParserDescr___main___closed__95); +l_Lean_Elab_Term_toParserDescr___main___closed__96 = _init_l_Lean_Elab_Term_toParserDescr___main___closed__96(); +lean_mark_persistent(l_Lean_Elab_Term_toParserDescr___main___closed__96); +l_Lean_Elab_Term_toParserDescr___main___closed__97 = _init_l_Lean_Elab_Term_toParserDescr___main___closed__97(); +lean_mark_persistent(l_Lean_Elab_Term_toParserDescr___main___closed__97); +l_Lean_Elab_Term_toParserDescr___main___closed__98 = _init_l_Lean_Elab_Term_toParserDescr___main___closed__98(); +lean_mark_persistent(l_Lean_Elab_Term_toParserDescr___main___closed__98); +l_Lean_Elab_Term_toParserDescr___main___closed__99 = _init_l_Lean_Elab_Term_toParserDescr___main___closed__99(); +lean_mark_persistent(l_Lean_Elab_Term_toParserDescr___main___closed__99); +l_Lean_Elab_Term_toParserDescr___main___closed__100 = _init_l_Lean_Elab_Term_toParserDescr___main___closed__100(); +lean_mark_persistent(l_Lean_Elab_Term_toParserDescr___main___closed__100); +l_Lean_Elab_Term_toParserDescr___main___closed__101 = _init_l_Lean_Elab_Term_toParserDescr___main___closed__101(); +lean_mark_persistent(l_Lean_Elab_Term_toParserDescr___main___closed__101); +l_Lean_Elab_Term_toParserDescr___main___closed__102 = _init_l_Lean_Elab_Term_toParserDescr___main___closed__102(); +lean_mark_persistent(l_Lean_Elab_Term_toParserDescr___main___closed__102); +l_Lean_Elab_Term_toParserDescr___main___closed__103 = _init_l_Lean_Elab_Term_toParserDescr___main___closed__103(); +lean_mark_persistent(l_Lean_Elab_Term_toParserDescr___main___closed__103); +l_Lean_Elab_Term_toParserDescr___main___closed__104 = _init_l_Lean_Elab_Term_toParserDescr___main___closed__104(); +lean_mark_persistent(l_Lean_Elab_Term_toParserDescr___main___closed__104); +l___regBuiltinCommandElab_Lean_Elab_Command_elabDeclareSyntaxCat___closed__1 = _init_l___regBuiltinCommandElab_Lean_Elab_Command_elabDeclareSyntaxCat___closed__1(); +lean_mark_persistent(l___regBuiltinCommandElab_Lean_Elab_Command_elabDeclareSyntaxCat___closed__1); +l___regBuiltinCommandElab_Lean_Elab_Command_elabDeclareSyntaxCat___closed__2 = _init_l___regBuiltinCommandElab_Lean_Elab_Command_elabDeclareSyntaxCat___closed__2(); +lean_mark_persistent(l___regBuiltinCommandElab_Lean_Elab_Command_elabDeclareSyntaxCat___closed__2); +l___regBuiltinCommandElab_Lean_Elab_Command_elabDeclareSyntaxCat___closed__3 = _init_l___regBuiltinCommandElab_Lean_Elab_Command_elabDeclareSyntaxCat___closed__3(); +lean_mark_persistent(l___regBuiltinCommandElab_Lean_Elab_Command_elabDeclareSyntaxCat___closed__3); +res = l___regBuiltinCommandElab_Lean_Elab_Command_elabDeclareSyntaxCat(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +l_Lean_Elab_Command_elabSyntax___closed__1 = _init_l_Lean_Elab_Command_elabSyntax___closed__1(); +lean_mark_persistent(l_Lean_Elab_Command_elabSyntax___closed__1); +l_Lean_Elab_Command_elabSyntax___closed__2 = _init_l_Lean_Elab_Command_elabSyntax___closed__2(); +lean_mark_persistent(l_Lean_Elab_Command_elabSyntax___closed__2); +l_Lean_Elab_Command_elabSyntax___closed__3 = _init_l_Lean_Elab_Command_elabSyntax___closed__3(); +lean_mark_persistent(l_Lean_Elab_Command_elabSyntax___closed__3); +l_Lean_Elab_Command_elabSyntax___closed__4 = _init_l_Lean_Elab_Command_elabSyntax___closed__4(); +lean_mark_persistent(l_Lean_Elab_Command_elabSyntax___closed__4); +l_Lean_Elab_Command_elabSyntax___closed__5 = _init_l_Lean_Elab_Command_elabSyntax___closed__5(); +lean_mark_persistent(l_Lean_Elab_Command_elabSyntax___closed__5); +l_Lean_Elab_Command_elabSyntax___closed__6 = _init_l_Lean_Elab_Command_elabSyntax___closed__6(); +lean_mark_persistent(l_Lean_Elab_Command_elabSyntax___closed__6); +l_Lean_Elab_Command_elabSyntax___closed__7 = _init_l_Lean_Elab_Command_elabSyntax___closed__7(); +lean_mark_persistent(l_Lean_Elab_Command_elabSyntax___closed__7); +l_Lean_Elab_Command_elabSyntax___closed__8 = _init_l_Lean_Elab_Command_elabSyntax___closed__8(); +lean_mark_persistent(l_Lean_Elab_Command_elabSyntax___closed__8); +l_Lean_Elab_Command_elabSyntax___closed__9 = _init_l_Lean_Elab_Command_elabSyntax___closed__9(); +lean_mark_persistent(l_Lean_Elab_Command_elabSyntax___closed__9); +l_Lean_Elab_Command_elabSyntax___closed__10 = _init_l_Lean_Elab_Command_elabSyntax___closed__10(); +lean_mark_persistent(l_Lean_Elab_Command_elabSyntax___closed__10); +l_Lean_Elab_Command_elabSyntax___closed__11 = _init_l_Lean_Elab_Command_elabSyntax___closed__11(); +lean_mark_persistent(l_Lean_Elab_Command_elabSyntax___closed__11); +l_Lean_Elab_Command_elabSyntax___closed__12 = _init_l_Lean_Elab_Command_elabSyntax___closed__12(); +lean_mark_persistent(l_Lean_Elab_Command_elabSyntax___closed__12); +l_Lean_Elab_Command_elabSyntax___closed__13 = _init_l_Lean_Elab_Command_elabSyntax___closed__13(); +lean_mark_persistent(l_Lean_Elab_Command_elabSyntax___closed__13); +l_Lean_Elab_Command_elabSyntax___closed__14 = _init_l_Lean_Elab_Command_elabSyntax___closed__14(); +lean_mark_persistent(l_Lean_Elab_Command_elabSyntax___closed__14); +l_Lean_Elab_Command_elabSyntax___closed__15 = _init_l_Lean_Elab_Command_elabSyntax___closed__15(); +lean_mark_persistent(l_Lean_Elab_Command_elabSyntax___closed__15); +l_Lean_Elab_Command_elabSyntax___closed__16 = _init_l_Lean_Elab_Command_elabSyntax___closed__16(); +lean_mark_persistent(l_Lean_Elab_Command_elabSyntax___closed__16); +l_Lean_Elab_Command_elabSyntax___closed__17 = _init_l_Lean_Elab_Command_elabSyntax___closed__17(); +lean_mark_persistent(l_Lean_Elab_Command_elabSyntax___closed__17); +l_Lean_Elab_Command_elabSyntax___closed__18 = _init_l_Lean_Elab_Command_elabSyntax___closed__18(); +lean_mark_persistent(l_Lean_Elab_Command_elabSyntax___closed__18); +l_Lean_Elab_Command_elabSyntax___closed__19 = _init_l_Lean_Elab_Command_elabSyntax___closed__19(); +lean_mark_persistent(l_Lean_Elab_Command_elabSyntax___closed__19); +l_Lean_Elab_Command_elabSyntax___closed__20 = _init_l_Lean_Elab_Command_elabSyntax___closed__20(); +lean_mark_persistent(l_Lean_Elab_Command_elabSyntax___closed__20); +l_Lean_Elab_Command_elabSyntax___closed__21 = _init_l_Lean_Elab_Command_elabSyntax___closed__21(); +lean_mark_persistent(l_Lean_Elab_Command_elabSyntax___closed__21); +l_Lean_Elab_Command_elabSyntax___closed__22 = _init_l_Lean_Elab_Command_elabSyntax___closed__22(); +lean_mark_persistent(l_Lean_Elab_Command_elabSyntax___closed__22); +l_Lean_Elab_Command_elabSyntax___closed__23 = _init_l_Lean_Elab_Command_elabSyntax___closed__23(); +lean_mark_persistent(l_Lean_Elab_Command_elabSyntax___closed__23); +l___regBuiltinCommandElab_Lean_Elab_Command_elabSyntax___closed__1 = _init_l___regBuiltinCommandElab_Lean_Elab_Command_elabSyntax___closed__1(); +lean_mark_persistent(l___regBuiltinCommandElab_Lean_Elab_Command_elabSyntax___closed__1); +l___regBuiltinCommandElab_Lean_Elab_Command_elabSyntax___closed__2 = _init_l___regBuiltinCommandElab_Lean_Elab_Command_elabSyntax___closed__2(); +lean_mark_persistent(l___regBuiltinCommandElab_Lean_Elab_Command_elabSyntax___closed__2); +l___regBuiltinCommandElab_Lean_Elab_Command_elabSyntax___closed__3 = _init_l___regBuiltinCommandElab_Lean_Elab_Command_elabSyntax___closed__3(); +lean_mark_persistent(l___regBuiltinCommandElab_Lean_Elab_Command_elabSyntax___closed__3); +res = l___regBuiltinCommandElab_Lean_Elab_Command_elabSyntax(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 +} +#endif diff --git a/stage0/stdlib/Init/Lean/Elab/Term.c b/stage0/stdlib/Init/Lean/Elab/Term.c index e83bb3aa40..26ca9c5b44 100644 --- a/stage0/stdlib/Init/Lean/Elab/Term.c +++ b/stage0/stdlib/Init/Lean/Elab/Term.c @@ -150,6 +150,7 @@ lean_object* l_Lean_Elab_Term_withoutPostponing(lean_object*); lean_object* l_Lean_Elab_Term_synthesizeInstMVarCore___closed__13; lean_object* l_Lean_Elab_Term_decLevel(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Init_Lean_Elab_Term_8__expandCDot___closed__2; +uint8_t l_PersistentHashMap_containsAtAux___main___at_Lean_Parser_mkFreshKindAux___main___spec__3(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_reprint___main(lean_object*); lean_object* l_Lean_Elab_Term_elabParen___closed__3; lean_object* lean_local_ctx_find_from_user_name(lean_object*, lean_object*); @@ -610,7 +611,6 @@ lean_object* l_Lean_Elab_Term_decLevel_x3f___boxed(lean_object*, lean_object*, l lean_object* l_Lean_Elab_Term_ensureType___closed__1; lean_object* l_Lean_Elab_log___at_Lean_Elab_Term_logTrace___spec__1(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_getPos___at_Lean_Elab_Term_throwError___spec__2(lean_object*, lean_object*, lean_object*); -uint8_t l_PersistentHashMap_containsAtAux___main___at_Lean_Parser_isValidSyntaxNodeKind___spec__3(lean_object*, lean_object*, lean_object*); lean_object* l_Array_umapMAux___main___at_Lean_Elab_Term_expandCDot_x3f___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Init_Lean_Elab_Term_21__mkPairsAux(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabTerm___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -2856,7 +2856,7 @@ x_17 = lean_ctor_get(x_1, 0); lean_inc(x_17); lean_dec(x_1); x_18 = lean_unsigned_to_nat(0u); -x_19 = l_PersistentHashMap_containsAtAux___main___at_Lean_Parser_isValidSyntaxNodeKind___spec__3(x_17, x_18, x_3); +x_19 = l_PersistentHashMap_containsAtAux___main___at_Lean_Parser_mkFreshKindAux___main___spec__3(x_17, x_18, x_3); lean_dec(x_17); return x_19; } diff --git a/stage0/stdlib/Init/Lean/Parser/Level.c b/stage0/stdlib/Init/Lean/Parser/Level.c index 04cccda2cf..5787bde6e8 100644 --- a/stage0/stdlib/Init/Lean/Parser/Level.c +++ b/stage0/stdlib/Init/Lean/Parser/Level.c @@ -45,7 +45,6 @@ lean_object* l_Lean_Parser_Level_max___elambda__1___closed__1; lean_object* l_Lean_Parser_Level_num___elambda__1___closed__1; lean_object* l_Lean_Parser_Level_max___closed__7; lean_object* l_Lean_Parser_regBuiltinLevelParserAttr___closed__4; -lean_object* l_Lean_Parser_registerBuiltinDynamicParserAttribute(lean_object*, lean_object*, lean_object*); 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_Level_hole___elambda__1(lean_object*, lean_object*, lean_object*); @@ -90,7 +89,6 @@ lean_object* l_Lean_Parser_Level_addLit___elambda__1___closed__4; 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_Lean_Parser_regLevelParserAttribute___closed__1; extern lean_object* l_Char_HasRepr___closed__1; lean_object* l_Lean_Parser_Level_hole; extern lean_object* l_Lean_Level_LevelToFormat_Result_format___main___closed__5; @@ -99,8 +97,6 @@ lean_object* l_Lean_Parser_levelParser(uint8_t, lean_object*); lean_object* l_Lean_Parser_manyAux___main___at_Lean_Parser_Level_max___elambda__1___spec__1(uint8_t, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Level_num___elambda__1___closed__3; lean_object* lean_name_mk_string(lean_object*, lean_object*); -lean_object* l_Lean_Parser_regLevelParserAttribute___closed__2; -lean_object* l_Lean_Parser_regLevelParserAttribute(lean_object*); lean_object* l_Lean_Parser_Level_paren___elambda__1___closed__11; lean_object* l_Lean_Parser_Level_imax___elambda__1(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Level_ident___closed__1; @@ -228,34 +224,6 @@ x_5 = l_Lean_Parser_registerBuiltinParserAttribute(x_2, x_3, x_4, x_1); return x_5; } } -lean_object* _init_l_Lean_Parser_regLevelParserAttribute___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("levelParser"); -return x_1; -} -} -lean_object* _init_l_Lean_Parser_regLevelParserAttribute___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l_Lean_Parser_regLevelParserAttribute___closed__1; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; -} -} -lean_object* l_Lean_Parser_regLevelParserAttribute(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_2 = l_Lean_Parser_regLevelParserAttribute___closed__2; -x_3 = l_Lean_Parser_regBuiltinLevelParserAttr___closed__4; -x_4 = l_Lean_Parser_registerBuiltinDynamicParserAttribute(x_2, x_3, x_1); -return x_4; -} -} lean_object* l_Lean_Parser_levelParser(uint8_t x_1, lean_object* x_2) { _start: { @@ -2331,13 +2299,6 @@ lean_mark_persistent(l_Lean_Parser_regBuiltinLevelParserAttr___closed__4); res = l_Lean_Parser_regBuiltinLevelParserAttr(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l_Lean_Parser_regLevelParserAttribute___closed__1 = _init_l_Lean_Parser_regLevelParserAttribute___closed__1(); -lean_mark_persistent(l_Lean_Parser_regLevelParserAttribute___closed__1); -l_Lean_Parser_regLevelParserAttribute___closed__2 = _init_l_Lean_Parser_regLevelParserAttribute___closed__2(); -lean_mark_persistent(l_Lean_Parser_regLevelParserAttribute___closed__2); -res = l_Lean_Parser_regLevelParserAttribute(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); l_Lean_Parser_Level_paren___elambda__1___closed__1 = _init_l_Lean_Parser_Level_paren___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Level_paren___elambda__1___closed__1); l_Lean_Parser_Level_paren___elambda__1___closed__2 = _init_l_Lean_Parser_Level_paren___elambda__1___closed__2(); diff --git a/stage0/stdlib/Init/Lean/Parser/Parser.c b/stage0/stdlib/Init/Lean/Parser/Parser.c index 282e52ecd4..8c35cebad3 100644 --- a/stage0/stdlib/Init/Lean/Parser/Parser.c +++ b/stage0/stdlib/Init/Lean/Parser/Parser.c @@ -29,7 +29,6 @@ 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_Lean_Parser_symbolAux___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_unicodeInfixL___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_hashOrelse(uint8_t); lean_object* l_RBNode_ins___main___at_Lean_Parser_TokenMap_insert___spec__7___rarg(lean_object*, lean_object*, lean_object*); size_t l_USize_add(size_t, size_t); @@ -49,7 +48,6 @@ lean_object* l_Lean_Parser_unicodeSymbolInfo___elambda__1___boxed(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_rawFn___rarg(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_andthenInfo(lean_object*, lean_object*); -uint8_t l_PersistentHashMap_contains___at_Lean_Parser_isValidSyntaxNodeKind___spec__1(lean_object*, lean_object*); lean_object* l_Lean_Syntax_foldSepRevArgs___rarg(lean_object*, lean_object*, lean_object*); extern lean_object* l___private_Init_Lean_Compiler_InitAttr_2__isUnitType___closed__1; extern lean_object* l___private_Init_Lean_Environment_8__persistentEnvExtensionsRef; @@ -79,7 +77,6 @@ extern lean_object* l_Lean_nullKind; lean_object* l_Lean_Parser_mkParserExtension___closed__2; lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Parser_Parser_19__ParserAttribute_add___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_RBNode_find___main___at_Lean_Parser_indexed___spec__3___rarg(lean_object*, lean_object*); -lean_object* l_Lean_Parser_unicodeInfixR(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_andthenAux(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_unicodeSymbolCheckPrecFnAux(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_octalNumberFn___closed__1; @@ -91,13 +88,13 @@ extern lean_object* l_Lean_fieldIdxKind___closed__2; lean_object* l_Lean_Syntax_getOptional_x3f(lean_object*); lean_object* l_Lean_Parser_strAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_satisfyFn___at_Lean_Parser_rawCh___elambda__1___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l_PersistentHashMap_contains___at_Lean_Parser_mkFreshKindAux___main___spec__1(lean_object*, lean_object*); extern lean_object* l_Lean_Syntax_formatStxAux___main___closed__5; lean_object* l_Lean_Syntax_foldArgsAuxM___main___at_Array_foldSepBy___spec__1(lean_object*); lean_object* l_Lean_Syntax_foldArgsAuxM___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_rawFn___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_List_repr___rarg___closed__1; lean_object* l_Lean_Parser_takeUntilFn___main___at_Lean_Parser_identFnAux___main___spec__2___boxed(lean_object*, lean_object*); -lean_object* l_Lean_Parser_unicodeInfixR___elambda__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_optionaInfo___elambda__2(lean_object*, lean_object*); lean_object* l_Lean_Parser_ParserFn_inhabited___rarg(lean_object*); lean_object* l___private_Init_Lean_Parser_Parser_12__mergePrecendences___closed__2; @@ -154,7 +151,6 @@ lean_object* l_RBNode_ins___main___at_Lean_Parser_TokenMap_insert___spec__6___ra size_t l_USize_sub(size_t, size_t); extern lean_object* l_Array_empty___closed__1; lean_object* l_Lean_Parser_regTermParserAttribute(lean_object*); -lean_object* l_PersistentHashMap_containsAux___main___at_Lean_Parser_isValidSyntaxNodeKind___spec__2___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_PersistentHashMap_findAtAux___main___at_Lean_Parser_addLeadingParser___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_ParserState_pushSyntax(lean_object*, lean_object*); lean_object* l_Lean_Syntax_foldSepArgsM(lean_object*, lean_object*); @@ -198,11 +194,12 @@ lean_object* l_Lean_Parser_symbolNoWsFn___closed__1; uint8_t l_Lean_isIdBeginEscape(uint32_t); lean_object* l_Lean_Parser_declareBuiltinParser___closed__3; lean_object* l_Array_foldSepByM(lean_object*, lean_object*); +lean_object* l_Lean_PersistentEnvExtension_setState___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_orelseFn(uint8_t); lean_object* l_Lean_Parser_registerBuiltinDynamicParserAttribute(lean_object*, lean_object*, lean_object*); lean_object* l___private_Init_Lean_Parser_Parser_18__BuiltinParserAttribute_add___closed__1; extern lean_object* l_Lean_Position_Inhabited___closed__1; -lean_object* l_Lean_Parser_infixR___elambda__1(lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l_PersistentHashMap_containsAtAux___main___at_Lean_Parser_mkFreshKindAux___main___spec__3(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_symbolNoWsFn___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_unquotedSymbolFn___rarg(lean_object*, lean_object*); lean_object* l_Lean_Parser_unquotedSymbol___elambda__1___rarg(lean_object*, lean_object*); @@ -241,6 +238,7 @@ lean_object* l___private_Init_Lean_Parser_Parser_22__pushNone(uint8_t); extern lean_object* l_List_repr___rarg___closed__3; lean_object* l_Lean_Parser_mkAntiquot___elambda__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_unicodeSymbolCheckPrecFnAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_PersistentHashMap_contains___at_Lean_Parser_mkFreshKindAux___main___spec__1___boxed(lean_object*, lean_object*); lean_object* l_Lean_Parser_identFnAux___main___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_mkNodeToken(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Init_Lean_Parser_Parser_3__rawAux___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -348,7 +346,6 @@ lean_object* l_PersistentHashMap_insert___at___private_Init_Lean_Parser_Parser_9 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___private_Init_Lean_Parser_Parser_10__addBuiltinParserCategory(lean_object*, uint8_t, lean_object*); -lean_object* l_Lean_Parser_infixR___boxed(lean_object*, lean_object*); lean_object* l_Lean_Parser_declareTrailingBuiltinParser___closed__2; lean_object* l_Lean_Parser_nonReservedSymbolInfo___elambda__2(lean_object*); lean_object* l_Lean_Parser_unicodeSymbolFn___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -370,6 +367,7 @@ lean_object* l_Lean_Parser_takeWhileFn___boxed(lean_object*, lean_object*, lean_ lean_object* l_Lean_Parser_unicodeSymbolInfo___elambda__1(lean_object*); lean_object* l_Array_iterateMAux___main___at_Lean_Parser_getSyntaxNodeKinds___spec__3(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_identNoAntiquot___closed__1; +lean_object* l_PersistentHashMap_containsAux___main___at_Lean_Parser_mkFreshKindAux___main___spec__2___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_ParserState_setPos(lean_object*, lean_object*); lean_object* l_Lean_Syntax_foldArgsAuxM___main___at_Array_foldSepBy___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_quotedSymbol___elambda__1___boxed(lean_object*); @@ -412,7 +410,6 @@ lean_object* l_Lean_Parser_symbolNoWsFnAux(lean_object*, lean_object*, lean_obje lean_object* l_Lean_Parser_nodeInfo(lean_object*, lean_object*); lean_object* l_RBNode_insert___at_Lean_Parser_TokenMap_insert___spec__2___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_dollarSymbol(uint8_t); -lean_object* l_Lean_Parser_infixR(lean_object*, lean_object*); lean_object* l_Lean_Parser_quotedSymbol___elambda__1___rarg___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_symbolFn___boxed(lean_object*); extern lean_object* l_Lean_numLitKind; @@ -472,7 +469,6 @@ lean_object* l_Lean_Parser_anyOfFn___main___boxed(lean_object*, lean_object*, le lean_object* l___private_Init_Lean_Parser_Parser_10__addBuiltinParserCategory___boxed(lean_object*, lean_object*, 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_Lean_Parser_infixL___boxed(lean_object*, lean_object*); lean_object* l_Lean_Parser_symbolInfo___elambda__1___boxed(lean_object*); lean_object* l_PersistentHashMap_insertAux___main___at___private_Init_Lean_Parser_Parser_9__addParserCategoryCore___spec__4(lean_object*, size_t, size_t, lean_object*, lean_object*); lean_object* l_Lean_Parser_whitespace___main(lean_object*, lean_object*); @@ -503,6 +499,7 @@ lean_object* l_Lean_Parser_mkParserOfConstant___boxed(lean_object*, lean_object* lean_object* l_Lean_Parser_Error_HasBeq; lean_object* l_Lean_Parser_nonReservedSymbolInfo___closed__3; extern lean_object* l___private_Init_Lean_Compiler_InitAttr_1__getIOTypeArg___closed__1; +lean_object* l_Lean_Name_appendIndexAfter(lean_object*, lean_object*); lean_object* l_Lean_Parser_parserExtension___elambda__4(lean_object*, lean_object*); lean_object* l_Lean_Parser_Error_Inhabited___closed__1; lean_object* l_Lean_Parser_throwUnknownParserCategory___rarg(lean_object*); @@ -534,7 +531,6 @@ lean_object* l_Lean_Parser_registerBuiltinParserAttribute___boxed(lean_object*, lean_object* l_Lean_Parser_checkWsBefore(uint8_t, lean_object*); lean_object* l_Lean_Parser_checkNoWsBeforeFn(lean_object*, lean_object*, lean_object*); lean_object* l___private_Init_Lean_Parser_Parser_4__isToken___boxed(lean_object*, lean_object*, lean_object*); -uint8_t l_PersistentHashMap_containsAux___main___at_Lean_Parser_isValidSyntaxNodeKind___spec__2(lean_object*, size_t, lean_object*); lean_object* l___private_Init_Lean_Parser_Parser_20__registerParserAttributeImplBuilder___closed__2; lean_object* l_Lean_Parser_ParserState_setCache(lean_object*, lean_object*); lean_object* l_Lean_Parser_strAux___main(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -779,11 +775,11 @@ lean_object* l_Lean_Parser_string2basic___boxed(lean_object*, lean_object*); lean_object* l_Lean_Parser_ParserState_keepNewError___boxed(lean_object*, lean_object*); lean_object* l_Lean_Parser_rawIdent___elambda__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Init_Lean_Parser_Parser_14__addTrailingParserAux(lean_object*, lean_object*); +lean_object* lean_environment_main_module(lean_object*); lean_object* l_Lean_Parser_longestMatchFnAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*, 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*); uint8_t l_Lean_Syntax_hasArgs(lean_object*); -lean_object* l_PersistentHashMap_contains___at_Lean_Parser_isValidSyntaxNodeKind___spec__1___boxed(lean_object*, lean_object*); extern lean_object* l_Lean_mkInitAttr___lambda__1___closed__1; lean_object* l_Lean_Parser_mergeOrElseErrors(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_identNoAntiquot___boxed(lean_object*); @@ -814,9 +810,9 @@ lean_object* l_Lean_Environment_addAndCompile(lean_object*, lean_object*, lean_o lean_object* l_Lean_Parser_manyAux___main___at_Lean_Parser_many1Indent___spec__2(uint8_t, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_manyAux___main___at_Lean_Parser_many1Indent___spec__1(uint8_t, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_chFn___boxed(lean_object*); +lean_object* l_Lean_Parser_mkFreshKind___closed__1; uint8_t l_Lean_Parser_isValidSyntaxNodeKind(lean_object*, lean_object*); lean_object* l_Lean_Parser_dollarSymbol___elambda__1___rarg___closed__2; -lean_object* l_Lean_Parser_unicodeInfixR___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Error_beq___boxed(lean_object*, lean_object*); lean_object* l_Lean_Parser_orelseInfo___elambda__1(lean_object*, lean_object*, lean_object*); lean_object* l___private_Init_Lean_Parser_Parser_22__pushNone___elambda__1(uint8_t, lean_object*, lean_object*); @@ -824,10 +820,8 @@ lean_object* l_Lean_Parser_FirstTokens_toStr___closed__1; lean_object* l_Lean_Syntax_foldArgsAuxM___main___at_Lean_Syntax_foldArgs___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_runParserCategory(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_iterateMAux___main___at_Lean_Parser_getSyntaxNodeKinds___spec__4(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_unicodeInfixL(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_addLeadingParser(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_quotedSymbolFn___boxed(lean_object*); -uint8_t l_PersistentHashMap_containsAtAux___main___at_Lean_Parser_isValidSyntaxNodeKind___spec__3(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_mkParserExtension___closed__5; lean_object* l_Lean_Parser_categoryParser___elambda__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_foldArgsAuxM___boxed(lean_object*, lean_object*); @@ -837,6 +831,7 @@ lean_object* l_Lean_Parser_symbolInfo(lean_object*, lean_object*); lean_object* l_Lean_Parser_takeWhileFn___at_Lean_Parser_binNumberFn___spec__2(lean_object*, lean_object*); extern lean_object* l_Lean_registerPersistentEnvExtensionUnsafe___rarg___closed__4; lean_object* l_Lean_Parser_TokenConfig_toStr(lean_object*); +lean_object* l_Lean_Parser_mkFreshKind(lean_object*, lean_object*); lean_object* l_Lean_Parser_numLitFn___boxed(lean_object*, lean_object*); lean_object* l_Lean_Syntax_getOptionalIdent_x3f(lean_object*); lean_object* l_Lean_Parser_fieldIdx___lambda__1(lean_object*, lean_object*, lean_object*); @@ -933,7 +928,6 @@ lean_object* l___private_Init_Lean_Parser_Parser_8__throwParserCategoryAlreadyDe lean_object* lean_array_pop(lean_object*); lean_object* l_Lean_Parser_TokenMap_insert___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_quotedSymbolFn___rarg___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l_PersistentHashMap_containsAtAux___main___at_Lean_Parser_isValidSyntaxNodeKind___spec__3___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_nonReservedSymbolInfo___closed__4; uint8_t l_Lean_isIdFirst(uint32_t); extern lean_object* l_Lean_registerEnvExtensionUnsafe___rarg___closed__3; @@ -946,6 +940,7 @@ lean_object* l_Lean_Parser_currLbp(lean_object*, 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_List_foldl___main___at___private_Init_Lean_Parser_Parser_14__addTrailingParserAux___spec__1(lean_object*, lean_object*, lean_object*); +uint8_t l_PersistentHashMap_containsAux___main___at_Lean_Parser_mkFreshKindAux___main___spec__2(lean_object*, size_t, lean_object*); lean_object* lean_io_initializing(lean_object*); lean_object* l_Array_getEvenElems___boxed(lean_object*); extern lean_object* l_Lean_registerPersistentEnvExtensionUnsafe___rarg___closed__2; @@ -971,12 +966,14 @@ lean_object* l_Lean_Parser_optionaInfo___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_addParser___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_iterateMAux___main___at___private_Init_Lean_Parser_Parser_17__ParserExtension_addImported___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_leadingNode(lean_object*, lean_object*); +lean_object* l_Lean_Parser_mkFreshKind___closed__2; lean_object* l_Lean_Parser_ParserState_toErrorMsg(lean_object*, lean_object*); lean_object* l_Array_iterateMAux___main___at_Lean_Parser_SyntaxNodeKindSet_insert___spec__4(size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkStxLit(lean_object*, lean_object*, lean_object*); uint8_t l_PersistentHashMap_contains___at___private_Init_Lean_Parser_Parser_9__addParserCategoryCore___spec__1(lean_object*, lean_object*); lean_object* l_RBNode_insert___at_Lean_Parser_TokenMap_insert___spec__2(lean_object*); lean_object* l_Lean_Parser_mkAtomicInfo___closed__1; +lean_object* l_Lean_Parser_mkFreshKindAux___main(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Error_toString___closed__3; lean_object* l_Lean_Parser_ParserState_stackSize(lean_object*); lean_object* l_Lean_Parser_fieldIdx(uint8_t); @@ -1013,7 +1010,6 @@ lean_object* l_Lean_Syntax_forArgsM___boxed(lean_object*); lean_object* l_List_toStringAux___main___at_Lean_Parser_FirstTokens_toStr___spec__2(uint8_t, lean_object*); lean_object* l_List_toArrayAux___main___rarg(lean_object*, lean_object*); lean_object* l_Lean_Parser_andthen(uint8_t, lean_object*, lean_object*); -lean_object* l_Lean_Parser_unicodeInfixL___elambda__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_node(uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Parser_lookahead___boxed(lean_object*, lean_object*); lean_object* l_unsafeCast(lean_object*, lean_object*, lean_object*, lean_object*); @@ -1046,6 +1042,7 @@ 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; lean_object* l_Lean_Parser_mkAtom(lean_object*, lean_object*); +lean_object* l_Lean_Parser_mkFreshKindAux(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_currLbp___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_ParserState_mkEOIError(lean_object*); lean_object* l_Lean_Syntax_foldArgsAuxM___main___at_Lean_Syntax_foldSepArgs___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1078,9 +1075,9 @@ 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*); lean_object* l_Lean_mkConst(lean_object*, lean_object*); lean_object* l_Lean_Parser_longestMatchStep___boxed(lean_object*); +lean_object* l_PersistentHashMap_containsAtAux___main___at_Lean_Parser_mkFreshKindAux___main___spec__3___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Error_toString___closed__1; lean_object* l_Lean_Parser_regBuiltinTermParserAttr___closed__2; -lean_object* l_Lean_Parser_infixL(lean_object*, lean_object*); lean_object* l_PersistentHashMap_findAtAux___main___at_Lean_Parser_addLeadingParser___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_mkAntiquot___closed__2; lean_object* l_Lean_Parser_Parser_inhabited___closed__1; @@ -1131,7 +1128,6 @@ lean_object* l___private_Init_Lean_Parser_Parser_12__mergePrecendences___boxed(l lean_object* l_Lean_Parser_mkIdent(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_withPosition___boxed(lean_object*, lean_object*); uint8_t lean_string_dec_eq(lean_object*, lean_object*); -lean_object* l_Lean_Parser_infixL___elambda__1(lean_object*, lean_object*, lean_object*, 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_Lean_Parser_mkAntiquot___boxed(lean_object*, lean_object*, lean_object*, lean_object*); @@ -25635,17 +25631,19 @@ return x_5; lean_object* _init_l_Lean_Parser_ParserExtensionState_inhabited___closed__1() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; x_1 = lean_box(0); x_2 = l_Lean_Parser_Trie_HasEmptyc___closed__1; x_3 = l_PersistentHashMap_empty___at_Lean_Parser_mkBuiltinSyntaxNodeKindSetRef___spec__1; x_4 = l_PersistentHashMap_empty___at_Lean_Parser_mkBuiltinParserCategories___spec__1; -x_5 = lean_alloc_ctor(0, 4, 0); -lean_ctor_set(x_5, 0, x_2); -lean_ctor_set(x_5, 1, x_3); -lean_ctor_set(x_5, 2, x_4); -lean_ctor_set(x_5, 3, x_1); -return x_5; +x_5 = lean_unsigned_to_nat(1u); +x_6 = lean_alloc_ctor(0, 5, 0); +lean_ctor_set(x_6, 0, x_2); +lean_ctor_set(x_6, 1, x_3); +lean_ctor_set(x_6, 2, x_4); +lean_ctor_set(x_6, 3, x_1); +lean_ctor_set(x_6, 4, x_5); +return x_6; } } lean_object* _init_l_Lean_Parser_ParserExtensionState_inhabited() { @@ -25688,106 +25686,110 @@ uint8_t x_12; x_12 = !lean_is_exclusive(x_11); if (x_12 == 0) { -lean_object* x_13; lean_object* x_14; lean_object* x_15; +lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; x_13 = lean_ctor_get(x_11, 0); x_14 = lean_box(0); -x_15 = lean_alloc_ctor(0, 4, 0); -lean_ctor_set(x_15, 0, x_4); -lean_ctor_set(x_15, 1, x_8); -lean_ctor_set(x_15, 2, x_13); -lean_ctor_set(x_15, 3, x_14); -lean_ctor_set(x_11, 0, x_15); +x_15 = lean_unsigned_to_nat(1u); +x_16 = lean_alloc_ctor(0, 5, 0); +lean_ctor_set(x_16, 0, x_4); +lean_ctor_set(x_16, 1, x_8); +lean_ctor_set(x_16, 2, x_13); +lean_ctor_set(x_16, 3, x_14); +lean_ctor_set(x_16, 4, x_15); +lean_ctor_set(x_11, 0, x_16); return x_11; } else { -lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; -x_16 = lean_ctor_get(x_11, 0); -x_17 = lean_ctor_get(x_11, 1); +lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_17 = lean_ctor_get(x_11, 0); +x_18 = lean_ctor_get(x_11, 1); +lean_inc(x_18); lean_inc(x_17); -lean_inc(x_16); lean_dec(x_11); -x_18 = lean_box(0); -x_19 = lean_alloc_ctor(0, 4, 0); -lean_ctor_set(x_19, 0, x_4); -lean_ctor_set(x_19, 1, x_8); -lean_ctor_set(x_19, 2, x_16); -lean_ctor_set(x_19, 3, 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_17); -return x_20; +x_19 = lean_box(0); +x_20 = lean_unsigned_to_nat(1u); +x_21 = lean_alloc_ctor(0, 5, 0); +lean_ctor_set(x_21, 0, x_4); +lean_ctor_set(x_21, 1, x_8); +lean_ctor_set(x_21, 2, x_17); +lean_ctor_set(x_21, 3, x_19); +lean_ctor_set(x_21, 4, x_20); +x_22 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_22, 0, x_21); +lean_ctor_set(x_22, 1, x_18); +return x_22; } } else { -uint8_t x_21; +uint8_t x_23; lean_dec(x_8); lean_dec(x_4); -x_21 = !lean_is_exclusive(x_11); -if (x_21 == 0) +x_23 = !lean_is_exclusive(x_11); +if (x_23 == 0) { return x_11; } else { -lean_object* x_22; lean_object* x_23; lean_object* x_24; -x_22 = lean_ctor_get(x_11, 0); -x_23 = lean_ctor_get(x_11, 1); -lean_inc(x_23); -lean_inc(x_22); +lean_object* x_24; lean_object* x_25; lean_object* x_26; +x_24 = lean_ctor_get(x_11, 0); +x_25 = lean_ctor_get(x_11, 1); +lean_inc(x_25); +lean_inc(x_24); lean_dec(x_11); -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; +x_26 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_26, 0, x_24); +lean_ctor_set(x_26, 1, x_25); +return x_26; } } } else { -uint8_t x_25; +uint8_t x_27; lean_dec(x_4); -x_25 = !lean_is_exclusive(x_7); -if (x_25 == 0) +x_27 = !lean_is_exclusive(x_7); +if (x_27 == 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_object* x_28; lean_object* x_29; lean_object* x_30; +x_28 = lean_ctor_get(x_7, 0); +x_29 = lean_ctor_get(x_7, 1); +lean_inc(x_29); +lean_inc(x_28); 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; +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_29; -x_29 = !lean_is_exclusive(x_3); -if (x_29 == 0) +uint8_t x_31; +x_31 = !lean_is_exclusive(x_3); +if (x_31 == 0) { return x_3; } else { -lean_object* x_30; lean_object* x_31; lean_object* x_32; -x_30 = lean_ctor_get(x_3, 0); -x_31 = lean_ctor_get(x_3, 1); -lean_inc(x_31); -lean_inc(x_30); +lean_object* x_32; lean_object* x_33; lean_object* x_34; +x_32 = lean_ctor_get(x_3, 0); +x_33 = lean_ctor_get(x_3, 1); +lean_inc(x_33); +lean_inc(x_32); lean_dec(x_3); -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; +x_34 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_34, 0, x_32); +lean_ctor_set(x_34, 1, x_33); +return x_34; } } } @@ -27373,321 +27375,342 @@ lean_dec(x_2); x_4 = !lean_is_exclusive(x_1); if (x_4 == 0) { -lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; +lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; x_5 = lean_ctor_get(x_1, 0); x_6 = lean_ctor_get(x_1, 1); x_7 = lean_ctor_get(x_1, 2); x_8 = lean_ctor_get(x_1, 3); +x_9 = lean_ctor_get(x_1, 4); lean_inc(x_3); -x_9 = l___private_Init_Lean_Parser_Parser_13__addTokenConfig(x_5, x_3); -if (lean_obj_tag(x_9) == 0) +x_10 = l___private_Init_Lean_Parser_Parser_13__addTokenConfig(x_5, x_3); +if (lean_obj_tag(x_10) == 0) { -lean_object* x_10; lean_object* x_11; -lean_dec(x_9); +lean_object* x_11; lean_object* x_12; +lean_dec(x_10); lean_free_object(x_1); +lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_3); -x_10 = l_Lean_Parser_ParserExtensionState_inhabited; -x_11 = l_unreachable_x21___rarg(x_10); -return x_11; +x_11 = l_Lean_Parser_ParserExtensionState_inhabited; +x_12 = l_unreachable_x21___rarg(x_11); +return x_12; } else { -lean_object* x_12; lean_object* x_13; lean_object* x_14; -x_12 = lean_ctor_get(x_9, 0); -lean_inc(x_12); -lean_dec(x_9); -x_13 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_13, 0, x_3); -x_14 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_14, 0, x_13); -lean_ctor_set(x_14, 1, x_8); -lean_ctor_set(x_1, 3, x_14); -lean_ctor_set(x_1, 0, x_12); +lean_object* x_13; lean_object* x_14; lean_object* x_15; +x_13 = lean_ctor_get(x_10, 0); +lean_inc(x_13); +lean_dec(x_10); +x_14 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_14, 0, x_3); +x_15 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_15, 0, x_14); +lean_ctor_set(x_15, 1, x_8); +lean_ctor_set(x_1, 3, x_15); +lean_ctor_set(x_1, 0, x_13); return x_1; } } 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_1, 0); -x_16 = lean_ctor_get(x_1, 1); -x_17 = lean_ctor_get(x_1, 2); -x_18 = lean_ctor_get(x_1, 3); +lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; +x_16 = lean_ctor_get(x_1, 0); +x_17 = lean_ctor_get(x_1, 1); +x_18 = lean_ctor_get(x_1, 2); +x_19 = lean_ctor_get(x_1, 3); +x_20 = lean_ctor_get(x_1, 4); +lean_inc(x_20); +lean_inc(x_19); lean_inc(x_18); lean_inc(x_17); lean_inc(x_16); -lean_inc(x_15); lean_dec(x_1); lean_inc(x_3); -x_19 = l___private_Init_Lean_Parser_Parser_13__addTokenConfig(x_15, x_3); -if (lean_obj_tag(x_19) == 0) +x_21 = l___private_Init_Lean_Parser_Parser_13__addTokenConfig(x_16, x_3); +if (lean_obj_tag(x_21) == 0) { -lean_object* x_20; lean_object* x_21; +lean_object* x_22; lean_object* x_23; +lean_dec(x_21); +lean_dec(x_20); lean_dec(x_19); lean_dec(x_18); lean_dec(x_17); -lean_dec(x_16); lean_dec(x_3); -x_20 = l_Lean_Parser_ParserExtensionState_inhabited; -x_21 = l_unreachable_x21___rarg(x_20); -return x_21; +x_22 = l_Lean_Parser_ParserExtensionState_inhabited; +x_23 = l_unreachable_x21___rarg(x_22); +return x_23; } else { -lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; -x_22 = lean_ctor_get(x_19, 0); -lean_inc(x_22); -lean_dec(x_19); -x_23 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_23, 0, x_3); -x_24 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_24, 0, x_23); -lean_ctor_set(x_24, 1, x_18); -x_25 = lean_alloc_ctor(0, 4, 0); -lean_ctor_set(x_25, 0, x_22); -lean_ctor_set(x_25, 1, x_16); -lean_ctor_set(x_25, 2, x_17); -lean_ctor_set(x_25, 3, x_24); -return x_25; +lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; +x_24 = lean_ctor_get(x_21, 0); +lean_inc(x_24); +lean_dec(x_21); +x_25 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_25, 0, x_3); +x_26 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_26, 0, x_25); +lean_ctor_set(x_26, 1, x_19); +x_27 = lean_alloc_ctor(0, 5, 0); +lean_ctor_set(x_27, 0, x_24); +lean_ctor_set(x_27, 1, x_17); +lean_ctor_set(x_27, 2, x_18); +lean_ctor_set(x_27, 3, x_26); +lean_ctor_set(x_27, 4, x_20); +return x_27; } } } case 1: { -lean_object* x_26; uint8_t x_27; -x_26 = lean_ctor_get(x_2, 0); -lean_inc(x_26); +lean_object* x_28; uint8_t x_29; +x_28 = lean_ctor_get(x_2, 0); +lean_inc(x_28); lean_dec(x_2); -x_27 = !lean_is_exclusive(x_1); -if (x_27 == 0) +x_29 = !lean_is_exclusive(x_1); +if (x_29 == 0) { -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_28 = lean_ctor_get(x_1, 1); -x_29 = lean_ctor_get(x_1, 3); -x_30 = lean_box(0); -lean_inc(x_26); -x_31 = l_PersistentHashMap_insert___at_Lean_Parser_SyntaxNodeKindSet_insert___spec__1(x_28, x_26, x_30); -x_32 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_32, 0, x_26); -x_33 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_33, 0, x_32); -lean_ctor_set(x_33, 1, x_29); -lean_ctor_set(x_1, 3, x_33); -lean_ctor_set(x_1, 1, x_31); +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_1, 1); +x_31 = lean_ctor_get(x_1, 3); +x_32 = lean_box(0); +lean_inc(x_28); +x_33 = l_PersistentHashMap_insert___at_Lean_Parser_SyntaxNodeKindSet_insert___spec__1(x_30, x_28, x_32); +x_34 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_34, 0, x_28); +x_35 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_35, 0, x_34); +lean_ctor_set(x_35, 1, x_31); +lean_ctor_set(x_1, 3, x_35); +lean_ctor_set(x_1, 1, x_33); return x_1; } 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_object* x_40; lean_object* x_41; lean_object* x_42; -x_34 = lean_ctor_get(x_1, 0); -x_35 = lean_ctor_get(x_1, 1); -x_36 = lean_ctor_get(x_1, 2); -x_37 = lean_ctor_get(x_1, 3); +lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; +x_36 = lean_ctor_get(x_1, 0); +x_37 = lean_ctor_get(x_1, 1); +x_38 = lean_ctor_get(x_1, 2); +x_39 = lean_ctor_get(x_1, 3); +x_40 = lean_ctor_get(x_1, 4); +lean_inc(x_40); +lean_inc(x_39); +lean_inc(x_38); lean_inc(x_37); lean_inc(x_36); -lean_inc(x_35); -lean_inc(x_34); lean_dec(x_1); -x_38 = lean_box(0); -lean_inc(x_26); -x_39 = l_PersistentHashMap_insert___at_Lean_Parser_SyntaxNodeKindSet_insert___spec__1(x_35, x_26, x_38); -x_40 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_40, 0, x_26); -x_41 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_41, 0, x_40); -lean_ctor_set(x_41, 1, x_37); -x_42 = lean_alloc_ctor(0, 4, 0); -lean_ctor_set(x_42, 0, x_34); -lean_ctor_set(x_42, 1, x_39); -lean_ctor_set(x_42, 2, x_36); -lean_ctor_set(x_42, 3, x_41); -return x_42; +x_41 = lean_box(0); +lean_inc(x_28); +x_42 = l_PersistentHashMap_insert___at_Lean_Parser_SyntaxNodeKindSet_insert___spec__1(x_37, x_28, x_41); +x_43 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_43, 0, x_28); +x_44 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_44, 0, x_43); +lean_ctor_set(x_44, 1, x_39); +x_45 = lean_alloc_ctor(0, 5, 0); +lean_ctor_set(x_45, 0, x_36); +lean_ctor_set(x_45, 1, x_42); +lean_ctor_set(x_45, 2, x_38); +lean_ctor_set(x_45, 3, x_44); +lean_ctor_set(x_45, 4, x_40); +return x_45; } } case 2: { -lean_object* x_43; uint8_t x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; uint8_t x_49; -x_43 = lean_ctor_get(x_2, 0); -lean_inc(x_43); -x_44 = lean_ctor_get_uint8(x_2, sizeof(void*)*1); -lean_dec(x_2); -x_45 = lean_ctor_get(x_1, 0); -lean_inc(x_45); -x_46 = lean_ctor_get(x_1, 1); +lean_object* x_46; uint8_t x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; uint8_t x_53; +x_46 = lean_ctor_get(x_2, 0); lean_inc(x_46); -x_47 = lean_ctor_get(x_1, 2); -lean_inc(x_47); -x_48 = lean_ctor_get(x_1, 3); +x_47 = lean_ctor_get_uint8(x_2, sizeof(void*)*1); +lean_dec(x_2); +x_48 = lean_ctor_get(x_1, 0); lean_inc(x_48); -lean_inc(x_47); -x_49 = l_PersistentHashMap_contains___at___private_Init_Lean_Parser_Parser_9__addParserCategoryCore___spec__1(x_47, x_43); -if (x_49 == 0) -{ -uint8_t x_50; -x_50 = !lean_is_exclusive(x_1); -if (x_50 == 0) -{ -lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; +x_49 = lean_ctor_get(x_1, 1); +lean_inc(x_49); +x_50 = lean_ctor_get(x_1, 2); +lean_inc(x_50); x_51 = lean_ctor_get(x_1, 3); -lean_dec(x_51); -x_52 = lean_ctor_get(x_1, 2); -lean_dec(x_52); -x_53 = lean_ctor_get(x_1, 1); -lean_dec(x_53); -x_54 = lean_ctor_get(x_1, 0); -lean_dec(x_54); -x_55 = l_Lean_Parser_ParsingTables_inhabited___closed__1; -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_PersistentHashMap_insert___at___private_Init_Lean_Parser_Parser_9__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); -x_59 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_59, 0, x_58); -lean_ctor_set(x_59, 1, x_48); -lean_ctor_set(x_1, 3, x_59); -lean_ctor_set(x_1, 2, x_57); +lean_inc(x_51); +x_52 = lean_ctor_get(x_1, 4); +lean_inc(x_52); +lean_inc(x_50); +x_53 = l_PersistentHashMap_contains___at___private_Init_Lean_Parser_Parser_9__addParserCategoryCore___spec__1(x_50, x_46); +if (x_53 == 0) +{ +uint8_t x_54; +x_54 = !lean_is_exclusive(x_1); +if (x_54 == 0) +{ +lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; +x_55 = lean_ctor_get(x_1, 4); +lean_dec(x_55); +x_56 = lean_ctor_get(x_1, 3); +lean_dec(x_56); +x_57 = lean_ctor_get(x_1, 2); +lean_dec(x_57); +x_58 = lean_ctor_get(x_1, 1); +lean_dec(x_58); +x_59 = lean_ctor_get(x_1, 0); +lean_dec(x_59); +x_60 = l_Lean_Parser_ParsingTables_inhabited___closed__1; +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_47); +lean_inc(x_46); +x_62 = l_PersistentHashMap_insert___at___private_Init_Lean_Parser_Parser_9__addParserCategoryCore___spec__3(x_50, x_46, x_61); +x_63 = lean_alloc_ctor(2, 1, 1); +lean_ctor_set(x_63, 0, x_46); +lean_ctor_set_uint8(x_63, sizeof(void*)*1, x_47); +x_64 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_64, 0, x_63); +lean_ctor_set(x_64, 1, x_51); +lean_ctor_set(x_1, 3, x_64); +lean_ctor_set(x_1, 2, x_62); return x_1; } else { -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_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_dec(x_1); -x_60 = l_Lean_Parser_ParsingTables_inhabited___closed__1; -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_PersistentHashMap_insert___at___private_Init_Lean_Parser_Parser_9__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); -x_64 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_64, 0, x_63); -lean_ctor_set(x_64, 1, x_48); -x_65 = lean_alloc_ctor(0, 4, 0); -lean_ctor_set(x_65, 0, x_45); -lean_ctor_set(x_65, 1, x_46); -lean_ctor_set(x_65, 2, x_62); -lean_ctor_set(x_65, 3, x_64); -return x_65; +x_65 = l_Lean_Parser_ParsingTables_inhabited___closed__1; +x_66 = lean_alloc_ctor(0, 1, 1); +lean_ctor_set(x_66, 0, x_65); +lean_ctor_set_uint8(x_66, sizeof(void*)*1, x_47); +lean_inc(x_46); +x_67 = l_PersistentHashMap_insert___at___private_Init_Lean_Parser_Parser_9__addParserCategoryCore___spec__3(x_50, x_46, x_66); +x_68 = lean_alloc_ctor(2, 1, 1); +lean_ctor_set(x_68, 0, x_46); +lean_ctor_set_uint8(x_68, sizeof(void*)*1, x_47); +x_69 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_69, 0, x_68); +lean_ctor_set(x_69, 1, x_51); +x_70 = lean_alloc_ctor(0, 5, 0); +lean_ctor_set(x_70, 0, x_48); +lean_ctor_set(x_70, 1, x_49); +lean_ctor_set(x_70, 2, x_67); +lean_ctor_set(x_70, 3, x_69); +lean_ctor_set(x_70, 4, x_52); +return x_70; } } else { +lean_dec(x_52); +lean_dec(x_51); +lean_dec(x_50); +lean_dec(x_49); lean_dec(x_48); -lean_dec(x_47); lean_dec(x_46); -lean_dec(x_45); -lean_dec(x_43); return x_1; } } default: { -lean_object* x_66; lean_object* x_67; uint8_t x_68; lean_object* x_69; uint8_t x_70; -x_66 = lean_ctor_get(x_2, 0); -lean_inc(x_66); -x_67 = lean_ctor_get(x_2, 1); -lean_inc(x_67); -x_68 = lean_ctor_get_uint8(x_2, sizeof(void*)*3); -x_69 = lean_ctor_get(x_2, 2); -lean_inc(x_69); +lean_object* x_71; lean_object* x_72; uint8_t x_73; lean_object* x_74; uint8_t x_75; +x_71 = lean_ctor_get(x_2, 0); +lean_inc(x_71); +x_72 = lean_ctor_get(x_2, 1); +lean_inc(x_72); +x_73 = lean_ctor_get_uint8(x_2, sizeof(void*)*3); +x_74 = lean_ctor_get(x_2, 2); +lean_inc(x_74); lean_dec(x_2); -x_70 = !lean_is_exclusive(x_1); -if (x_70 == 0) +x_75 = !lean_is_exclusive(x_1); +if (x_75 == 0) { -lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; -x_71 = lean_ctor_get(x_1, 0); -x_72 = lean_ctor_get(x_1, 1); -x_73 = lean_ctor_get(x_1, 2); -x_74 = lean_ctor_get(x_1, 3); -lean_inc(x_67); -lean_inc(x_66); -x_75 = l_Lean_Parser_addParser(x_68, x_73, x_66, x_67, x_69); -if (lean_obj_tag(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; +x_76 = lean_ctor_get(x_1, 0); +x_77 = lean_ctor_get(x_1, 1); +x_78 = lean_ctor_get(x_1, 2); +x_79 = lean_ctor_get(x_1, 3); +x_80 = lean_ctor_get(x_1, 4); +lean_inc(x_72); +lean_inc(x_71); +x_81 = l_Lean_Parser_addParser(x_73, x_78, x_71, x_72, x_74); +if (lean_obj_tag(x_81) == 0) { -lean_object* x_76; lean_object* x_77; -lean_dec(x_75); +lean_object* x_82; lean_object* x_83; +lean_dec(x_81); lean_free_object(x_1); -lean_dec(x_74); +lean_dec(x_80); +lean_dec(x_79); +lean_dec(x_77); +lean_dec(x_76); lean_dec(x_72); lean_dec(x_71); -lean_dec(x_67); -lean_dec(x_66); -x_76 = l_Lean_Parser_ParserExtensionState_inhabited; -x_77 = l_unreachable_x21___rarg(x_76); -return x_77; +x_82 = l_Lean_Parser_ParserExtensionState_inhabited; +x_83 = l_unreachable_x21___rarg(x_82); +return x_83; } else { -lean_object* x_78; lean_object* x_79; lean_object* x_80; -x_78 = lean_ctor_get(x_75, 0); -lean_inc(x_78); -lean_dec(x_75); -x_79 = lean_alloc_ctor(3, 2, 0); -lean_ctor_set(x_79, 0, x_66); -lean_ctor_set(x_79, 1, x_67); -x_80 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_80, 0, x_79); -lean_ctor_set(x_80, 1, x_74); -lean_ctor_set(x_1, 3, x_80); -lean_ctor_set(x_1, 2, x_78); +lean_object* x_84; lean_object* x_85; lean_object* x_86; +x_84 = lean_ctor_get(x_81, 0); +lean_inc(x_84); +lean_dec(x_81); +x_85 = lean_alloc_ctor(3, 2, 0); +lean_ctor_set(x_85, 0, x_71); +lean_ctor_set(x_85, 1, x_72); +x_86 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_86, 0, x_85); +lean_ctor_set(x_86, 1, x_79); +lean_ctor_set(x_1, 3, x_86); +lean_ctor_set(x_1, 2, x_84); return x_1; } } else { -lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; -x_81 = lean_ctor_get(x_1, 0); -x_82 = lean_ctor_get(x_1, 1); -x_83 = lean_ctor_get(x_1, 2); -x_84 = lean_ctor_get(x_1, 3); -lean_inc(x_84); -lean_inc(x_83); -lean_inc(x_82); -lean_inc(x_81); +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_87 = lean_ctor_get(x_1, 0); +x_88 = lean_ctor_get(x_1, 1); +x_89 = lean_ctor_get(x_1, 2); +x_90 = lean_ctor_get(x_1, 3); +x_91 = lean_ctor_get(x_1, 4); +lean_inc(x_91); +lean_inc(x_90); +lean_inc(x_89); +lean_inc(x_88); +lean_inc(x_87); lean_dec(x_1); -lean_inc(x_67); -lean_inc(x_66); -x_85 = l_Lean_Parser_addParser(x_68, x_83, x_66, x_67, x_69); -if (lean_obj_tag(x_85) == 0) +lean_inc(x_72); +lean_inc(x_71); +x_92 = l_Lean_Parser_addParser(x_73, x_89, x_71, x_72, x_74); +if (lean_obj_tag(x_92) == 0) { -lean_object* x_86; lean_object* x_87; -lean_dec(x_85); -lean_dec(x_84); -lean_dec(x_82); -lean_dec(x_81); -lean_dec(x_67); -lean_dec(x_66); -x_86 = l_Lean_Parser_ParserExtensionState_inhabited; -x_87 = l_unreachable_x21___rarg(x_86); -return x_87; +lean_object* x_93; lean_object* x_94; +lean_dec(x_92); +lean_dec(x_91); +lean_dec(x_90); +lean_dec(x_88); +lean_dec(x_87); +lean_dec(x_72); +lean_dec(x_71); +x_93 = l_Lean_Parser_ParserExtensionState_inhabited; +x_94 = l_unreachable_x21___rarg(x_93); +return x_94; } else { -lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; -x_88 = lean_ctor_get(x_85, 0); -lean_inc(x_88); -lean_dec(x_85); -x_89 = lean_alloc_ctor(3, 2, 0); -lean_ctor_set(x_89, 0, x_66); -lean_ctor_set(x_89, 1, x_67); -x_90 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_90, 0, x_89); -lean_ctor_set(x_90, 1, x_84); -x_91 = lean_alloc_ctor(0, 4, 0); -lean_ctor_set(x_91, 0, x_81); -lean_ctor_set(x_91, 1, x_82); -lean_ctor_set(x_91, 2, x_88); -lean_ctor_set(x_91, 3, x_90); -return x_91; +lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; +x_95 = lean_ctor_get(x_92, 0); +lean_inc(x_95); +lean_dec(x_92); +x_96 = lean_alloc_ctor(3, 2, 0); +lean_ctor_set(x_96, 0, x_71); +lean_ctor_set(x_96, 1, x_72); +x_97 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_97, 0, x_96); +lean_ctor_set(x_97, 1, x_90); +x_98 = lean_alloc_ctor(0, 5, 0); +lean_ctor_set(x_98, 0, x_87); +lean_ctor_set(x_98, 1, x_88); +lean_ctor_set(x_98, 2, x_95); +lean_ctor_set(x_98, 3, x_97); +lean_ctor_set(x_98, 4, x_91); +return x_98; } } } @@ -30927,367 +30950,385 @@ lean_dec(x_10); x_14 = !lean_is_exclusive(x_5); if (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; +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_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_Init_Lean_Parser_Parser_13__addTokenConfig(x_15, x_13); -x_20 = l_IO_ofExcept___at___private_Init_Lean_Parser_Parser_17__ParserExtension_addImported___spec__1(x_19, x_6); -lean_dec(x_19); -if (lean_obj_tag(x_20) == 0) -{ -lean_object* x_21; lean_object* x_22; -x_21 = lean_ctor_get(x_20, 0); -lean_inc(x_21); -x_22 = lean_ctor_get(x_20, 1); -lean_inc(x_22); +x_19 = lean_ctor_get(x_5, 4); +x_20 = l___private_Init_Lean_Parser_Parser_13__addTokenConfig(x_15, x_13); +x_21 = l_IO_ofExcept___at___private_Init_Lean_Parser_Parser_17__ParserExtension_addImported___spec__1(x_20, x_6); lean_dec(x_20); -lean_ctor_set(x_5, 0, x_21); +if (lean_obj_tag(x_21) == 0) +{ +lean_object* x_22; lean_object* x_23; +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); +lean_ctor_set(x_5, 0, x_22); x_4 = x_12; -x_6 = x_22; +x_6 = x_23; goto _start; } else { -uint8_t x_24; +uint8_t x_25; lean_free_object(x_5); +lean_dec(x_19); lean_dec(x_18); lean_dec(x_17); lean_dec(x_16); lean_dec(x_12); lean_dec(x_1); -x_24 = !lean_is_exclusive(x_20); -if (x_24 == 0) +x_25 = !lean_is_exclusive(x_21); +if (x_25 == 0) { -return x_20; +return x_21; } else { -lean_object* x_25; lean_object* x_26; lean_object* x_27; -x_25 = lean_ctor_get(x_20, 0); -x_26 = lean_ctor_get(x_20, 1); +lean_object* x_26; lean_object* x_27; lean_object* x_28; +x_26 = lean_ctor_get(x_21, 0); +x_27 = lean_ctor_get(x_21, 1); +lean_inc(x_27); lean_inc(x_26); -lean_inc(x_25); -lean_dec(x_20); -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_dec(x_21); +x_28 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_28, 0, x_26); +lean_ctor_set(x_28, 1, x_27); +return x_28; } } } else { -lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; -x_28 = lean_ctor_get(x_5, 0); -x_29 = lean_ctor_get(x_5, 1); -x_30 = lean_ctor_get(x_5, 2); -x_31 = lean_ctor_get(x_5, 3); +lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; +x_29 = lean_ctor_get(x_5, 0); +x_30 = lean_ctor_get(x_5, 1); +x_31 = lean_ctor_get(x_5, 2); +x_32 = lean_ctor_get(x_5, 3); +x_33 = lean_ctor_get(x_5, 4); +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_dec(x_5); -x_32 = l___private_Init_Lean_Parser_Parser_13__addTokenConfig(x_28, x_13); -x_33 = l_IO_ofExcept___at___private_Init_Lean_Parser_Parser_17__ParserExtension_addImported___spec__1(x_32, x_6); -lean_dec(x_32); -if (lean_obj_tag(x_33) == 0) +x_34 = l___private_Init_Lean_Parser_Parser_13__addTokenConfig(x_29, x_13); +x_35 = l_IO_ofExcept___at___private_Init_Lean_Parser_Parser_17__ParserExtension_addImported___spec__1(x_34, x_6); +lean_dec(x_34); +if (lean_obj_tag(x_35) == 0) { -lean_object* x_34; lean_object* x_35; lean_object* x_36; -x_34 = lean_ctor_get(x_33, 0); -lean_inc(x_34); -x_35 = lean_ctor_get(x_33, 1); -lean_inc(x_35); -lean_dec(x_33); -x_36 = lean_alloc_ctor(0, 4, 0); -lean_ctor_set(x_36, 0, x_34); -lean_ctor_set(x_36, 1, x_29); -lean_ctor_set(x_36, 2, x_30); -lean_ctor_set(x_36, 3, x_31); +lean_object* x_36; lean_object* x_37; lean_object* x_38; +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, 5, 0); +lean_ctor_set(x_38, 0, x_36); +lean_ctor_set(x_38, 1, x_30); +lean_ctor_set(x_38, 2, x_31); +lean_ctor_set(x_38, 3, x_32); +lean_ctor_set(x_38, 4, x_33); x_4 = x_12; -x_5 = x_36; -x_6 = x_35; +x_5 = x_38; +x_6 = x_37; goto _start; } else { -lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; +lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; +lean_dec(x_33); +lean_dec(x_32); lean_dec(x_31); lean_dec(x_30); -lean_dec(x_29); lean_dec(x_12); lean_dec(x_1); -x_38 = lean_ctor_get(x_33, 0); -lean_inc(x_38); -x_39 = lean_ctor_get(x_33, 1); -lean_inc(x_39); -if (lean_is_exclusive(x_33)) { - lean_ctor_release(x_33, 0); - lean_ctor_release(x_33, 1); - x_40 = x_33; +x_40 = lean_ctor_get(x_35, 0); +lean_inc(x_40); +x_41 = lean_ctor_get(x_35, 1); +lean_inc(x_41); +if (lean_is_exclusive(x_35)) { + lean_ctor_release(x_35, 0); + lean_ctor_release(x_35, 1); + x_42 = x_35; } else { - lean_dec_ref(x_33); - x_40 = lean_box(0); + lean_dec_ref(x_35); + x_42 = lean_box(0); } -if (lean_is_scalar(x_40)) { - x_41 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_42)) { + x_43 = lean_alloc_ctor(1, 2, 0); } else { - x_41 = x_40; + x_43 = x_42; } -lean_ctor_set(x_41, 0, x_38); -lean_ctor_set(x_41, 1, x_39); -return x_41; +lean_ctor_set(x_43, 0, x_40); +lean_ctor_set(x_43, 1, x_41); +return x_43; } } } case 1: { -lean_object* x_42; uint8_t x_43; -x_42 = lean_ctor_get(x_10, 0); -lean_inc(x_42); +lean_object* x_44; uint8_t x_45; +x_44 = lean_ctor_get(x_10, 0); +lean_inc(x_44); lean_dec(x_10); -x_43 = !lean_is_exclusive(x_5); -if (x_43 == 0) +x_45 = !lean_is_exclusive(x_5); +if (x_45 == 0) { -lean_object* x_44; lean_object* x_45; lean_object* x_46; -x_44 = lean_ctor_get(x_5, 1); -x_45 = lean_box(0); -x_46 = l_PersistentHashMap_insert___at_Lean_Parser_SyntaxNodeKindSet_insert___spec__1(x_44, x_42, x_45); -lean_ctor_set(x_5, 1, x_46); +lean_object* x_46; lean_object* x_47; lean_object* x_48; +x_46 = lean_ctor_get(x_5, 1); +x_47 = lean_box(0); +x_48 = l_PersistentHashMap_insert___at_Lean_Parser_SyntaxNodeKindSet_insert___spec__1(x_46, x_44, x_47); +lean_ctor_set(x_5, 1, x_48); x_4 = x_12; goto _start; } 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; lean_object* x_54; -x_48 = lean_ctor_get(x_5, 0); -x_49 = lean_ctor_get(x_5, 1); -x_50 = lean_ctor_get(x_5, 2); -x_51 = lean_ctor_get(x_5, 3); +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_50 = lean_ctor_get(x_5, 0); +x_51 = lean_ctor_get(x_5, 1); +x_52 = lean_ctor_get(x_5, 2); +x_53 = lean_ctor_get(x_5, 3); +x_54 = lean_ctor_get(x_5, 4); +lean_inc(x_54); +lean_inc(x_53); +lean_inc(x_52); lean_inc(x_51); lean_inc(x_50); -lean_inc(x_49); -lean_inc(x_48); lean_dec(x_5); -x_52 = lean_box(0); -x_53 = l_PersistentHashMap_insert___at_Lean_Parser_SyntaxNodeKindSet_insert___spec__1(x_49, x_42, x_52); -x_54 = lean_alloc_ctor(0, 4, 0); -lean_ctor_set(x_54, 0, x_48); -lean_ctor_set(x_54, 1, x_53); -lean_ctor_set(x_54, 2, x_50); -lean_ctor_set(x_54, 3, x_51); +x_55 = lean_box(0); +x_56 = l_PersistentHashMap_insert___at_Lean_Parser_SyntaxNodeKindSet_insert___spec__1(x_51, x_44, x_55); +x_57 = lean_alloc_ctor(0, 5, 0); +lean_ctor_set(x_57, 0, x_50); +lean_ctor_set(x_57, 1, x_56); +lean_ctor_set(x_57, 2, x_52); +lean_ctor_set(x_57, 3, x_53); +lean_ctor_set(x_57, 4, x_54); x_4 = x_12; -x_5 = x_54; +x_5 = x_57; goto _start; } } case 2: { -lean_object* x_56; uint8_t x_57; uint8_t x_58; -x_56 = lean_ctor_get(x_10, 0); -lean_inc(x_56); -x_57 = lean_ctor_get_uint8(x_10, sizeof(void*)*1); +lean_object* x_59; uint8_t x_60; uint8_t x_61; +x_59 = lean_ctor_get(x_10, 0); +lean_inc(x_59); +x_60 = lean_ctor_get_uint8(x_10, sizeof(void*)*1); lean_dec(x_10); -x_58 = !lean_is_exclusive(x_5); -if (x_58 == 0) +x_61 = !lean_is_exclusive(x_5); +if (x_61 == 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; -x_59 = lean_ctor_get(x_5, 0); -x_60 = lean_ctor_get(x_5, 1); -x_61 = lean_ctor_get(x_5, 2); -x_62 = lean_ctor_get(x_5, 3); -x_63 = l___private_Init_Lean_Parser_Parser_9__addParserCategoryCore(x_61, x_56, x_57); -x_64 = l_IO_ofExcept___at___private_Init_Lean_Parser_Parser_10__addBuiltinParserCategory___spec__1(x_63, x_6); -lean_dec(x_63); -if (lean_obj_tag(x_64) == 0) +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; +x_62 = lean_ctor_get(x_5, 0); +x_63 = lean_ctor_get(x_5, 1); +x_64 = lean_ctor_get(x_5, 2); +x_65 = lean_ctor_get(x_5, 3); +x_66 = lean_ctor_get(x_5, 4); +x_67 = l___private_Init_Lean_Parser_Parser_9__addParserCategoryCore(x_64, x_59, x_60); +x_68 = l_IO_ofExcept___at___private_Init_Lean_Parser_Parser_10__addBuiltinParserCategory___spec__1(x_67, x_6); +lean_dec(x_67); +if (lean_obj_tag(x_68) == 0) { -lean_object* x_65; lean_object* x_66; -x_65 = lean_ctor_get(x_64, 0); -lean_inc(x_65); -x_66 = lean_ctor_get(x_64, 1); -lean_inc(x_66); -lean_dec(x_64); -lean_ctor_set(x_5, 2, x_65); +lean_object* x_69; lean_object* x_70; +x_69 = lean_ctor_get(x_68, 0); +lean_inc(x_69); +x_70 = lean_ctor_get(x_68, 1); +lean_inc(x_70); +lean_dec(x_68); +lean_ctor_set(x_5, 2, x_69); x_4 = x_12; -x_6 = x_66; +x_6 = x_70; goto _start; } else { -uint8_t x_68; +uint8_t x_72; lean_free_object(x_5); +lean_dec(x_66); +lean_dec(x_65); +lean_dec(x_63); lean_dec(x_62); -lean_dec(x_60); -lean_dec(x_59); lean_dec(x_12); lean_dec(x_1); -x_68 = !lean_is_exclusive(x_64); -if (x_68 == 0) +x_72 = !lean_is_exclusive(x_68); +if (x_72 == 0) { -return x_64; +return x_68; } else { -lean_object* x_69; lean_object* x_70; lean_object* x_71; -x_69 = lean_ctor_get(x_64, 0); -x_70 = lean_ctor_get(x_64, 1); -lean_inc(x_70); -lean_inc(x_69); -lean_dec(x_64); -x_71 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_71, 0, x_69); -lean_ctor_set(x_71, 1, x_70); -return x_71; -} -} -} -else -{ -lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; -x_72 = lean_ctor_get(x_5, 0); -x_73 = lean_ctor_get(x_5, 1); -x_74 = lean_ctor_get(x_5, 2); -x_75 = lean_ctor_get(x_5, 3); -lean_inc(x_75); +lean_object* x_73; lean_object* x_74; lean_object* x_75; +x_73 = lean_ctor_get(x_68, 0); +x_74 = lean_ctor_get(x_68, 1); lean_inc(x_74); lean_inc(x_73); -lean_inc(x_72); -lean_dec(x_5); -x_76 = l___private_Init_Lean_Parser_Parser_9__addParserCategoryCore(x_74, x_56, x_57); -x_77 = l_IO_ofExcept___at___private_Init_Lean_Parser_Parser_10__addBuiltinParserCategory___spec__1(x_76, x_6); -lean_dec(x_76); -if (lean_obj_tag(x_77) == 0) +lean_dec(x_68); +x_75 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_75, 0, x_73); +lean_ctor_set(x_75, 1, x_74); +return x_75; +} +} +} +else { -lean_object* x_78; lean_object* x_79; lean_object* x_80; -x_78 = lean_ctor_get(x_77, 0); -lean_inc(x_78); -x_79 = lean_ctor_get(x_77, 1); +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; +x_76 = lean_ctor_get(x_5, 0); +x_77 = lean_ctor_get(x_5, 1); +x_78 = lean_ctor_get(x_5, 2); +x_79 = lean_ctor_get(x_5, 3); +x_80 = lean_ctor_get(x_5, 4); +lean_inc(x_80); lean_inc(x_79); -lean_dec(x_77); -x_80 = lean_alloc_ctor(0, 4, 0); -lean_ctor_set(x_80, 0, x_72); -lean_ctor_set(x_80, 1, x_73); -lean_ctor_set(x_80, 2, x_78); -lean_ctor_set(x_80, 3, x_75); +lean_inc(x_78); +lean_inc(x_77); +lean_inc(x_76); +lean_dec(x_5); +x_81 = l___private_Init_Lean_Parser_Parser_9__addParserCategoryCore(x_78, x_59, x_60); +x_82 = l_IO_ofExcept___at___private_Init_Lean_Parser_Parser_10__addBuiltinParserCategory___spec__1(x_81, x_6); +lean_dec(x_81); +if (lean_obj_tag(x_82) == 0) +{ +lean_object* x_83; lean_object* x_84; lean_object* x_85; +x_83 = lean_ctor_get(x_82, 0); +lean_inc(x_83); +x_84 = lean_ctor_get(x_82, 1); +lean_inc(x_84); +lean_dec(x_82); +x_85 = lean_alloc_ctor(0, 5, 0); +lean_ctor_set(x_85, 0, x_76); +lean_ctor_set(x_85, 1, x_77); +lean_ctor_set(x_85, 2, x_83); +lean_ctor_set(x_85, 3, x_79); +lean_ctor_set(x_85, 4, x_80); x_4 = x_12; -x_5 = x_80; -x_6 = x_79; +x_5 = x_85; +x_6 = x_84; goto _start; } else { -lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; -lean_dec(x_75); -lean_dec(x_73); -lean_dec(x_72); +lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; +lean_dec(x_80); +lean_dec(x_79); +lean_dec(x_77); +lean_dec(x_76); lean_dec(x_12); lean_dec(x_1); -x_82 = lean_ctor_get(x_77, 0); -lean_inc(x_82); -x_83 = lean_ctor_get(x_77, 1); -lean_inc(x_83); -if (lean_is_exclusive(x_77)) { - lean_ctor_release(x_77, 0); - lean_ctor_release(x_77, 1); - x_84 = x_77; +x_87 = lean_ctor_get(x_82, 0); +lean_inc(x_87); +x_88 = lean_ctor_get(x_82, 1); +lean_inc(x_88); +if (lean_is_exclusive(x_82)) { + lean_ctor_release(x_82, 0); + lean_ctor_release(x_82, 1); + x_89 = x_82; } else { - lean_dec_ref(x_77); - x_84 = lean_box(0); + lean_dec_ref(x_82); + x_89 = lean_box(0); } -if (lean_is_scalar(x_84)) { - x_85 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_89)) { + x_90 = lean_alloc_ctor(1, 2, 0); } else { - x_85 = x_84; + x_90 = x_89; } -lean_ctor_set(x_85, 0, x_82); -lean_ctor_set(x_85, 1, x_83); -return x_85; +lean_ctor_set(x_90, 0, x_87); +lean_ctor_set(x_90, 1, x_88); +return x_90; } } } default: { -lean_object* x_86; lean_object* x_87; uint8_t x_88; -x_86 = lean_ctor_get(x_10, 0); -lean_inc(x_86); -x_87 = lean_ctor_get(x_10, 1); -lean_inc(x_87); -lean_dec(x_10); -x_88 = !lean_is_exclusive(x_5); -if (x_88 == 0) -{ -lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; -x_89 = lean_ctor_get(x_5, 0); -x_90 = lean_ctor_get(x_5, 1); -x_91 = lean_ctor_get(x_5, 2); -x_92 = lean_ctor_get(x_5, 3); -lean_inc(x_87); +lean_object* x_91; lean_object* x_92; uint8_t x_93; +x_91 = lean_ctor_get(x_10, 0); lean_inc(x_91); -lean_inc(x_1); -x_93 = l_Lean_Parser_mkParserOfConstantUnsafe(x_1, x_91, x_87); -if (lean_obj_tag(x_93) == 0) +x_92 = lean_ctor_get(x_10, 1); +lean_inc(x_92); +lean_dec(x_10); +x_93 = !lean_is_exclusive(x_5); +if (x_93 == 0) { -lean_object* x_94; lean_object* x_95; lean_object* x_96; +lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; +x_94 = lean_ctor_get(x_5, 0); +x_95 = lean_ctor_get(x_5, 1); +x_96 = lean_ctor_get(x_5, 2); +x_97 = lean_ctor_get(x_5, 3); +x_98 = lean_ctor_get(x_5, 4); +lean_inc(x_92); +lean_inc(x_96); +lean_inc(x_1); +x_99 = l_Lean_Parser_mkParserOfConstantUnsafe(x_1, x_96, x_92); +if (lean_obj_tag(x_99) == 0) +{ +lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_free_object(x_5); +lean_dec(x_98); +lean_dec(x_97); +lean_dec(x_96); +lean_dec(x_95); +lean_dec(x_94); lean_dec(x_92); lean_dec(x_91); -lean_dec(x_90); -lean_dec(x_89); -lean_dec(x_87); -lean_dec(x_86); lean_dec(x_12); lean_dec(x_1); -x_94 = lean_ctor_get(x_93, 0); -lean_inc(x_94); -lean_dec(x_93); -x_95 = lean_alloc_ctor(18, 1, 0); -lean_ctor_set(x_95, 0, x_94); -x_96 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_96, 0, x_95); -lean_ctor_set(x_96, 1, x_6); -return x_96; +x_100 = lean_ctor_get(x_99, 0); +lean_inc(x_100); +lean_dec(x_99); +x_101 = lean_alloc_ctor(18, 1, 0); +lean_ctor_set(x_101, 0, x_100); +x_102 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_102, 0, x_101); +lean_ctor_set(x_102, 1, x_6); +return x_102; } else { -lean_object* x_97; lean_object* x_98; lean_object* x_99; uint8_t x_100; lean_object* x_101; -x_97 = lean_ctor_get(x_93, 0); -lean_inc(x_97); -lean_dec(x_93); -x_98 = lean_ctor_get(x_97, 0); -lean_inc(x_98); -x_99 = lean_ctor_get(x_97, 1); -lean_inc(x_99); -lean_dec(x_97); -x_100 = lean_unbox(x_98); -lean_dec(x_98); -x_101 = l_Lean_Parser_addParser(x_100, x_91, x_86, x_87, x_99); -if (lean_obj_tag(x_101) == 0) -{ -lean_object* x_102; lean_object* x_103; lean_object* x_104; -lean_free_object(x_5); -lean_dec(x_92); -lean_dec(x_90); -lean_dec(x_89); -lean_dec(x_12); -lean_dec(x_1); -x_102 = lean_ctor_get(x_101, 0); -lean_inc(x_102); -lean_dec(x_101); -x_103 = lean_alloc_ctor(18, 1, 0); -lean_ctor_set(x_103, 0, x_102); -x_104 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_104, 0, x_103); -lean_ctor_set(x_104, 1, x_6); -return x_104; -} -else -{ -lean_object* x_105; -x_105 = lean_ctor_get(x_101, 0); +lean_object* x_103; lean_object* x_104; lean_object* x_105; uint8_t x_106; lean_object* x_107; +x_103 = lean_ctor_get(x_99, 0); +lean_inc(x_103); +lean_dec(x_99); +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_101); -lean_ctor_set(x_5, 2, x_105); +lean_dec(x_103); +x_106 = lean_unbox(x_104); +lean_dec(x_104); +x_107 = l_Lean_Parser_addParser(x_106, x_96, x_91, x_92, x_105); +if (lean_obj_tag(x_107) == 0) +{ +lean_object* x_108; lean_object* x_109; lean_object* x_110; +lean_free_object(x_5); +lean_dec(x_98); +lean_dec(x_97); +lean_dec(x_95); +lean_dec(x_94); +lean_dec(x_12); +lean_dec(x_1); +x_108 = lean_ctor_get(x_107, 0); +lean_inc(x_108); +lean_dec(x_107); +x_109 = lean_alloc_ctor(18, 1, 0); +lean_ctor_set(x_109, 0, x_108); +x_110 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_110, 0, x_109); +lean_ctor_set(x_110, 1, x_6); +return x_110; +} +else +{ +lean_object* x_111; +x_111 = lean_ctor_get(x_107, 0); +lean_inc(x_111); +lean_dec(x_107); +lean_ctor_set(x_5, 2, x_111); x_4 = x_12; goto _start; } @@ -31295,86 +31336,91 @@ goto _start; } else { -lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; -x_107 = lean_ctor_get(x_5, 0); -x_108 = lean_ctor_get(x_5, 1); -x_109 = lean_ctor_get(x_5, 2); -x_110 = lean_ctor_get(x_5, 3); -lean_inc(x_110); -lean_inc(x_109); -lean_inc(x_108); -lean_inc(x_107); -lean_dec(x_5); -lean_inc(x_87); -lean_inc(x_109); -lean_inc(x_1); -x_111 = l_Lean_Parser_mkParserOfConstantUnsafe(x_1, x_109, x_87); -if (lean_obj_tag(x_111) == 0) -{ -lean_object* x_112; lean_object* x_113; lean_object* x_114; -lean_dec(x_110); -lean_dec(x_109); -lean_dec(x_108); -lean_dec(x_107); -lean_dec(x_87); -lean_dec(x_86); -lean_dec(x_12); -lean_dec(x_1); -x_112 = lean_ctor_get(x_111, 0); -lean_inc(x_112); -lean_dec(x_111); -x_113 = lean_alloc_ctor(18, 1, 0); -lean_ctor_set(x_113, 0, x_112); -x_114 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_114, 0, x_113); -lean_ctor_set(x_114, 1, x_6); -return x_114; -} -else -{ -lean_object* x_115; lean_object* x_116; lean_object* x_117; uint8_t x_118; lean_object* x_119; -x_115 = lean_ctor_get(x_111, 0); -lean_inc(x_115); -lean_dec(x_111); -x_116 = lean_ctor_get(x_115, 0); -lean_inc(x_116); -x_117 = lean_ctor_get(x_115, 1); +lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; +x_113 = lean_ctor_get(x_5, 0); +x_114 = lean_ctor_get(x_5, 1); +x_115 = lean_ctor_get(x_5, 2); +x_116 = lean_ctor_get(x_5, 3); +x_117 = lean_ctor_get(x_5, 4); lean_inc(x_117); -lean_dec(x_115); -x_118 = lean_unbox(x_116); -lean_dec(x_116); -x_119 = l_Lean_Parser_addParser(x_118, x_109, x_86, x_87, x_117); -if (lean_obj_tag(x_119) == 0) +lean_inc(x_116); +lean_inc(x_115); +lean_inc(x_114); +lean_inc(x_113); +lean_dec(x_5); +lean_inc(x_92); +lean_inc(x_115); +lean_inc(x_1); +x_118 = l_Lean_Parser_mkParserOfConstantUnsafe(x_1, x_115, x_92); +if (lean_obj_tag(x_118) == 0) { -lean_object* x_120; lean_object* x_121; lean_object* x_122; -lean_dec(x_110); -lean_dec(x_108); -lean_dec(x_107); +lean_object* x_119; lean_object* x_120; lean_object* x_121; +lean_dec(x_117); +lean_dec(x_116); +lean_dec(x_115); +lean_dec(x_114); +lean_dec(x_113); +lean_dec(x_92); +lean_dec(x_91); lean_dec(x_12); lean_dec(x_1); -x_120 = lean_ctor_get(x_119, 0); -lean_inc(x_120); -lean_dec(x_119); -x_121 = lean_alloc_ctor(18, 1, 0); +x_119 = lean_ctor_get(x_118, 0); +lean_inc(x_119); +lean_dec(x_118); +x_120 = lean_alloc_ctor(18, 1, 0); +lean_ctor_set(x_120, 0, x_119); +x_121 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_121, 0, x_120); -x_122 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_122, 0, x_121); -lean_ctor_set(x_122, 1, x_6); -return x_122; +lean_ctor_set(x_121, 1, x_6); +return x_121; } else { -lean_object* x_123; lean_object* x_124; -x_123 = lean_ctor_get(x_119, 0); +lean_object* x_122; lean_object* x_123; lean_object* x_124; uint8_t x_125; lean_object* x_126; +x_122 = lean_ctor_get(x_118, 0); +lean_inc(x_122); +lean_dec(x_118); +x_123 = lean_ctor_get(x_122, 0); lean_inc(x_123); -lean_dec(x_119); -x_124 = lean_alloc_ctor(0, 4, 0); -lean_ctor_set(x_124, 0, x_107); -lean_ctor_set(x_124, 1, x_108); -lean_ctor_set(x_124, 2, x_123); -lean_ctor_set(x_124, 3, x_110); +x_124 = lean_ctor_get(x_122, 1); +lean_inc(x_124); +lean_dec(x_122); +x_125 = lean_unbox(x_123); +lean_dec(x_123); +x_126 = l_Lean_Parser_addParser(x_125, x_115, x_91, x_92, x_124); +if (lean_obj_tag(x_126) == 0) +{ +lean_object* x_127; lean_object* x_128; lean_object* x_129; +lean_dec(x_117); +lean_dec(x_116); +lean_dec(x_114); +lean_dec(x_113); +lean_dec(x_12); +lean_dec(x_1); +x_127 = lean_ctor_get(x_126, 0); +lean_inc(x_127); +lean_dec(x_126); +x_128 = lean_alloc_ctor(18, 1, 0); +lean_ctor_set(x_128, 0, x_127); +x_129 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_129, 0, x_128); +lean_ctor_set(x_129, 1, x_6); +return x_129; +} +else +{ +lean_object* x_130; lean_object* x_131; +x_130 = lean_ctor_get(x_126, 0); +lean_inc(x_130); +lean_dec(x_126); +x_131 = lean_alloc_ctor(0, 5, 0); +lean_ctor_set(x_131, 0, x_113); +lean_ctor_set(x_131, 1, x_114); +lean_ctor_set(x_131, 2, x_130); +lean_ctor_set(x_131, 3, x_116); +lean_ctor_set(x_131, 4, x_117); x_4 = x_12; -x_5 = x_124; +x_5 = x_131; goto _start; } } @@ -32574,6 +32620,316 @@ lean_dec(x_1); return x_3; } } +uint8_t l_PersistentHashMap_containsAtAux___main___at_Lean_Parser_mkFreshKindAux___main___spec__3(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; uint8_t x_5; +x_4 = lean_array_get_size(x_1); +x_5 = lean_nat_dec_lt(x_2, x_4); +lean_dec(x_4); +if (x_5 == 0) +{ +uint8_t x_6; +lean_dec(x_2); +x_6 = 0; +return x_6; +} +else +{ +lean_object* x_7; uint8_t x_8; +x_7 = lean_array_fget(x_1, x_2); +x_8 = lean_name_eq(x_3, x_7); +lean_dec(x_7); +if (x_8 == 0) +{ +lean_object* x_9; lean_object* x_10; +x_9 = lean_unsigned_to_nat(1u); +x_10 = lean_nat_add(x_2, x_9); +lean_dec(x_2); +x_2 = x_10; +goto _start; +} +else +{ +uint8_t x_12; +lean_dec(x_2); +x_12 = 1; +return x_12; +} +} +} +} +uint8_t l_PersistentHashMap_containsAux___main___at_Lean_Parser_mkFreshKindAux___main___spec__2(lean_object* x_1, size_t x_2, lean_object* x_3) { +_start: +{ +if (lean_obj_tag(x_1) == 0) +{ +lean_object* x_4; size_t x_5; size_t x_6; size_t x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; +x_4 = lean_ctor_get(x_1, 0); +lean_inc(x_4); +lean_dec(x_1); +x_5 = 5; +x_6 = l_PersistentHashMap_insertAux___main___rarg___closed__2; +x_7 = x_2 & x_6; +x_8 = lean_usize_to_nat(x_7); +x_9 = lean_box(2); +x_10 = lean_array_get(x_9, x_4, x_8); +lean_dec(x_8); +lean_dec(x_4); +switch (lean_obj_tag(x_10)) { +case 0: +{ +lean_object* x_11; uint8_t x_12; +x_11 = lean_ctor_get(x_10, 0); +lean_inc(x_11); +lean_dec(x_10); +x_12 = lean_name_eq(x_3, x_11); +lean_dec(x_11); +return x_12; +} +case 1: +{ +lean_object* x_13; size_t x_14; +x_13 = lean_ctor_get(x_10, 0); +lean_inc(x_13); +lean_dec(x_10); +x_14 = x_2 >> x_5; +x_1 = x_13; +x_2 = x_14; +goto _start; +} +default: +{ +uint8_t x_16; +x_16 = 0; +return x_16; +} +} +} +else +{ +lean_object* x_17; lean_object* x_18; uint8_t x_19; +x_17 = lean_ctor_get(x_1, 0); +lean_inc(x_17); +lean_dec(x_1); +x_18 = lean_unsigned_to_nat(0u); +x_19 = l_PersistentHashMap_containsAtAux___main___at_Lean_Parser_mkFreshKindAux___main___spec__3(x_17, x_18, x_3); +lean_dec(x_17); +return x_19; +} +} +} +uint8_t l_PersistentHashMap_contains___at_Lean_Parser_mkFreshKindAux___main___spec__1(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; size_t x_4; uint8_t x_5; +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_PersistentHashMap_containsAux___main___at_Lean_Parser_mkFreshKindAux___main___spec__2(x_3, x_4, x_2); +return x_5; +} +} +lean_object* l_Lean_Parser_mkFreshKindAux___main(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; uint8_t x_5; +lean_inc(x_3); +lean_inc(x_2); +x_4 = l_Lean_Name_appendIndexAfter(x_2, x_3); +lean_inc(x_1); +x_5 = l_PersistentHashMap_contains___at_Lean_Parser_mkFreshKindAux___main___spec__1(x_1, x_4); +if (x_5 == 0) +{ +lean_object* x_6; +lean_dec(x_2); +lean_dec(x_1); +x_6 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_6, 0, x_4); +lean_ctor_set(x_6, 1, x_3); +return x_6; +} +else +{ +lean_object* x_7; lean_object* x_8; +lean_dec(x_4); +x_7 = lean_unsigned_to_nat(1u); +x_8 = lean_nat_add(x_3, x_7); +lean_dec(x_3); +x_3 = x_8; +goto _start; +} +} +} +lean_object* l_PersistentHashMap_containsAtAux___main___at_Lean_Parser_mkFreshKindAux___main___spec__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +uint8_t x_4; lean_object* x_5; +x_4 = l_PersistentHashMap_containsAtAux___main___at_Lean_Parser_mkFreshKindAux___main___spec__3(x_1, x_2, x_3); +lean_dec(x_3); +lean_dec(x_1); +x_5 = lean_box(x_4); +return x_5; +} +} +lean_object* l_PersistentHashMap_containsAux___main___at_Lean_Parser_mkFreshKindAux___main___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_PersistentHashMap_containsAux___main___at_Lean_Parser_mkFreshKindAux___main___spec__2(x_1, x_4, x_3); +lean_dec(x_3); +x_6 = lean_box(x_5); +return x_6; +} +} +lean_object* l_PersistentHashMap_contains___at_Lean_Parser_mkFreshKindAux___main___spec__1___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +uint8_t x_3; lean_object* x_4; +x_3 = l_PersistentHashMap_contains___at_Lean_Parser_mkFreshKindAux___main___spec__1(x_1, x_2); +lean_dec(x_2); +x_4 = lean_box(x_3); +return x_4; +} +} +lean_object* l_Lean_Parser_mkFreshKindAux(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; +x_4 = l_Lean_Parser_mkFreshKindAux___main(x_1, x_2, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_mkFreshKind___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("_kind"); +return x_1; +} +} +lean_object* _init_l_Lean_Parser_mkFreshKind___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Parser_mkFreshKind___closed__1; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +lean_object* l_Lean_Parser_mkFreshKind(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; lean_object* x_4; uint8_t x_5; +x_3 = l_Lean_Parser_parserExtension; +x_4 = l_Lean_PersistentEnvExtension_getState___rarg(x_3, x_1); +x_5 = !lean_is_exclusive(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_ctor_get(x_4, 1); +x_7 = lean_ctor_get(x_4, 4); +lean_inc(x_1); +x_8 = lean_environment_main_module(x_1); +x_9 = l_Lean_Parser_mkFreshKind___closed__2; +x_10 = l_Lean_Name_append___main(x_9, x_8); +x_11 = l_Lean_Name_append___main(x_10, x_2); +lean_dec(x_10); +lean_inc(x_6); +x_12 = l_Lean_Parser_mkFreshKindAux___main(x_6, x_11, x_7); +x_13 = !lean_is_exclusive(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; +x_14 = lean_ctor_get(x_12, 0); +x_15 = lean_ctor_get(x_12, 1); +x_16 = lean_unsigned_to_nat(1u); +x_17 = lean_nat_add(x_15, x_16); +lean_dec(x_15); +lean_ctor_set(x_4, 4, x_17); +x_18 = l_Lean_PersistentEnvExtension_setState___rarg(x_3, x_1, x_4); +lean_ctor_set(x_12, 1, x_14); +lean_ctor_set(x_12, 0, x_18); +return x_12; +} +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; +x_19 = lean_ctor_get(x_12, 0); +x_20 = lean_ctor_get(x_12, 1); +lean_inc(x_20); +lean_inc(x_19); +lean_dec(x_12); +x_21 = lean_unsigned_to_nat(1u); +x_22 = lean_nat_add(x_20, x_21); +lean_dec(x_20); +lean_ctor_set(x_4, 4, x_22); +x_23 = l_Lean_PersistentEnvExtension_setState___rarg(x_3, x_1, x_4); +x_24 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_24, 0, x_23); +lean_ctor_set(x_24, 1, x_19); +return x_24; +} +} +else +{ +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; +x_25 = lean_ctor_get(x_4, 0); +x_26 = lean_ctor_get(x_4, 1); +x_27 = lean_ctor_get(x_4, 2); +x_28 = lean_ctor_get(x_4, 3); +x_29 = lean_ctor_get(x_4, 4); +lean_inc(x_29); +lean_inc(x_28); +lean_inc(x_27); +lean_inc(x_26); +lean_inc(x_25); +lean_dec(x_4); +lean_inc(x_1); +x_30 = lean_environment_main_module(x_1); +x_31 = l_Lean_Parser_mkFreshKind___closed__2; +x_32 = l_Lean_Name_append___main(x_31, x_30); +x_33 = l_Lean_Name_append___main(x_32, x_2); +lean_dec(x_32); +lean_inc(x_26); +x_34 = l_Lean_Parser_mkFreshKindAux___main(x_26, x_33, x_29); +x_35 = lean_ctor_get(x_34, 0); +lean_inc(x_35); +x_36 = lean_ctor_get(x_34, 1); +lean_inc(x_36); +if (lean_is_exclusive(x_34)) { + lean_ctor_release(x_34, 0); + lean_ctor_release(x_34, 1); + x_37 = x_34; +} else { + lean_dec_ref(x_34); + x_37 = lean_box(0); +} +x_38 = lean_unsigned_to_nat(1u); +x_39 = lean_nat_add(x_36, x_38); +lean_dec(x_36); +x_40 = lean_alloc_ctor(0, 5, 0); +lean_ctor_set(x_40, 0, x_25); +lean_ctor_set(x_40, 1, x_26); +lean_ctor_set(x_40, 2, x_27); +lean_ctor_set(x_40, 3, x_28); +lean_ctor_set(x_40, 4, x_39); +x_41 = l_Lean_PersistentEnvExtension_setState___rarg(x_3, x_1, x_40); +if (lean_is_scalar(x_37)) { + x_42 = lean_alloc_ctor(0, 2, 0); +} else { + x_42 = x_37; +} +lean_ctor_set(x_42, 0, x_41); +lean_ctor_set(x_42, 1, x_35); +return x_42; +} +} +} uint8_t l_Lean_Parser_isParserCategory(lean_object* x_1, lean_object* x_2) { _start: { @@ -32767,117 +33123,6 @@ x_5 = l_Lean_PersistentEnvExtension_addEntry___rarg(x_4, x_1, x_3); return x_5; } } -uint8_t l_PersistentHashMap_containsAtAux___main___at_Lean_Parser_isValidSyntaxNodeKind___spec__3(lean_object* x_1, lean_object* x_2, lean_object* x_3) { -_start: -{ -lean_object* x_4; uint8_t x_5; -x_4 = lean_array_get_size(x_1); -x_5 = lean_nat_dec_lt(x_2, x_4); -lean_dec(x_4); -if (x_5 == 0) -{ -uint8_t x_6; -lean_dec(x_2); -x_6 = 0; -return x_6; -} -else -{ -lean_object* x_7; uint8_t x_8; -x_7 = lean_array_fget(x_1, x_2); -x_8 = lean_name_eq(x_3, x_7); -lean_dec(x_7); -if (x_8 == 0) -{ -lean_object* x_9; lean_object* x_10; -x_9 = lean_unsigned_to_nat(1u); -x_10 = lean_nat_add(x_2, x_9); -lean_dec(x_2); -x_2 = x_10; -goto _start; -} -else -{ -uint8_t x_12; -lean_dec(x_2); -x_12 = 1; -return x_12; -} -} -} -} -uint8_t l_PersistentHashMap_containsAux___main___at_Lean_Parser_isValidSyntaxNodeKind___spec__2(lean_object* x_1, size_t x_2, lean_object* x_3) { -_start: -{ -if (lean_obj_tag(x_1) == 0) -{ -lean_object* x_4; size_t x_5; size_t x_6; size_t x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; -x_4 = lean_ctor_get(x_1, 0); -lean_inc(x_4); -lean_dec(x_1); -x_5 = 5; -x_6 = l_PersistentHashMap_insertAux___main___rarg___closed__2; -x_7 = x_2 & x_6; -x_8 = lean_usize_to_nat(x_7); -x_9 = lean_box(2); -x_10 = lean_array_get(x_9, x_4, x_8); -lean_dec(x_8); -lean_dec(x_4); -switch (lean_obj_tag(x_10)) { -case 0: -{ -lean_object* x_11; uint8_t x_12; -x_11 = lean_ctor_get(x_10, 0); -lean_inc(x_11); -lean_dec(x_10); -x_12 = lean_name_eq(x_3, x_11); -lean_dec(x_11); -return x_12; -} -case 1: -{ -lean_object* x_13; size_t x_14; -x_13 = lean_ctor_get(x_10, 0); -lean_inc(x_13); -lean_dec(x_10); -x_14 = x_2 >> x_5; -x_1 = x_13; -x_2 = x_14; -goto _start; -} -default: -{ -uint8_t x_16; -x_16 = 0; -return x_16; -} -} -} -else -{ -lean_object* x_17; lean_object* x_18; uint8_t x_19; -x_17 = lean_ctor_get(x_1, 0); -lean_inc(x_17); -lean_dec(x_1); -x_18 = lean_unsigned_to_nat(0u); -x_19 = l_PersistentHashMap_containsAtAux___main___at_Lean_Parser_isValidSyntaxNodeKind___spec__3(x_17, x_18, x_3); -lean_dec(x_17); -return x_19; -} -} -} -uint8_t l_PersistentHashMap_contains___at_Lean_Parser_isValidSyntaxNodeKind___spec__1(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; size_t x_4; uint8_t x_5; -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_PersistentHashMap_containsAux___main___at_Lean_Parser_isValidSyntaxNodeKind___spec__2(x_3, x_4, x_2); -return x_5; -} -} uint8_t l_Lean_Parser_isValidSyntaxNodeKind(lean_object* x_1, lean_object* x_2) { _start: { @@ -32887,7 +33132,7 @@ x_4 = l_Lean_PersistentEnvExtension_getState___rarg(x_3, x_1); x_5 = lean_ctor_get(x_4, 1); lean_inc(x_5); lean_dec(x_4); -x_6 = l_PersistentHashMap_contains___at_Lean_Parser_isValidSyntaxNodeKind___spec__1(x_5, x_2); +x_6 = l_PersistentHashMap_contains___at_Lean_Parser_mkFreshKindAux___main___spec__1(x_5, x_2); if (x_6 == 0) { lean_object* x_7; uint8_t x_8; @@ -32903,39 +33148,6 @@ return x_9; } } } -lean_object* l_PersistentHashMap_containsAtAux___main___at_Lean_Parser_isValidSyntaxNodeKind___spec__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { -_start: -{ -uint8_t x_4; lean_object* x_5; -x_4 = l_PersistentHashMap_containsAtAux___main___at_Lean_Parser_isValidSyntaxNodeKind___spec__3(x_1, x_2, x_3); -lean_dec(x_3); -lean_dec(x_1); -x_5 = lean_box(x_4); -return x_5; -} -} -lean_object* l_PersistentHashMap_containsAux___main___at_Lean_Parser_isValidSyntaxNodeKind___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_PersistentHashMap_containsAux___main___at_Lean_Parser_isValidSyntaxNodeKind___spec__2(x_1, x_4, x_3); -lean_dec(x_3); -x_6 = lean_box(x_5); -return x_6; -} -} -lean_object* l_PersistentHashMap_contains___at_Lean_Parser_isValidSyntaxNodeKind___spec__1___boxed(lean_object* x_1, lean_object* x_2) { -_start: -{ -uint8_t x_3; lean_object* x_4; -x_3 = l_PersistentHashMap_contains___at_Lean_Parser_isValidSyntaxNodeKind___spec__1(x_1, x_2); -lean_dec(x_2); -x_4 = lean_box(x_3); -return x_4; -} -} lean_object* l_Lean_Parser_isValidSyntaxNodeKind___boxed(lean_object* x_1, lean_object* x_2) { _start: { @@ -35967,304 +36179,6 @@ x_3 = l_Lean_Parser_fieldIdx(x_2); return x_3; } } -lean_object* l_Lean_Parser_unicodeInfixR___elambda__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_inc(x_2); -lean_inc(x_4); -x_5 = l_Lean_Parser_ParserState_pushSyntax(x_4, x_2); -x_6 = lean_ctor_get(x_4, 3); -lean_inc(x_6); -lean_dec(x_4); -if (lean_obj_tag(x_6) == 0) -{ -lean_object* x_7; -x_7 = lean_apply_3(x_1, x_2, x_3, x_5); -return x_7; -} -else -{ -lean_dec(x_6); -lean_dec(x_3); -lean_dec(x_2); -lean_dec(x_1); -return x_5; -} -} -} -lean_object* l_Lean_Parser_unicodeInfixR(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; uint8_t 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_inc(x_3); -x_4 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_4, 0, x_3); -x_5 = l_String_trim(x_1); -x_6 = l_String_trim(x_2); -lean_inc(x_6); -lean_inc(x_5); -x_7 = l_Lean_Parser_unicodeSymbolInfo(x_5, x_6, x_4); -x_8 = lean_alloc_closure((void*)(l_Lean_Parser_unicodeSymbolFn___rarg___boxed), 5, 2); -lean_closure_set(x_8, 0, x_5); -lean_closure_set(x_8, 1, x_6); -x_9 = lean_unsigned_to_nat(1u); -x_10 = lean_nat_sub(x_3, x_9); -lean_dec(x_3); -x_11 = 1; -x_12 = l_Lean_Parser_regBuiltinTermParserAttr___closed__4; -lean_inc(x_10); -x_13 = l_Lean_Parser_categoryParser(x_11, x_12, x_10); -x_14 = lean_ctor_get(x_13, 0); -lean_inc(x_14); -lean_dec(x_13); -x_15 = l_Lean_Parser_andthenInfo(x_7, x_14); -x_16 = lean_alloc_closure((void*)(l_Lean_Parser_categoryParser___elambda__1___rarg___boxed), 5, 2); -lean_closure_set(x_16, 0, x_12); -lean_closure_set(x_16, 1, x_10); -x_17 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn___rarg), 5, 2); -lean_closure_set(x_17, 0, x_8); -lean_closure_set(x_17, 1, x_16); -x_18 = l_Lean_Parser_epsilonInfo; -x_19 = l_Lean_Parser_andthenInfo(x_18, x_15); -x_20 = lean_alloc_closure((void*)(l_Lean_Parser_unicodeInfixR___elambda__1), 4, 1); -lean_closure_set(x_20, 0, x_17); -x_21 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_21, 0, x_19); -lean_ctor_set(x_21, 1, x_20); -return x_21; -} -} -lean_object* l_Lean_Parser_unicodeInfixR___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { -_start: -{ -lean_object* x_4; -x_4 = l_Lean_Parser_unicodeInfixR(x_1, x_2, x_3); -lean_dec(x_2); -lean_dec(x_1); -return x_4; -} -} -lean_object* l_Lean_Parser_infixR___elambda__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_inc(x_2); -lean_inc(x_4); -x_5 = l_Lean_Parser_ParserState_pushSyntax(x_4, x_2); -x_6 = lean_ctor_get(x_4, 3); -lean_inc(x_6); -lean_dec(x_4); -if (lean_obj_tag(x_6) == 0) -{ -lean_object* x_7; -x_7 = lean_apply_3(x_1, x_2, x_3, x_5); -return x_7; -} -else -{ -lean_dec(x_6); -lean_dec(x_3); -lean_dec(x_2); -lean_dec(x_1); -return x_5; -} -} -} -lean_object* l_Lean_Parser_infixR(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; uint8_t x_9; 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_inc(x_2); -x_3 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_3, 0, x_2); -x_4 = l_String_trim(x_1); -lean_inc(x_4); -x_5 = l_Lean_Parser_symbolInfo(x_4, x_3); -x_6 = lean_alloc_closure((void*)(l_Lean_Parser_symbolFn___rarg___boxed), 4, 1); -lean_closure_set(x_6, 0, x_4); -x_7 = lean_unsigned_to_nat(1u); -x_8 = lean_nat_sub(x_2, x_7); -lean_dec(x_2); -x_9 = 1; -x_10 = l_Lean_Parser_regBuiltinTermParserAttr___closed__4; -lean_inc(x_8); -x_11 = l_Lean_Parser_categoryParser(x_9, x_10, x_8); -x_12 = lean_ctor_get(x_11, 0); -lean_inc(x_12); -lean_dec(x_11); -x_13 = l_Lean_Parser_andthenInfo(x_5, x_12); -x_14 = lean_alloc_closure((void*)(l_Lean_Parser_categoryParser___elambda__1___rarg___boxed), 5, 2); -lean_closure_set(x_14, 0, x_10); -lean_closure_set(x_14, 1, x_8); -x_15 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn___rarg), 5, 2); -lean_closure_set(x_15, 0, x_6); -lean_closure_set(x_15, 1, x_14); -x_16 = l_Lean_Parser_epsilonInfo; -x_17 = l_Lean_Parser_andthenInfo(x_16, x_13); -x_18 = lean_alloc_closure((void*)(l_Lean_Parser_infixR___elambda__1), 4, 1); -lean_closure_set(x_18, 0, x_15); -x_19 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_19, 0, x_17); -lean_ctor_set(x_19, 1, x_18); -return x_19; -} -} -lean_object* l_Lean_Parser_infixR___boxed(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; -x_3 = l_Lean_Parser_infixR(x_1, x_2); -lean_dec(x_1); -return x_3; -} -} -lean_object* l_Lean_Parser_unicodeInfixL___elambda__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_inc(x_2); -lean_inc(x_4); -x_5 = l_Lean_Parser_ParserState_pushSyntax(x_4, x_2); -x_6 = lean_ctor_get(x_4, 3); -lean_inc(x_6); -lean_dec(x_4); -if (lean_obj_tag(x_6) == 0) -{ -lean_object* x_7; -x_7 = lean_apply_3(x_1, x_2, x_3, x_5); -return x_7; -} -else -{ -lean_dec(x_6); -lean_dec(x_3); -lean_dec(x_2); -lean_dec(x_1); -return x_5; -} -} -} -lean_object* l_Lean_Parser_unicodeInfixL(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; uint8_t 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_inc(x_3); -x_4 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_4, 0, x_3); -x_5 = l_String_trim(x_1); -x_6 = l_String_trim(x_2); -lean_inc(x_6); -lean_inc(x_5); -x_7 = l_Lean_Parser_unicodeSymbolInfo(x_5, x_6, x_4); -x_8 = lean_alloc_closure((void*)(l_Lean_Parser_unicodeSymbolFn___rarg___boxed), 5, 2); -lean_closure_set(x_8, 0, x_5); -lean_closure_set(x_8, 1, x_6); -x_9 = 1; -x_10 = l_Lean_Parser_regBuiltinTermParserAttr___closed__4; -lean_inc(x_3); -x_11 = l_Lean_Parser_categoryParser(x_9, x_10, x_3); -x_12 = lean_ctor_get(x_11, 0); -lean_inc(x_12); -lean_dec(x_11); -x_13 = l_Lean_Parser_andthenInfo(x_7, x_12); -x_14 = lean_alloc_closure((void*)(l_Lean_Parser_categoryParser___elambda__1___rarg___boxed), 5, 2); -lean_closure_set(x_14, 0, x_10); -lean_closure_set(x_14, 1, x_3); -x_15 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn___rarg), 5, 2); -lean_closure_set(x_15, 0, x_8); -lean_closure_set(x_15, 1, x_14); -x_16 = l_Lean_Parser_epsilonInfo; -x_17 = l_Lean_Parser_andthenInfo(x_16, x_13); -x_18 = lean_alloc_closure((void*)(l_Lean_Parser_unicodeInfixL___elambda__1), 4, 1); -lean_closure_set(x_18, 0, x_15); -x_19 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_19, 0, x_17); -lean_ctor_set(x_19, 1, x_18); -return x_19; -} -} -lean_object* l_Lean_Parser_unicodeInfixL___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { -_start: -{ -lean_object* x_4; -x_4 = l_Lean_Parser_unicodeInfixL(x_1, x_2, x_3); -lean_dec(x_2); -lean_dec(x_1); -return x_4; -} -} -lean_object* l_Lean_Parser_infixL___elambda__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_inc(x_2); -lean_inc(x_4); -x_5 = l_Lean_Parser_ParserState_pushSyntax(x_4, x_2); -x_6 = lean_ctor_get(x_4, 3); -lean_inc(x_6); -lean_dec(x_4); -if (lean_obj_tag(x_6) == 0) -{ -lean_object* x_7; -x_7 = lean_apply_3(x_1, x_2, x_3, x_5); -return x_7; -} -else -{ -lean_dec(x_6); -lean_dec(x_3); -lean_dec(x_2); -lean_dec(x_1); -return x_5; -} -} -} -lean_object* l_Lean_Parser_infixL(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; 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; lean_object* x_16; lean_object* x_17; -lean_inc(x_2); -x_3 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_3, 0, x_2); -x_4 = l_String_trim(x_1); -lean_inc(x_4); -x_5 = l_Lean_Parser_symbolInfo(x_4, x_3); -x_6 = lean_alloc_closure((void*)(l_Lean_Parser_symbolFn___rarg___boxed), 4, 1); -lean_closure_set(x_6, 0, x_4); -x_7 = 1; -x_8 = l_Lean_Parser_regBuiltinTermParserAttr___closed__4; -lean_inc(x_2); -x_9 = l_Lean_Parser_categoryParser(x_7, x_8, x_2); -x_10 = lean_ctor_get(x_9, 0); -lean_inc(x_10); -lean_dec(x_9); -x_11 = l_Lean_Parser_andthenInfo(x_5, x_10); -x_12 = lean_alloc_closure((void*)(l_Lean_Parser_categoryParser___elambda__1___rarg___boxed), 5, 2); -lean_closure_set(x_12, 0, x_8); -lean_closure_set(x_12, 1, x_2); -x_13 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn___rarg), 5, 2); -lean_closure_set(x_13, 0, x_6); -lean_closure_set(x_13, 1, x_12); -x_14 = l_Lean_Parser_epsilonInfo; -x_15 = l_Lean_Parser_andthenInfo(x_14, x_11); -x_16 = lean_alloc_closure((void*)(l_Lean_Parser_infixL___elambda__1), 4, 1); -lean_closure_set(x_16, 0, x_13); -x_17 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_17, 0, x_15); -lean_ctor_set(x_17, 1, x_16); -return x_17; -} -} -lean_object* l_Lean_Parser_infixL___boxed(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; -x_3 = l_Lean_Parser_infixL(x_1, x_2); -lean_dec(x_1); -return x_3; -} -} uint8_t l_Lean_Syntax_isNone(lean_object* x_1) { _start: { @@ -37623,6 +37537,10 @@ if (lean_io_result_is_error(res)) return res; l_Lean_Parser_parserExtension = lean_io_result_get_value(res); lean_mark_persistent(l_Lean_Parser_parserExtension); lean_dec_ref(res); +l_Lean_Parser_mkFreshKind___closed__1 = _init_l_Lean_Parser_mkFreshKind___closed__1(); +lean_mark_persistent(l_Lean_Parser_mkFreshKind___closed__1); +l_Lean_Parser_mkFreshKind___closed__2 = _init_l_Lean_Parser_mkFreshKind___closed__2(); +lean_mark_persistent(l_Lean_Parser_mkFreshKind___closed__2); l_Lean_Parser_setCategoryParserFnRef___closed__1 = _init_l_Lean_Parser_setCategoryParserFnRef___closed__1(); lean_mark_persistent(l_Lean_Parser_setCategoryParserFnRef___closed__1); res = l_Lean_Parser_setCategoryParserFnRef(lean_io_mk_world()); diff --git a/stage0/stdlib/Init/Lean/Parser/Syntax.c b/stage0/stdlib/Init/Lean/Parser/Syntax.c index dca9b3c889..9c04190604 100644 --- a/stage0/stdlib/Init/Lean/Parser/Syntax.c +++ b/stage0/stdlib/Init/Lean/Parser/Syntax.c @@ -14,8 +14,8 @@ extern "C" { #endif lean_object* l_Lean_Parser_Command_syntax___elambda__1___closed__6; -extern lean_object* l_Lean_Parser_Term_orelse___elambda__1___closed__4; lean_object* l_Lean_Parser_Syntax_cat___closed__6; +lean_object* l_Lean_Parser_Syntax_orelse___closed__5; lean_object* l_Lean_Parser_Syntax_many___elambda__1___closed__1; lean_object* l_Lean_Parser_Syntax_str___elambda__1(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Syntax_char; @@ -48,6 +48,7 @@ lean_object* l_Lean_Parser_Syntax_paren___elambda__1___closed__3; lean_object* l_Lean_Parser_Syntax_sepBy___closed__3; lean_object* l_Lean_Parser_Syntax_ident___elambda__1___closed__6; lean_object* l_Lean_Parser_regBuiltinSyntaxParserAttr___closed__4; +lean_object* l_Lean_Parser_Syntax_orelse___elambda__1___closed__2; lean_object* l_Lean_Parser_Syntax_many___closed__1; lean_object* l_Lean_Parser_Syntax_optional___elambda__1___closed__7; lean_object* l_Lean_Parser_Syntax_many___closed__2; @@ -68,7 +69,6 @@ lean_object* l_Lean_Parser_Syntax_many___elambda__1___closed__3; lean_object* l_Lean_Parser_Syntax_str___closed__5; extern lean_object* l_Lean_Parser_Level_num___elambda__1___closed__1; extern lean_object* l_Lean_Parser_Term_typeAscription___elambda__1___closed__6; -lean_object* l_Lean_Parser_registerBuiltinDynamicParserAttribute(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Syntax_cat___closed__2; lean_object* l_Lean_Parser_addBuiltinParser(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_regBuiltinSyntaxParserAttr___closed__1; @@ -112,10 +112,9 @@ lean_object* l_Lean_Parser_Syntax_num; lean_object* l_Lean_Parser_Syntax_lookahead___elambda__1___closed__8; lean_object* l_Lean_Parser_Syntax_num___closed__3; lean_object* l_Lean_Parser_Syntax_try___closed__4; -lean_object* l_Lean_Parser_regSyntaxParserAttribute___closed__2; uint8_t lean_nat_dec_eq(lean_object*, lean_object*); +extern lean_object* l_Lean_Parser_Term_orelse___elambda__1___closed__3; lean_object* l_Lean_Parser_nonReservedSymbolFnAux(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_regSyntaxParserAttribute___closed__1; lean_object* l_Lean_Parser_Syntax_many1___closed__1; lean_object* l___regBuiltinParser_Lean_Parser_Syntax_lookahead(lean_object*); lean_object* l_Lean_Parser_nodeInfo(lean_object*, lean_object*); @@ -129,10 +128,12 @@ 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_Syntax_orelse___elambda__1___closed__4; 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_Syntax_try___elambda__1(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Syntax_ident___elambda__1(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Syntax_paren___elambda__1___closed__1; @@ -166,6 +167,7 @@ lean_object* l_Lean_Parser_Command_syntax___elambda__1___closed__5; extern lean_object* l_Lean_Parser_Level_paren___elambda__1___closed__11; lean_object* l_Lean_Parser_Syntax_char___elambda__1___closed__2; lean_object* l_Lean_Parser_Syntax_sepBy1___elambda__1___closed__5; +lean_object* l_Lean_Parser_Syntax_orelse___closed__6; lean_object* l_Lean_Parser_Syntax_char___closed__1; lean_object* l_Lean_Parser_Syntax_ident___elambda__1___closed__5; extern lean_object* l_Lean_Parser_Term_explicitBinder___closed__1; @@ -231,13 +233,13 @@ lean_object* l_Lean_Parser_Syntax_cat___elambda__1___closed__5; lean_object* l_Lean_Parser_Syntax_optional___closed__5; lean_object* l_Lean_Parser_Syntax_ident___closed__4; lean_object* l_Lean_Parser_Syntax_atom___elambda__1___closed__2; -lean_object* l_Lean_Parser_regSyntaxParserAttribute(lean_object*); lean_object* l_Lean_Parser_Syntax_lookahead___elambda__1(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_symbolInfo(lean_object*, lean_object*); extern lean_object* l___private_Init_Util_1__mkPanicMessage___closed__2; extern lean_object* l_Lean_Parser_epsilonInfo; lean_object* l_Lean_Parser_Syntax_ident___closed__1; extern lean_object* l_Lean_Parser_Term_typeAscription___closed__1; +lean_object* l_Lean_Parser_Syntax_orelse___closed__7; lean_object* l_Lean_Parser_Syntax_atom___elambda__1(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Syntax_str___elambda__1___closed__1; lean_object* l_Lean_Parser_regBuiltinSyntaxParserAttr___closed__3; @@ -290,6 +292,7 @@ lean_object* l_Lean_Parser_ParserState_mkUnexpectedError(lean_object*, lean_obje 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_orelse___elambda__1___closed__3; lean_object* l_Lean_Parser_Command_syntax___closed__2; lean_object* l___regBuiltinParser_Lean_Parser_Syntax_atom(lean_object*); lean_object* l_Lean_Parser_Syntax_optional___closed__2; @@ -307,7 +310,9 @@ lean_object* l___regBuiltinParser_Lean_Parser_Syntax_char(lean_object*); 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_Parser_Syntax_orelse___elambda__1___closed__5; extern lean_object* l_Lean_Parser_Term_orelse___elambda__1___closed__1; +lean_object* l_Lean_Parser_Syntax_orelse___closed__4; lean_object* l_Lean_Parser_Command_syntax___closed__8; lean_object* l_Lean_Parser_Syntax_num___elambda__1___closed__3; lean_object* l___regBuiltinParser_Lean_Parser_Syntax_many1(lean_object*); @@ -368,34 +373,6 @@ x_5 = l_Lean_Parser_registerBuiltinParserAttribute(x_2, x_3, x_4, x_1); return x_5; } } -lean_object* _init_l_Lean_Parser_regSyntaxParserAttribute___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("syntaxParser"); -return x_1; -} -} -lean_object* _init_l_Lean_Parser_regSyntaxParserAttribute___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l_Lean_Parser_regSyntaxParserAttribute___closed__1; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; -} -} -lean_object* l_Lean_Parser_regSyntaxParserAttribute(lean_object* x_1) { -_start: -{ -lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_2 = l_Lean_Parser_regSyntaxParserAttribute___closed__2; -x_3 = l_Lean_Parser_regBuiltinSyntaxParserAttr___closed__4; -x_4 = l_Lean_Parser_registerBuiltinDynamicParserAttribute(x_2, x_3, x_1); -return x_4; -} -} lean_object* l_Lean_Parser_syntaxParser(uint8_t x_1, lean_object* x_2) { _start: { @@ -1040,172 +1017,212 @@ x_20 = lean_ctor_get(x_19, 3); lean_inc(x_20); 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_60; lean_object* x_61; +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_62; lean_object* x_72; lean_object* x_73; x_21 = lean_ctor_get(x_19, 0); lean_inc(x_21); -x_22 = lean_array_get_size(x_21); +x_22 = lean_ctor_get(x_19, 1); +lean_inc(x_22); +x_23 = lean_array_get_size(x_21); lean_dec(x_21); -x_23 = lean_ctor_get(x_19, 1); -lean_inc(x_23); lean_inc(x_2); -x_60 = l_Lean_Parser_tokenFn(x_2, x_19); -x_61 = lean_ctor_get(x_60, 3); -lean_inc(x_61); -if (lean_obj_tag(x_61) == 0) +x_72 = l_Lean_Parser_tokenFn(x_2, x_19); +x_73 = lean_ctor_get(x_72, 3); +lean_inc(x_73); +if (lean_obj_tag(x_73) == 0) { -lean_object* x_62; lean_object* x_63; -x_62 = lean_ctor_get(x_60, 0); -lean_inc(x_62); -x_63 = l_Array_back___at___private_Init_Lean_Parser_Parser_6__updateCache___spec__1(x_62); -lean_dec(x_62); -if (lean_obj_tag(x_63) == 2) +lean_object* x_74; lean_object* x_75; +x_74 = lean_ctor_get(x_72, 0); +lean_inc(x_74); +x_75 = l_Array_back___at___private_Init_Lean_Parser_Parser_6__updateCache___spec__1(x_74); +lean_dec(x_74); +if (lean_obj_tag(x_75) == 2) { -lean_object* x_64; lean_object* x_65; uint8_t x_66; -x_64 = lean_ctor_get(x_63, 1); -lean_inc(x_64); -lean_dec(x_63); -x_65 = l_Lean_Parser_Syntax_cat___elambda__1___closed__5; -x_66 = lean_string_dec_eq(x_64, x_65); -lean_dec(x_64); -if (x_66 == 0) +lean_object* x_76; lean_object* x_77; uint8_t x_78; +x_76 = lean_ctor_get(x_75, 1); +lean_inc(x_76); +lean_dec(x_75); +x_77 = l_Lean_Parser_Syntax_cat___elambda__1___closed__5; +x_78 = lean_string_dec_eq(x_76, x_77); +lean_dec(x_76); +if (x_78 == 0) { -lean_object* x_67; lean_object* x_68; -x_67 = l_Lean_Parser_Syntax_cat___elambda__1___closed__8; -lean_inc(x_23); -x_68 = l_Lean_Parser_ParserState_mkErrorsAt(x_60, x_67, x_23); -x_24 = x_68; -goto block_59; +lean_object* x_79; lean_object* x_80; +x_79 = l_Lean_Parser_Syntax_cat___elambda__1___closed__8; +lean_inc(x_22); +x_80 = l_Lean_Parser_ParserState_mkErrorsAt(x_72, x_79, x_22); +x_62 = x_80; +goto block_71; } else { -x_24 = x_60; -goto block_59; +x_62 = x_72; +goto block_71; } } else { -lean_object* x_69; lean_object* x_70; -lean_dec(x_63); -x_69 = l_Lean_Parser_Syntax_cat___elambda__1___closed__8; -lean_inc(x_23); -x_70 = l_Lean_Parser_ParserState_mkErrorsAt(x_60, x_69, x_23); -x_24 = x_70; -goto block_59; +lean_object* x_81; lean_object* x_82; +lean_dec(x_75); +x_81 = l_Lean_Parser_Syntax_cat___elambda__1___closed__8; +lean_inc(x_22); +x_82 = l_Lean_Parser_ParserState_mkErrorsAt(x_72, x_81, x_22); +x_62 = x_82; +goto block_71; } } else { -lean_object* x_71; lean_object* x_72; -lean_dec(x_61); -x_71 = l_Lean_Parser_Syntax_cat___elambda__1___closed__8; -lean_inc(x_23); -x_72 = l_Lean_Parser_ParserState_mkErrorsAt(x_60, x_71, x_23); -x_24 = x_72; -goto block_59; +lean_object* x_83; lean_object* x_84; +lean_dec(x_73); +x_83 = l_Lean_Parser_Syntax_cat___elambda__1___closed__8; +lean_inc(x_22); +x_84 = l_Lean_Parser_ParserState_mkErrorsAt(x_72, x_83, x_22); +x_62 = x_84; +goto block_71; } -block_59: +block_61: { -lean_object* x_25; -x_25 = lean_ctor_get(x_24, 3); -lean_inc(x_25); -if (lean_obj_tag(x_25) == 0) -{ -lean_object* x_26; lean_object* x_27; -x_26 = l_Lean_Parser_numLitFn___rarg(x_2, x_24); -x_27 = lean_ctor_get(x_26, 3); -lean_inc(x_27); if (lean_obj_tag(x_27) == 0) { -lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; -lean_dec(x_23); -x_28 = l_Lean_nullKind; -x_29 = l_Lean_Parser_ParserState_mkNode(x_26, x_28, x_22); -x_30 = l_Lean_Parser_Syntax_cat___elambda__1___closed__2; -x_31 = l_Lean_Parser_ParserState_mkNode(x_29, x_30, x_18); -x_32 = l_Lean_Parser_mergeOrElseErrors(x_31, x_13, x_10); -lean_dec(x_10); -return x_32; -} -else -{ -lean_object* x_33; uint8_t x_34; -lean_dec(x_27); -x_33 = lean_ctor_get(x_26, 1); -lean_inc(x_33); -x_34 = lean_nat_dec_eq(x_33, x_23); -lean_dec(x_33); -if (x_34 == 0) -{ -lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; -lean_dec(x_23); -x_35 = l_Lean_nullKind; -x_36 = l_Lean_Parser_ParserState_mkNode(x_26, x_35, x_22); -x_37 = l_Lean_Parser_Syntax_cat___elambda__1___closed__2; -x_38 = l_Lean_Parser_ParserState_mkNode(x_36, x_37, x_18); -x_39 = l_Lean_Parser_mergeOrElseErrors(x_38, x_13, x_10); -lean_dec(x_10); -return x_39; -} -else -{ -lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; -x_40 = l_Lean_Parser_ParserState_restore(x_26, x_22, x_23); -x_41 = l_Lean_nullKind; -x_42 = l_Lean_Parser_ParserState_mkNode(x_40, x_41, x_22); -x_43 = l_Lean_Parser_Syntax_cat___elambda__1___closed__2; -x_44 = l_Lean_Parser_ParserState_mkNode(x_42, x_43, x_18); -x_45 = l_Lean_Parser_mergeOrElseErrors(x_44, x_13, x_10); -lean_dec(x_10); -return x_45; -} -} -} -else -{ -lean_object* x_46; uint8_t x_47; +lean_object* x_28; +lean_dec(x_26); lean_dec(x_25); +x_28 = lean_ctor_get(x_24, 3); +lean_inc(x_28); +if (lean_obj_tag(x_28) == 0) +{ +lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; +lean_dec(x_22); +x_29 = l_Lean_nullKind; +x_30 = l_Lean_Parser_ParserState_mkNode(x_24, x_29, x_23); +x_31 = l_Lean_Parser_Syntax_cat___elambda__1___closed__2; +x_32 = l_Lean_Parser_ParserState_mkNode(x_30, x_31, x_18); +x_33 = l_Lean_Parser_mergeOrElseErrors(x_32, x_13, x_10); +lean_dec(x_10); +return x_33; +} +else +{ +lean_object* x_34; uint8_t x_35; +lean_dec(x_28); +x_34 = lean_ctor_get(x_24, 1); +lean_inc(x_34); +x_35 = lean_nat_dec_eq(x_34, x_22); +lean_dec(x_34); +if (x_35 == 0) +{ +lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; +lean_dec(x_22); +x_36 = l_Lean_nullKind; +x_37 = l_Lean_Parser_ParserState_mkNode(x_24, x_36, x_23); +x_38 = l_Lean_Parser_Syntax_cat___elambda__1___closed__2; +x_39 = l_Lean_Parser_ParserState_mkNode(x_37, x_38, x_18); +x_40 = l_Lean_Parser_mergeOrElseErrors(x_39, x_13, x_10); +lean_dec(x_10); +return x_40; +} +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 = l_Lean_Parser_ParserState_restore(x_24, x_23, x_22); +x_42 = l_Lean_nullKind; +x_43 = l_Lean_Parser_ParserState_mkNode(x_41, x_42, x_23); +x_44 = l_Lean_Parser_Syntax_cat___elambda__1___closed__2; +x_45 = l_Lean_Parser_ParserState_mkNode(x_43, x_44, x_18); +x_46 = l_Lean_Parser_mergeOrElseErrors(x_45, x_13, x_10); +lean_dec(x_10); +return x_46; +} +} +} +else +{ +lean_object* x_47; lean_object* x_48; uint8_t x_49; +lean_dec(x_24); +x_47 = l_Array_shrink___main___rarg(x_25, x_23); +lean_inc(x_22); +x_48 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_48, 0, x_47); +lean_ctor_set(x_48, 1, x_22); +lean_ctor_set(x_48, 2, x_26); +lean_ctor_set(x_48, 3, x_27); +x_49 = lean_nat_dec_eq(x_22, x_22); +if (x_49 == 0) +{ +lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; +lean_dec(x_22); +x_50 = l_Lean_nullKind; +x_51 = l_Lean_Parser_ParserState_mkNode(x_48, x_50, x_23); +x_52 = l_Lean_Parser_Syntax_cat___elambda__1___closed__2; +x_53 = l_Lean_Parser_ParserState_mkNode(x_51, x_52, x_18); +x_54 = l_Lean_Parser_mergeOrElseErrors(x_53, x_13, x_10); +lean_dec(x_10); +return x_54; +} +else +{ +lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; +x_55 = l_Lean_Parser_ParserState_restore(x_48, x_23, x_22); +x_56 = l_Lean_nullKind; +x_57 = l_Lean_Parser_ParserState_mkNode(x_55, x_56, x_23); +x_58 = l_Lean_Parser_Syntax_cat___elambda__1___closed__2; +x_59 = l_Lean_Parser_ParserState_mkNode(x_57, x_58, x_18); +x_60 = l_Lean_Parser_mergeOrElseErrors(x_59, x_13, x_10); +lean_dec(x_10); +return x_60; +} +} +} +block_71: +{ +lean_object* x_63; +x_63 = lean_ctor_get(x_62, 3); +lean_inc(x_63); +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 = l_Lean_Parser_numLitFn___rarg(x_2, x_62); +x_65 = lean_ctor_get(x_64, 0); +lean_inc(x_65); +x_66 = lean_ctor_get(x_64, 2); +lean_inc(x_66); +x_67 = lean_ctor_get(x_64, 3); +lean_inc(x_67); +x_24 = x_64; +x_25 = x_65; +x_26 = x_66; +x_27 = x_67; +goto block_61; +} +else +{ +lean_object* x_68; lean_object* x_69; lean_object* x_70; +lean_dec(x_63); lean_dec(x_2); -x_46 = lean_ctor_get(x_24, 1); -lean_inc(x_46); -x_47 = lean_nat_dec_eq(x_46, x_23); -lean_dec(x_46); -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_dec(x_23); -x_48 = l_Lean_nullKind; -x_49 = l_Lean_Parser_ParserState_mkNode(x_24, x_48, x_22); -x_50 = l_Lean_Parser_Syntax_cat___elambda__1___closed__2; -x_51 = l_Lean_Parser_ParserState_mkNode(x_49, x_50, x_18); -x_52 = l_Lean_Parser_mergeOrElseErrors(x_51, x_13, x_10); -lean_dec(x_10); -return x_52; -} -else -{ -lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; -x_53 = l_Lean_Parser_ParserState_restore(x_24, x_22, x_23); -x_54 = l_Lean_nullKind; -x_55 = l_Lean_Parser_ParserState_mkNode(x_53, x_54, x_22); -x_56 = l_Lean_Parser_Syntax_cat___elambda__1___closed__2; -x_57 = l_Lean_Parser_ParserState_mkNode(x_55, x_56, x_18); -x_58 = l_Lean_Parser_mergeOrElseErrors(x_57, x_13, x_10); -lean_dec(x_10); -return x_58; -} +x_68 = lean_ctor_get(x_62, 0); +lean_inc(x_68); +x_69 = lean_ctor_get(x_62, 2); +lean_inc(x_69); +x_70 = lean_ctor_get(x_62, 3); +lean_inc(x_70); +x_24 = x_62; +x_25 = x_68; +x_26 = x_69; +x_27 = x_70; +goto block_61; } } } else { -lean_object* x_73; lean_object* x_74; lean_object* x_75; +lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_dec(x_20); lean_dec(x_2); -x_73 = l_Lean_Parser_Syntax_cat___elambda__1___closed__2; -x_74 = l_Lean_Parser_ParserState_mkNode(x_19, x_73, x_18); -x_75 = l_Lean_Parser_mergeOrElseErrors(x_74, x_13, x_10); +x_85 = l_Lean_Parser_Syntax_cat___elambda__1___closed__2; +x_86 = l_Lean_Parser_ParserState_mkNode(x_19, x_85, x_18); +x_87 = l_Lean_Parser_mergeOrElseErrors(x_86, x_13, x_10); lean_dec(x_10); -return x_75; +return x_87; } } } @@ -1412,172 +1429,212 @@ x_18 = lean_ctor_get(x_17, 3); lean_inc(x_18); if (lean_obj_tag(x_18) == 0) { -lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_58; lean_object* x_59; +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_60; lean_object* x_70; lean_object* x_71; x_19 = lean_ctor_get(x_17, 0); lean_inc(x_19); -x_20 = lean_array_get_size(x_19); +x_20 = lean_ctor_get(x_17, 1); +lean_inc(x_20); +x_21 = lean_array_get_size(x_19); lean_dec(x_19); -x_21 = lean_ctor_get(x_17, 1); -lean_inc(x_21); lean_inc(x_2); -x_58 = l_Lean_Parser_tokenFn(x_2, x_17); -x_59 = lean_ctor_get(x_58, 3); -lean_inc(x_59); -if (lean_obj_tag(x_59) == 0) +x_70 = l_Lean_Parser_tokenFn(x_2, x_17); +x_71 = lean_ctor_get(x_70, 3); +lean_inc(x_71); +if (lean_obj_tag(x_71) == 0) { -lean_object* x_60; lean_object* x_61; -x_60 = lean_ctor_get(x_58, 0); -lean_inc(x_60); -x_61 = l_Array_back___at___private_Init_Lean_Parser_Parser_6__updateCache___spec__1(x_60); -lean_dec(x_60); -if (lean_obj_tag(x_61) == 2) +lean_object* x_72; lean_object* x_73; +x_72 = lean_ctor_get(x_70, 0); +lean_inc(x_72); +x_73 = l_Array_back___at___private_Init_Lean_Parser_Parser_6__updateCache___spec__1(x_72); +lean_dec(x_72); +if (lean_obj_tag(x_73) == 2) { -lean_object* x_62; lean_object* x_63; uint8_t x_64; -x_62 = lean_ctor_get(x_61, 1); -lean_inc(x_62); -lean_dec(x_61); -x_63 = l_Lean_Parser_Syntax_cat___elambda__1___closed__5; -x_64 = lean_string_dec_eq(x_62, x_63); -lean_dec(x_62); -if (x_64 == 0) +lean_object* x_74; lean_object* x_75; uint8_t x_76; +x_74 = lean_ctor_get(x_73, 1); +lean_inc(x_74); +lean_dec(x_73); +x_75 = l_Lean_Parser_Syntax_cat___elambda__1___closed__5; +x_76 = lean_string_dec_eq(x_74, x_75); +lean_dec(x_74); +if (x_76 == 0) { -lean_object* x_65; lean_object* x_66; -x_65 = l_Lean_Parser_Syntax_cat___elambda__1___closed__8; -lean_inc(x_21); -x_66 = l_Lean_Parser_ParserState_mkErrorsAt(x_58, x_65, x_21); -x_22 = x_66; -goto block_57; +lean_object* x_77; lean_object* x_78; +x_77 = l_Lean_Parser_Syntax_cat___elambda__1___closed__8; +lean_inc(x_20); +x_78 = l_Lean_Parser_ParserState_mkErrorsAt(x_70, x_77, x_20); +x_60 = x_78; +goto block_69; } else { -x_22 = x_58; -goto block_57; +x_60 = x_70; +goto block_69; } } else { -lean_object* x_67; lean_object* x_68; -lean_dec(x_61); -x_67 = l_Lean_Parser_Syntax_cat___elambda__1___closed__8; -lean_inc(x_21); -x_68 = l_Lean_Parser_ParserState_mkErrorsAt(x_58, x_67, x_21); -x_22 = x_68; -goto block_57; +lean_object* x_79; lean_object* x_80; +lean_dec(x_73); +x_79 = l_Lean_Parser_Syntax_cat___elambda__1___closed__8; +lean_inc(x_20); +x_80 = l_Lean_Parser_ParserState_mkErrorsAt(x_70, x_79, x_20); +x_60 = x_80; +goto block_69; } } else { -lean_object* x_69; lean_object* x_70; -lean_dec(x_59); -x_69 = l_Lean_Parser_Syntax_cat___elambda__1___closed__8; -lean_inc(x_21); -x_70 = l_Lean_Parser_ParserState_mkErrorsAt(x_58, x_69, x_21); -x_22 = x_70; -goto block_57; +lean_object* x_81; lean_object* x_82; +lean_dec(x_71); +x_81 = l_Lean_Parser_Syntax_cat___elambda__1___closed__8; +lean_inc(x_20); +x_82 = l_Lean_Parser_ParserState_mkErrorsAt(x_70, x_81, x_20); +x_60 = x_82; +goto block_69; } -block_57: +block_59: { -lean_object* x_23; -x_23 = lean_ctor_get(x_22, 3); -lean_inc(x_23); -if (lean_obj_tag(x_23) == 0) -{ -lean_object* x_24; lean_object* x_25; -x_24 = l_Lean_Parser_numLitFn___rarg(x_2, x_22); -x_25 = lean_ctor_get(x_24, 3); -lean_inc(x_25); if (lean_obj_tag(x_25) == 0) { -lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; -lean_dec(x_21); -x_26 = l_Lean_nullKind; -x_27 = l_Lean_Parser_ParserState_mkNode(x_24, x_26, x_20); -x_28 = l_Lean_Parser_Syntax_atom___elambda__1___closed__2; -x_29 = l_Lean_Parser_ParserState_mkNode(x_27, x_28, x_16); -x_30 = l_Lean_Parser_mergeOrElseErrors(x_29, x_11, x_8); -lean_dec(x_8); -return x_30; -} -else -{ -lean_object* x_31; uint8_t x_32; -lean_dec(x_25); -x_31 = lean_ctor_get(x_24, 1); -lean_inc(x_31); -x_32 = lean_nat_dec_eq(x_31, x_21); -lean_dec(x_31); -if (x_32 == 0) -{ -lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; -lean_dec(x_21); -x_33 = l_Lean_nullKind; -x_34 = l_Lean_Parser_ParserState_mkNode(x_24, x_33, x_20); -x_35 = l_Lean_Parser_Syntax_atom___elambda__1___closed__2; -x_36 = l_Lean_Parser_ParserState_mkNode(x_34, x_35, x_16); -x_37 = l_Lean_Parser_mergeOrElseErrors(x_36, x_11, x_8); -lean_dec(x_8); -return x_37; -} -else -{ -lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; -x_38 = l_Lean_Parser_ParserState_restore(x_24, x_20, x_21); -x_39 = l_Lean_nullKind; -x_40 = l_Lean_Parser_ParserState_mkNode(x_38, x_39, x_20); -x_41 = l_Lean_Parser_Syntax_atom___elambda__1___closed__2; -x_42 = l_Lean_Parser_ParserState_mkNode(x_40, x_41, x_16); -x_43 = l_Lean_Parser_mergeOrElseErrors(x_42, x_11, x_8); -lean_dec(x_8); -return x_43; -} -} -} -else -{ -lean_object* x_44; uint8_t x_45; +lean_object* x_26; +lean_dec(x_24); lean_dec(x_23); +x_26 = lean_ctor_get(x_22, 3); +lean_inc(x_26); +if (lean_obj_tag(x_26) == 0) +{ +lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; +lean_dec(x_20); +x_27 = l_Lean_nullKind; +x_28 = l_Lean_Parser_ParserState_mkNode(x_22, x_27, x_21); +x_29 = l_Lean_Parser_Syntax_atom___elambda__1___closed__2; +x_30 = l_Lean_Parser_ParserState_mkNode(x_28, x_29, x_16); +x_31 = l_Lean_Parser_mergeOrElseErrors(x_30, x_11, x_8); +lean_dec(x_8); +return x_31; +} +else +{ +lean_object* x_32; uint8_t x_33; +lean_dec(x_26); +x_32 = lean_ctor_get(x_22, 1); +lean_inc(x_32); +x_33 = lean_nat_dec_eq(x_32, x_20); +lean_dec(x_32); +if (x_33 == 0) +{ +lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; +lean_dec(x_20); +x_34 = l_Lean_nullKind; +x_35 = l_Lean_Parser_ParserState_mkNode(x_22, x_34, x_21); +x_36 = l_Lean_Parser_Syntax_atom___elambda__1___closed__2; +x_37 = l_Lean_Parser_ParserState_mkNode(x_35, x_36, x_16); +x_38 = l_Lean_Parser_mergeOrElseErrors(x_37, x_11, x_8); +lean_dec(x_8); +return x_38; +} +else +{ +lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; +x_39 = l_Lean_Parser_ParserState_restore(x_22, x_21, x_20); +x_40 = l_Lean_nullKind; +x_41 = l_Lean_Parser_ParserState_mkNode(x_39, x_40, x_21); +x_42 = l_Lean_Parser_Syntax_atom___elambda__1___closed__2; +x_43 = l_Lean_Parser_ParserState_mkNode(x_41, x_42, x_16); +x_44 = l_Lean_Parser_mergeOrElseErrors(x_43, x_11, x_8); +lean_dec(x_8); +return x_44; +} +} +} +else +{ +lean_object* x_45; lean_object* x_46; uint8_t x_47; +lean_dec(x_22); +x_45 = l_Array_shrink___main___rarg(x_23, x_21); +lean_inc(x_20); +x_46 = lean_alloc_ctor(0, 4, 0); +lean_ctor_set(x_46, 0, x_45); +lean_ctor_set(x_46, 1, x_20); +lean_ctor_set(x_46, 2, x_24); +lean_ctor_set(x_46, 3, x_25); +x_47 = lean_nat_dec_eq(x_20, x_20); +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_dec(x_20); +x_48 = l_Lean_nullKind; +x_49 = l_Lean_Parser_ParserState_mkNode(x_46, x_48, x_21); +x_50 = l_Lean_Parser_Syntax_atom___elambda__1___closed__2; +x_51 = l_Lean_Parser_ParserState_mkNode(x_49, x_50, x_16); +x_52 = l_Lean_Parser_mergeOrElseErrors(x_51, x_11, x_8); +lean_dec(x_8); +return x_52; +} +else +{ +lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; +x_53 = l_Lean_Parser_ParserState_restore(x_46, x_21, x_20); +x_54 = l_Lean_nullKind; +x_55 = l_Lean_Parser_ParserState_mkNode(x_53, x_54, x_21); +x_56 = l_Lean_Parser_Syntax_atom___elambda__1___closed__2; +x_57 = l_Lean_Parser_ParserState_mkNode(x_55, x_56, x_16); +x_58 = l_Lean_Parser_mergeOrElseErrors(x_57, x_11, x_8); +lean_dec(x_8); +return x_58; +} +} +} +block_69: +{ +lean_object* x_61; +x_61 = lean_ctor_get(x_60, 3); +lean_inc(x_61); +if (lean_obj_tag(x_61) == 0) +{ +lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; +x_62 = l_Lean_Parser_numLitFn___rarg(x_2, x_60); +x_63 = lean_ctor_get(x_62, 0); +lean_inc(x_63); +x_64 = lean_ctor_get(x_62, 2); +lean_inc(x_64); +x_65 = lean_ctor_get(x_62, 3); +lean_inc(x_65); +x_22 = x_62; +x_23 = x_63; +x_24 = x_64; +x_25 = x_65; +goto block_59; +} +else +{ +lean_object* x_66; lean_object* x_67; lean_object* x_68; +lean_dec(x_61); lean_dec(x_2); -x_44 = lean_ctor_get(x_22, 1); -lean_inc(x_44); -x_45 = lean_nat_dec_eq(x_44, x_21); -lean_dec(x_44); -if (x_45 == 0) -{ -lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; -lean_dec(x_21); -x_46 = l_Lean_nullKind; -x_47 = l_Lean_Parser_ParserState_mkNode(x_22, x_46, x_20); -x_48 = l_Lean_Parser_Syntax_atom___elambda__1___closed__2; -x_49 = l_Lean_Parser_ParserState_mkNode(x_47, x_48, x_16); -x_50 = l_Lean_Parser_mergeOrElseErrors(x_49, x_11, x_8); -lean_dec(x_8); -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; -x_51 = l_Lean_Parser_ParserState_restore(x_22, x_20, x_21); -x_52 = l_Lean_nullKind; -x_53 = l_Lean_Parser_ParserState_mkNode(x_51, x_52, x_20); -x_54 = l_Lean_Parser_Syntax_atom___elambda__1___closed__2; -x_55 = l_Lean_Parser_ParserState_mkNode(x_53, x_54, x_16); -x_56 = l_Lean_Parser_mergeOrElseErrors(x_55, x_11, x_8); -lean_dec(x_8); -return x_56; -} +x_66 = lean_ctor_get(x_60, 0); +lean_inc(x_66); +x_67 = lean_ctor_get(x_60, 2); +lean_inc(x_67); +x_68 = lean_ctor_get(x_60, 3); +lean_inc(x_68); +x_22 = x_60; +x_23 = x_66; +x_24 = x_67; +x_25 = x_68; +goto block_59; } } } else { -lean_object* x_71; lean_object* x_72; lean_object* x_73; +lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_dec(x_18); lean_dec(x_2); -x_71 = l_Lean_Parser_Syntax_atom___elambda__1___closed__2; -x_72 = l_Lean_Parser_ParserState_mkNode(x_17, x_71, x_16); -x_73 = l_Lean_Parser_mergeOrElseErrors(x_72, x_11, x_8); +x_83 = l_Lean_Parser_Syntax_atom___elambda__1___closed__2; +x_84 = l_Lean_Parser_ParserState_mkNode(x_17, x_83, x_16); +x_85 = l_Lean_Parser_mergeOrElseErrors(x_84, x_11, x_8); lean_dec(x_8); -return x_73; +return x_85; } } } @@ -4105,49 +4162,210 @@ x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } +lean_object* _init_l_Lean_Parser_Syntax_orelse___elambda__1___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Term_orelse___elambda__1___closed__3; +x_2 = l_String_trim(x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Parser_Syntax_orelse___elambda__1___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Char_HasRepr___closed__1; +x_2 = l_Lean_Parser_Syntax_orelse___elambda__1___closed__2; +x_3 = lean_string_append(x_1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Syntax_orelse___elambda__1___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Syntax_orelse___elambda__1___closed__3; +x_2 = l_Char_HasRepr___closed__1; +x_3 = lean_string_append(x_1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Syntax_orelse___elambda__1___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Parser_Syntax_orelse___elambda__1___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* l_Lean_Parser_Syntax_orelse___elambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { -lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; -x_4 = l_Lean_Parser_Term_orelse___elambda__1___closed__4; -x_5 = lean_ctor_get(x_4, 1); -lean_inc(x_5); -x_6 = lean_ctor_get(x_3, 0); -lean_inc(x_6); -x_7 = lean_array_get_size(x_6); -lean_dec(x_6); -x_8 = lean_apply_3(x_5, x_1, x_2, x_3); -x_9 = l_Lean_Parser_Syntax_orelse___elambda__1___closed__1; -x_10 = l_Lean_Parser_ParserState_mkNode(x_8, x_9, x_7); -return x_10; +lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; +x_4 = lean_ctor_get(x_3, 0); +lean_inc(x_4); +x_5 = lean_array_get_size(x_4); +lean_dec(x_4); +lean_inc(x_3); +x_6 = l_Lean_Parser_ParserState_pushSyntax(x_3, x_1); +x_7 = lean_ctor_get(x_3, 3); +lean_inc(x_7); +if (lean_obj_tag(x_7) == 0) +{ +lean_object* x_8; lean_object* x_9; lean_object* x_10; +x_8 = lean_ctor_get(x_3, 1); +lean_inc(x_8); +lean_dec(x_3); +lean_inc(x_2); +x_9 = l_Lean_Parser_tokenFn(x_2, x_6); +x_10 = lean_ctor_get(x_9, 3); +lean_inc(x_10); +if (lean_obj_tag(x_10) == 0) +{ +lean_object* x_11; lean_object* x_12; +x_11 = lean_ctor_get(x_9, 0); +lean_inc(x_11); +x_12 = l_Array_back___at___private_Init_Lean_Parser_Parser_6__updateCache___spec__1(x_11); +lean_dec(x_11); +if (lean_obj_tag(x_12) == 2) +{ +lean_object* x_13; lean_object* x_14; uint8_t x_15; +x_13 = lean_ctor_get(x_12, 1); +lean_inc(x_13); +lean_dec(x_12); +x_14 = l_Lean_Parser_Syntax_orelse___elambda__1___closed__2; +x_15 = lean_string_dec_eq(x_13, x_14); +lean_dec(x_13); +if (x_15 == 0) +{ +lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; +lean_dec(x_2); +x_16 = l_Lean_Parser_Syntax_orelse___elambda__1___closed__5; +x_17 = l_Lean_Parser_ParserState_mkErrorsAt(x_9, x_16, x_8); +x_18 = l_Lean_Parser_Syntax_orelse___elambda__1___closed__1; +x_19 = l_Lean_Parser_ParserState_mkNode(x_17, x_18, x_5); +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_dec(x_8); +x_20 = l_Lean_Parser_regBuiltinSyntaxParserAttr___closed__4; +x_21 = lean_unsigned_to_nat(1u); +x_22 = l_Lean_Parser_categoryParserFn(x_20, x_21, x_2, x_9); +x_23 = l_Lean_Parser_Syntax_orelse___elambda__1___closed__1; +x_24 = l_Lean_Parser_ParserState_mkNode(x_22, x_23, x_5); +return x_24; +} +} +else +{ +lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; +lean_dec(x_12); +lean_dec(x_2); +x_25 = l_Lean_Parser_Syntax_orelse___elambda__1___closed__5; +x_26 = l_Lean_Parser_ParserState_mkErrorsAt(x_9, x_25, x_8); +x_27 = l_Lean_Parser_Syntax_orelse___elambda__1___closed__1; +x_28 = l_Lean_Parser_ParserState_mkNode(x_26, x_27, x_5); +return x_28; +} +} +else +{ +lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; +lean_dec(x_10); +lean_dec(x_2); +x_29 = l_Lean_Parser_Syntax_orelse___elambda__1___closed__5; +x_30 = l_Lean_Parser_ParserState_mkErrorsAt(x_9, x_29, x_8); +x_31 = l_Lean_Parser_Syntax_orelse___elambda__1___closed__1; +x_32 = l_Lean_Parser_ParserState_mkNode(x_30, x_31, x_5); +return x_32; +} +} +else +{ +lean_object* x_33; lean_object* x_34; +lean_dec(x_7); +lean_dec(x_3); +lean_dec(x_2); +x_33 = l_Lean_Parser_Syntax_orelse___elambda__1___closed__1; +x_34 = l_Lean_Parser_ParserState_mkNode(x_6, x_33, x_5); +return x_34; +} } } lean_object* _init_l_Lean_Parser_Syntax_orelse___closed__1() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Term_orelse___elambda__1___closed__4; -x_2 = lean_ctor_get(x_1, 0); -lean_inc(x_2); -x_3 = l_Lean_Parser_Syntax_orelse___elambda__1___closed__1; -x_4 = l_Lean_Parser_nodeInfo(x_3, x_2); -return x_4; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Parser_Syntax_orelse___elambda__1___closed__2; +x_3 = l_Lean_Parser_symbolInfo(x_2, x_1); +return x_3; } } lean_object* _init_l_Lean_Parser_Syntax_orelse___closed__2() { _start: { +uint8_t x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = 1; +x_2 = l_Lean_Parser_regBuiltinSyntaxParserAttr___closed__4; +x_3 = lean_unsigned_to_nat(1u); +x_4 = l_Lean_Parser_categoryParser(x_1, x_2, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Syntax_orelse___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Syntax_orelse___closed__2; +x_2 = lean_ctor_get(x_1, 0); +lean_inc(x_2); +x_3 = l_Lean_Parser_Syntax_orelse___closed__1; +x_4 = l_Lean_Parser_andthenInfo(x_3, x_2); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Syntax_orelse___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_epsilonInfo; +x_2 = l_Lean_Parser_Syntax_orelse___closed__3; +x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Syntax_orelse___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Syntax_orelse___elambda__1___closed__1; +x_2 = l_Lean_Parser_Syntax_orelse___closed__4; +x_3 = l_Lean_Parser_nodeInfo(x_1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Syntax_orelse___closed__6() { +_start: +{ lean_object* x_1; x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Syntax_orelse___elambda__1), 3, 0); return x_1; } } -lean_object* _init_l_Lean_Parser_Syntax_orelse___closed__3() { +lean_object* _init_l_Lean_Parser_Syntax_orelse___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Syntax_orelse___closed__1; -x_2 = l_Lean_Parser_Syntax_orelse___closed__2; +x_1 = l_Lean_Parser_Syntax_orelse___closed__5; +x_2 = l_Lean_Parser_Syntax_orelse___closed__6; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); @@ -4158,7 +4376,7 @@ lean_object* _init_l_Lean_Parser_Syntax_orelse() { _start: { lean_object* x_1; -x_1 = l_Lean_Parser_Syntax_orelse___closed__3; +x_1 = l_Lean_Parser_Syntax_orelse___closed__7; return x_1; } } @@ -4656,13 +4874,6 @@ lean_mark_persistent(l_Lean_Parser_regBuiltinSyntaxParserAttr___closed__4); res = l_Lean_Parser_regBuiltinSyntaxParserAttr(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l_Lean_Parser_regSyntaxParserAttribute___closed__1 = _init_l_Lean_Parser_regSyntaxParserAttribute___closed__1(); -lean_mark_persistent(l_Lean_Parser_regSyntaxParserAttribute___closed__1); -l_Lean_Parser_regSyntaxParserAttribute___closed__2 = _init_l_Lean_Parser_regSyntaxParserAttribute___closed__2(); -lean_mark_persistent(l_Lean_Parser_regSyntaxParserAttribute___closed__2); -res = l_Lean_Parser_regSyntaxParserAttribute(lean_io_mk_world()); -if (lean_io_result_is_error(res)) return res; -lean_dec_ref(res); l_Lean_Parser_Syntax_paren___elambda__1___closed__1 = _init_l_Lean_Parser_Syntax_paren___elambda__1___closed__1(); lean_mark_persistent(l_Lean_Parser_Syntax_paren___elambda__1___closed__1); l_Lean_Parser_Syntax_paren___elambda__1___closed__2 = _init_l_Lean_Parser_Syntax_paren___elambda__1___closed__2(); @@ -5071,12 +5282,28 @@ 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___elambda__1___closed__2 = _init_l_Lean_Parser_Syntax_orelse___elambda__1___closed__2(); +lean_mark_persistent(l_Lean_Parser_Syntax_orelse___elambda__1___closed__2); +l_Lean_Parser_Syntax_orelse___elambda__1___closed__3 = _init_l_Lean_Parser_Syntax_orelse___elambda__1___closed__3(); +lean_mark_persistent(l_Lean_Parser_Syntax_orelse___elambda__1___closed__3); +l_Lean_Parser_Syntax_orelse___elambda__1___closed__4 = _init_l_Lean_Parser_Syntax_orelse___elambda__1___closed__4(); +lean_mark_persistent(l_Lean_Parser_Syntax_orelse___elambda__1___closed__4); +l_Lean_Parser_Syntax_orelse___elambda__1___closed__5 = _init_l_Lean_Parser_Syntax_orelse___elambda__1___closed__5(); +lean_mark_persistent(l_Lean_Parser_Syntax_orelse___elambda__1___closed__5); l_Lean_Parser_Syntax_orelse___closed__1 = _init_l_Lean_Parser_Syntax_orelse___closed__1(); lean_mark_persistent(l_Lean_Parser_Syntax_orelse___closed__1); l_Lean_Parser_Syntax_orelse___closed__2 = _init_l_Lean_Parser_Syntax_orelse___closed__2(); lean_mark_persistent(l_Lean_Parser_Syntax_orelse___closed__2); l_Lean_Parser_Syntax_orelse___closed__3 = _init_l_Lean_Parser_Syntax_orelse___closed__3(); lean_mark_persistent(l_Lean_Parser_Syntax_orelse___closed__3); +l_Lean_Parser_Syntax_orelse___closed__4 = _init_l_Lean_Parser_Syntax_orelse___closed__4(); +lean_mark_persistent(l_Lean_Parser_Syntax_orelse___closed__4); +l_Lean_Parser_Syntax_orelse___closed__5 = _init_l_Lean_Parser_Syntax_orelse___closed__5(); +lean_mark_persistent(l_Lean_Parser_Syntax_orelse___closed__5); +l_Lean_Parser_Syntax_orelse___closed__6 = _init_l_Lean_Parser_Syntax_orelse___closed__6(); +lean_mark_persistent(l_Lean_Parser_Syntax_orelse___closed__6); +l_Lean_Parser_Syntax_orelse___closed__7 = _init_l_Lean_Parser_Syntax_orelse___closed__7(); +lean_mark_persistent(l_Lean_Parser_Syntax_orelse___closed__7); l_Lean_Parser_Syntax_orelse = _init_l_Lean_Parser_Syntax_orelse(); lean_mark_persistent(l_Lean_Parser_Syntax_orelse); res = l___regBuiltinParser_Lean_Parser_Syntax_orelse(lean_io_mk_world()); diff --git a/stage0/stdlib/Init/Lean/Parser/Tactic.c b/stage0/stdlib/Init/Lean/Parser/Tactic.c index e6eb14326d..e214b8f123 100644 --- a/stage0/stdlib/Init/Lean/Parser/Tactic.c +++ b/stage0/stdlib/Init/Lean/Parser/Tactic.c @@ -13,10 +13,10 @@ #ifdef __cplusplus extern "C" { #endif +lean_object* l_Lean_Parser_Tactic_orelse___closed__4; 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*); -extern lean_object* l_Lean_Parser_Term_orelse___elambda__1___closed__4; lean_object* l_Lean_Parser_Tactic_orelse___closed__2; lean_object* l_Lean_Parser_Tactic_nestedTacticBlock___elambda__1___closed__15; lean_object* l_Lean_Parser_Tactic_intros___closed__7; @@ -42,6 +42,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Tactic_nestedTacticBlock(lean_obje lean_object* l_Lean_Parser_Tactic_assumption___elambda__1___closed__6; lean_object* l_Lean_Parser_Tactic_nestedTacticBlock___elambda__1___closed__4; extern lean_object* l_Lean_Parser_Term_have___closed__3; +lean_object* l_Lean_Parser_ParserState_pushSyntax(lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_nestedTacticBlockCurly; extern lean_object* l_Lean_Parser_Term_subtype___closed__1; lean_object* l_Lean_Parser_tacticSeq___closed__2; @@ -49,6 +50,7 @@ lean_object* l_Lean_Parser_ParserState_mkNode(lean_object*, lean_object*, lean_o lean_object* l_Lean_Parser_Tactic_apply___closed__4; lean_object* l_Lean_Parser_Tactic_nestedTacticBlock___closed__7; lean_object* l_Lean_Parser_Term_tacticBlock___elambda__1___closed__1; +lean_object* l_Lean_Parser_Tactic_orelse___closed__7; lean_object* l_Lean_Parser_regTacticParserAttribute___closed__1; lean_object* l_Lean_Parser_registerBuiltinDynamicParserAttribute(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_regBuiltinTacticParserAttr(lean_object*); @@ -68,6 +70,7 @@ lean_object* l_Lean_Parser_Tactic_orelse___closed__3; lean_object* l_Lean_Parser_Tactic_nestedTacticBlock___elambda__1___closed__8; 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_orelse___closed__5; lean_object* l_Lean_Parser_symbolFn___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_intros___closed__3; lean_object* l_Lean_Parser_Tactic_apply___closed__5; @@ -78,12 +81,14 @@ lean_object* l_Lean_Parser_regBuiltinTacticParserAttr___closed__2; lean_object* l_Lean_Parser_Tactic_nestedTacticBlock___elambda__1___closed__13; lean_object* l_Lean_Parser_Tactic_nestedTacticBlock___elambda__1___closed__11; lean_object* l_Lean_Parser_Tactic_intro___elambda__1___closed__1; +lean_object* l_Lean_Parser_Tactic_orelse___elambda__1___closed__4; lean_object* l_Lean_Parser_Tactic_assumption; lean_object* l_Lean_Parser_Tactic_intros___elambda__1(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Term_structInst___elambda__1___closed__5; lean_object* l_Lean_Parser_Tactic_assumption___elambda__1___closed__4; lean_object* l_Lean_Parser_manyAux___main(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_eq(lean_object*, lean_object*); +extern lean_object* l_Lean_Parser_Term_orelse___elambda__1___closed__3; lean_object* l_Lean_Parser_tacticSeq___elambda__1___boxed(lean_object*, lean_object*, 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_Tactic_nestedTacticBlock___closed__1; @@ -137,6 +142,7 @@ lean_object* l_Array_back___at___private_Init_Lean_Parser_Parser_6__updateCache_ lean_object* l_Lean_Parser_ParserState_restore(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_intros___elambda__1___closed__1; extern lean_object* l_Lean_Parser_Term_explicitUniv___elambda__1___closed__9; +lean_object* l_Lean_Parser_Tactic_orelse___elambda__1___closed__2; lean_object* l_Lean_Parser_Tactic_orelse; lean_object* l_Lean_Parser_categoryParserFn(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_tacticSeq(uint8_t); @@ -154,6 +160,7 @@ lean_object* l_Lean_Parser_regTacticParserAttribute(lean_object*); lean_object* l_Lean_Parser_symbolInfo(lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_apply___elambda__1___closed__6; lean_object* l_Lean_Parser_sepBy1Fn(uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_Parser_epsilonInfo; lean_object* l_Lean_Parser_Tactic_orelse___elambda__1___closed__1; lean_object* l_Lean_Parser_Tactic_nestedTacticBlockCurly___closed__4; lean_object* l_Lean_Parser_Tactic_assumption___closed__3; @@ -187,12 +194,15 @@ lean_object* l_Lean_Parser_Tactic_intro___closed__3; lean_object* l_Lean_Parser_regBuiltinTacticParserAttr___closed__4; lean_object* l_Lean_Parser_Tactic_intros___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_tacticBlock___elambda__1___closed__4; +lean_object* l_Lean_Parser_Tactic_orelse___closed__6; lean_object* l_Lean_Parser_Tactic_intro___closed__5; lean_object* l_Lean_Parser_Tactic_intros___elambda__1___closed__4; lean_object* l_Lean_Parser_Tactic_nestedTacticBlock___elambda__1___closed__7; +lean_object* l_Lean_Parser_Tactic_orelse___elambda__1___closed__3; lean_object* l_Lean_Parser_Tactic_intros___elambda__1___closed__8; lean_object* l_Lean_Parser_Tactic_apply___elambda__1___closed__8; lean_object* l_Lean_Parser_Tactic_assumption___elambda__1(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Tactic_orelse___elambda__1___closed__5; lean_object* l___regBuiltinParser_Lean_Parser_Tactic_orelse(lean_object*); lean_object* l_Lean_Parser_Tactic_nestedTacticBlockCurly___elambda__1(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_categoryParser___elambda__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -2272,49 +2282,210 @@ x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } +lean_object* _init_l_Lean_Parser_Tactic_orelse___elambda__1___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_Term_orelse___elambda__1___closed__3; +x_2 = l_String_trim(x_1); +return x_2; +} +} +lean_object* _init_l_Lean_Parser_Tactic_orelse___elambda__1___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Char_HasRepr___closed__1; +x_2 = l_Lean_Parser_Tactic_orelse___elambda__1___closed__2; +x_3 = lean_string_append(x_1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Tactic_orelse___elambda__1___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Tactic_orelse___elambda__1___closed__3; +x_2 = l_Char_HasRepr___closed__1; +x_3 = lean_string_append(x_1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Tactic_orelse___elambda__1___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Parser_Tactic_orelse___elambda__1___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* l_Lean_Parser_Tactic_orelse___elambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { -lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; -x_4 = l_Lean_Parser_Term_orelse___elambda__1___closed__4; -x_5 = lean_ctor_get(x_4, 1); -lean_inc(x_5); -x_6 = lean_ctor_get(x_3, 0); -lean_inc(x_6); -x_7 = lean_array_get_size(x_6); -lean_dec(x_6); -x_8 = lean_apply_3(x_5, x_1, x_2, x_3); -x_9 = l_Lean_Parser_Tactic_orelse___elambda__1___closed__1; -x_10 = l_Lean_Parser_ParserState_mkNode(x_8, x_9, x_7); -return x_10; +lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; +x_4 = lean_ctor_get(x_3, 0); +lean_inc(x_4); +x_5 = lean_array_get_size(x_4); +lean_dec(x_4); +lean_inc(x_3); +x_6 = l_Lean_Parser_ParserState_pushSyntax(x_3, x_1); +x_7 = lean_ctor_get(x_3, 3); +lean_inc(x_7); +if (lean_obj_tag(x_7) == 0) +{ +lean_object* x_8; lean_object* x_9; lean_object* x_10; +x_8 = lean_ctor_get(x_3, 1); +lean_inc(x_8); +lean_dec(x_3); +lean_inc(x_2); +x_9 = l_Lean_Parser_tokenFn(x_2, x_6); +x_10 = lean_ctor_get(x_9, 3); +lean_inc(x_10); +if (lean_obj_tag(x_10) == 0) +{ +lean_object* x_11; lean_object* x_12; +x_11 = lean_ctor_get(x_9, 0); +lean_inc(x_11); +x_12 = l_Array_back___at___private_Init_Lean_Parser_Parser_6__updateCache___spec__1(x_11); +lean_dec(x_11); +if (lean_obj_tag(x_12) == 2) +{ +lean_object* x_13; lean_object* x_14; uint8_t x_15; +x_13 = lean_ctor_get(x_12, 1); +lean_inc(x_13); +lean_dec(x_12); +x_14 = l_Lean_Parser_Tactic_orelse___elambda__1___closed__2; +x_15 = lean_string_dec_eq(x_13, x_14); +lean_dec(x_13); +if (x_15 == 0) +{ +lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; +lean_dec(x_2); +x_16 = l_Lean_Parser_Tactic_orelse___elambda__1___closed__5; +x_17 = l_Lean_Parser_ParserState_mkErrorsAt(x_9, x_16, x_8); +x_18 = l_Lean_Parser_Tactic_orelse___elambda__1___closed__1; +x_19 = l_Lean_Parser_ParserState_mkNode(x_17, x_18, x_5); +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_dec(x_8); +x_20 = l_Lean_Parser_regBuiltinTacticParserAttr___closed__4; +x_21 = lean_unsigned_to_nat(1u); +x_22 = l_Lean_Parser_categoryParserFn(x_20, x_21, x_2, x_9); +x_23 = l_Lean_Parser_Tactic_orelse___elambda__1___closed__1; +x_24 = l_Lean_Parser_ParserState_mkNode(x_22, x_23, x_5); +return x_24; +} +} +else +{ +lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; +lean_dec(x_12); +lean_dec(x_2); +x_25 = l_Lean_Parser_Tactic_orelse___elambda__1___closed__5; +x_26 = l_Lean_Parser_ParserState_mkErrorsAt(x_9, x_25, x_8); +x_27 = l_Lean_Parser_Tactic_orelse___elambda__1___closed__1; +x_28 = l_Lean_Parser_ParserState_mkNode(x_26, x_27, x_5); +return x_28; +} +} +else +{ +lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; +lean_dec(x_10); +lean_dec(x_2); +x_29 = l_Lean_Parser_Tactic_orelse___elambda__1___closed__5; +x_30 = l_Lean_Parser_ParserState_mkErrorsAt(x_9, x_29, x_8); +x_31 = l_Lean_Parser_Tactic_orelse___elambda__1___closed__1; +x_32 = l_Lean_Parser_ParserState_mkNode(x_30, x_31, x_5); +return x_32; +} +} +else +{ +lean_object* x_33; lean_object* x_34; +lean_dec(x_7); +lean_dec(x_3); +lean_dec(x_2); +x_33 = l_Lean_Parser_Tactic_orelse___elambda__1___closed__1; +x_34 = l_Lean_Parser_ParserState_mkNode(x_6, x_33, x_5); +return x_34; +} } } lean_object* _init_l_Lean_Parser_Tactic_orelse___closed__1() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Term_orelse___elambda__1___closed__4; -x_2 = lean_ctor_get(x_1, 0); -lean_inc(x_2); -x_3 = l_Lean_Parser_Tactic_orelse___elambda__1___closed__1; -x_4 = l_Lean_Parser_nodeInfo(x_3, x_2); -return x_4; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Parser_Tactic_orelse___elambda__1___closed__2; +x_3 = l_Lean_Parser_symbolInfo(x_2, x_1); +return x_3; } } lean_object* _init_l_Lean_Parser_Tactic_orelse___closed__2() { _start: { +uint8_t x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = 1; +x_2 = l_Lean_Parser_regBuiltinTacticParserAttr___closed__4; +x_3 = lean_unsigned_to_nat(1u); +x_4 = l_Lean_Parser_categoryParser(x_1, x_2, x_3); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Tactic_orelse___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_orelse___closed__2; +x_2 = lean_ctor_get(x_1, 0); +lean_inc(x_2); +x_3 = l_Lean_Parser_Tactic_orelse___closed__1; +x_4 = l_Lean_Parser_andthenInfo(x_3, x_2); +return x_4; +} +} +lean_object* _init_l_Lean_Parser_Tactic_orelse___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_epsilonInfo; +x_2 = l_Lean_Parser_Tactic_orelse___closed__3; +x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Tactic_orelse___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Tactic_orelse___elambda__1___closed__1; +x_2 = l_Lean_Parser_Tactic_orelse___closed__4; +x_3 = l_Lean_Parser_nodeInfo(x_1, x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Parser_Tactic_orelse___closed__6() { +_start: +{ lean_object* x_1; x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Tactic_orelse___elambda__1), 3, 0); return x_1; } } -lean_object* _init_l_Lean_Parser_Tactic_orelse___closed__3() { +lean_object* _init_l_Lean_Parser_Tactic_orelse___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_orelse___closed__1; -x_2 = l_Lean_Parser_Tactic_orelse___closed__2; +x_1 = l_Lean_Parser_Tactic_orelse___closed__5; +x_2 = l_Lean_Parser_Tactic_orelse___closed__6; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); @@ -2325,7 +2496,7 @@ lean_object* _init_l_Lean_Parser_Tactic_orelse() { _start: { lean_object* x_1; -x_1 = l_Lean_Parser_Tactic_orelse___closed__3; +x_1 = l_Lean_Parser_Tactic_orelse___closed__7; return x_1; } } @@ -2938,12 +3109,28 @@ 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(); +lean_mark_persistent(l_Lean_Parser_Tactic_orelse___elambda__1___closed__2); +l_Lean_Parser_Tactic_orelse___elambda__1___closed__3 = _init_l_Lean_Parser_Tactic_orelse___elambda__1___closed__3(); +lean_mark_persistent(l_Lean_Parser_Tactic_orelse___elambda__1___closed__3); +l_Lean_Parser_Tactic_orelse___elambda__1___closed__4 = _init_l_Lean_Parser_Tactic_orelse___elambda__1___closed__4(); +lean_mark_persistent(l_Lean_Parser_Tactic_orelse___elambda__1___closed__4); +l_Lean_Parser_Tactic_orelse___elambda__1___closed__5 = _init_l_Lean_Parser_Tactic_orelse___elambda__1___closed__5(); +lean_mark_persistent(l_Lean_Parser_Tactic_orelse___elambda__1___closed__5); l_Lean_Parser_Tactic_orelse___closed__1 = _init_l_Lean_Parser_Tactic_orelse___closed__1(); lean_mark_persistent(l_Lean_Parser_Tactic_orelse___closed__1); l_Lean_Parser_Tactic_orelse___closed__2 = _init_l_Lean_Parser_Tactic_orelse___closed__2(); lean_mark_persistent(l_Lean_Parser_Tactic_orelse___closed__2); l_Lean_Parser_Tactic_orelse___closed__3 = _init_l_Lean_Parser_Tactic_orelse___closed__3(); lean_mark_persistent(l_Lean_Parser_Tactic_orelse___closed__3); +l_Lean_Parser_Tactic_orelse___closed__4 = _init_l_Lean_Parser_Tactic_orelse___closed__4(); +lean_mark_persistent(l_Lean_Parser_Tactic_orelse___closed__4); +l_Lean_Parser_Tactic_orelse___closed__5 = _init_l_Lean_Parser_Tactic_orelse___closed__5(); +lean_mark_persistent(l_Lean_Parser_Tactic_orelse___closed__5); +l_Lean_Parser_Tactic_orelse___closed__6 = _init_l_Lean_Parser_Tactic_orelse___closed__6(); +lean_mark_persistent(l_Lean_Parser_Tactic_orelse___closed__6); +l_Lean_Parser_Tactic_orelse___closed__7 = _init_l_Lean_Parser_Tactic_orelse___closed__7(); +lean_mark_persistent(l_Lean_Parser_Tactic_orelse___closed__7); l_Lean_Parser_Tactic_orelse = _init_l_Lean_Parser_Tactic_orelse(); lean_mark_persistent(l_Lean_Parser_Tactic_orelse); res = l___regBuiltinParser_Lean_Parser_Tactic_orelse(lean_io_mk_world()); diff --git a/stage0/stdlib/Init/Lean/Parser/Term.c b/stage0/stdlib/Init/Lean/Parser/Term.c index 55eb2b9f2a..b6c8bf426e 100644 --- a/stage0/stdlib/Init/Lean/Parser/Term.c +++ b/stage0/stdlib/Init/Lean/Parser/Term.c @@ -35,6 +35,7 @@ lean_object* l_Lean_Parser_Term_letIdDecl; lean_object* l_Lean_Parser_Term_heq___elambda__1___closed__4; extern lean_object* l_Lean_Parser_charLit___closed__1; lean_object* l_Lean_Parser_Term_parser_x21___elambda__1___closed__5; +lean_object* l_Lean_Parser_Term_infixL___elambda__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltinParser_Lean_Parser_Term_iff(lean_object*); lean_object* l_Lean_mkAppStx(lean_object*, lean_object*); lean_object* l_Lean_Parser_manyAux___main___at_Lean_Parser_Term_letEqns___elambda__1___spec__1(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); @@ -129,7 +130,6 @@ lean_object* l_Lean_Parser_Term_parser_x21___elambda__1___closed__6; extern lean_object* l_Lean_Parser_Level_paren___closed__2; lean_object* l_Lean_Parser_Term_inaccessible___closed__1; lean_object* l_Lean_Parser_Term_not___closed__6; -lean_object* l_Lean_Parser_unicodeInfixR(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_haveAssign___elambda__1___closed__7; lean_object* l_Lean_Parser_Term_fun___elambda__1___closed__12; lean_object* l_Lean_Parser_Term_lt___elambda__1___closed__4; @@ -520,6 +520,7 @@ lean_object* l_Lean_Parser_Term_where___closed__4; 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_letPatDecl___elambda__1___closed__4; +lean_object* l_Lean_Parser_Term_infixR___elambda__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_div___elambda__1___closed__4; lean_object* l_Lean_Parser_Term_sort___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_arrayLit___closed__6; @@ -584,6 +585,7 @@ lean_object* l_Lean_Parser_Term_fun___closed__6; 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_binderDefault; +lean_object* l_Lean_Parser_unicodeSymbolFn___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_namedPattern___elambda__1___closed__5; lean_object* l_Lean_Parser_Term_fun___elambda__1___closed__9; lean_object* l_Lean_Parser_Term_uminus___elambda__1___closed__1; @@ -687,7 +689,6 @@ lean_object* l_Lean_Parser_Term_structInst___closed__4; lean_object* l_Lean_Parser_Term_num___closed__4; lean_object* l_Lean_Parser_dollarSymbol(uint8_t); lean_object* l_Lean_Parser_Term_suffices___elambda__1(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_infixR(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_fromTerm___closed__2; lean_object* l_Lean_Parser_Term_id___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_type___elambda__1___closed__5; @@ -1095,6 +1096,7 @@ lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_ 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_sortApp___elambda__1(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Term_unicodeInfixL(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_hole___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_structInstSource___closed__6; lean_object* l_Lean_Parser_Term_namedArgument___closed__2; @@ -1242,6 +1244,7 @@ lean_object* l_Lean_Parser_Term_match__syntax___closed__1; lean_object* l_Lean_Parser_Term_instBinder___closed__2; extern lean_object* l_Lean_Parser_regBuiltinTermParserAttr___closed__4; 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_doSeq___closed__5; lean_object* l_Lean_Parser_Term_emptyC___closed__4; lean_object* l_Lean_Parser_Term_band___closed__3; @@ -1279,6 +1282,7 @@ 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_Term_binderIdent; lean_object* l_Lean_Parser_Term_simpleBinder___elambda__1(lean_object*, lean_object*, lean_object*); +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_Term_implicitBinder___elambda__1___closed__2; lean_object* l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_where___elambda__1___spec__2___closed__4; @@ -1296,6 +1300,7 @@ 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_namedPattern___closed__4; lean_object* l_Lean_Parser_Term_seq___elambda__1___closed__3; +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; @@ -1397,6 +1402,7 @@ lean_object* l_Lean_Parser_Term_forall___elambda__1___closed__12; lean_object* l_Lean_Syntax_isTermId_x3f(lean_object*); 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_Term_infixL(lean_object*, lean_object*); 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; @@ -1434,7 +1440,6 @@ lean_object* l_Lean_Parser_Term_structInstSource___closed__1; 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_mapConst___elambda__1___closed__3; -lean_object* l_Lean_Parser_unicodeInfixL(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_namedPattern___closed__1; lean_object* l_Lean_Parser_Term_doId___closed__7; lean_object* l_Lean_Parser_Term_explicitBinder___closed__2; @@ -1644,6 +1649,7 @@ lean_object* l_Lean_Parser_Term_fcomp___closed__3; lean_object* l_Lean_Parser_Term_doLet___closed__2; lean_object* l_Lean_Parser_Term_type___closed__5; lean_object* l_Lean_Parser_Term_match___elambda__1___closed__10; +lean_object* l_Lean_Parser_Term_unicodeInfixR___boxed(lean_object*, lean_object*, lean_object*); 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_inaccessible___elambda__1___closed__6; @@ -1714,6 +1720,7 @@ lean_object* l_Lean_Parser_Term_dollarProj; lean_object* l_Lean_Parser_Term_dollarProj___elambda__1___closed__4; lean_object* l_Lean_Parser_Term_proj___closed__6; lean_object* l_Lean_Parser_Term_type___closed__4; +lean_object* l_Lean_Parser_Term_infixR___boxed(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_beq___closed__2; lean_object* l_Lean_Parser_Term_arrayLit___closed__2; lean_object* l_Lean_Parser_Term_ne___elambda__1___closed__4; @@ -1816,6 +1823,7 @@ lean_object* l___regBuiltinParser_Lean_Parser_Term_or(lean_object*); lean_object* l_Lean_Parser_Term_iff___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_antiquot___closed__1; lean_object* l_Lean_Parser_Term_doPat___closed__5; +lean_object* l_Lean_Parser_categoryParser___elambda__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_forall___elambda__1___closed__4; lean_object* l_Lean_Parser_numLitFn___rarg(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_binderDefault___closed__3; @@ -1830,7 +1838,6 @@ lean_object* l_Lean_Parser_Term_bindOp___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_do___elambda__1(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_letDecl___closed__3; lean_object* l_Lean_Parser_Term_subtype___elambda__1___closed__3; -lean_object* l_Lean_Parser_infixL(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_if___closed__7; lean_object* l_Lean_Parser_Term_match___closed__10; lean_object* l_Lean_Parser_Term_modN___elambda__1___closed__2; @@ -1861,8 +1868,10 @@ lean_object* l_Lean_Parser_Term_doExpr___closed__3; lean_object* l_Lean_Parser_Term_binderTactic___closed__3; lean_object* l_Lean_Parser_Term_doId___closed__6; lean_object* l_Lean_Parser_Term_leftArrow___elambda__1(lean_object*); +lean_object* l_Lean_Parser_Term_unicodeInfixR___elambda__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_emptyC___elambda__1___closed__7; 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_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_where___closed__10; @@ -1881,6 +1890,7 @@ lean_object* l_Lean_Parser_Term_bnot___elambda__1(lean_object*, lean_object*, le lean_object* l_Lean_Parser_Term_let; lean_object* l_Lean_Parser_Term_depArrow___closed__3; lean_object* l_Lean_Parser_Term_map; +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_forall___closed__6; lean_object* l_Lean_Parser_Term_mod___elambda__1___closed__2; @@ -1918,6 +1928,304 @@ lean_object* l_Lean_Parser_Term_proj___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_letIdDecl___closed__6; lean_object* l_Lean_Parser_Term_app___closed__4; extern lean_object* l_Lean_Parser_mkAntiquot___closed__1; +lean_object* l_Lean_Parser_Term_unicodeInfixR___elambda__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_inc(x_2); +lean_inc(x_4); +x_5 = l_Lean_Parser_ParserState_pushSyntax(x_4, x_2); +x_6 = lean_ctor_get(x_4, 3); +lean_inc(x_6); +lean_dec(x_4); +if (lean_obj_tag(x_6) == 0) +{ +lean_object* x_7; +x_7 = lean_apply_3(x_1, x_2, x_3, x_5); +return x_7; +} +else +{ +lean_dec(x_6); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +return x_5; +} +} +} +lean_object* l_Lean_Parser_Term_unicodeInfixR(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; uint8_t 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_inc(x_3); +x_4 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_4, 0, x_3); +x_5 = l_String_trim(x_1); +x_6 = l_String_trim(x_2); +lean_inc(x_6); +lean_inc(x_5); +x_7 = l_Lean_Parser_unicodeSymbolInfo(x_5, x_6, x_4); +x_8 = lean_alloc_closure((void*)(l_Lean_Parser_unicodeSymbolFn___rarg___boxed), 5, 2); +lean_closure_set(x_8, 0, x_5); +lean_closure_set(x_8, 1, x_6); +x_9 = lean_unsigned_to_nat(1u); +x_10 = lean_nat_sub(x_3, x_9); +lean_dec(x_3); +x_11 = 1; +x_12 = l_Lean_Parser_regBuiltinTermParserAttr___closed__4; +lean_inc(x_10); +x_13 = l_Lean_Parser_categoryParser(x_11, x_12, x_10); +x_14 = lean_ctor_get(x_13, 0); +lean_inc(x_14); +lean_dec(x_13); +x_15 = l_Lean_Parser_andthenInfo(x_7, x_14); +x_16 = lean_alloc_closure((void*)(l_Lean_Parser_categoryParser___elambda__1___rarg___boxed), 5, 2); +lean_closure_set(x_16, 0, x_12); +lean_closure_set(x_16, 1, x_10); +x_17 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn___rarg), 5, 2); +lean_closure_set(x_17, 0, x_8); +lean_closure_set(x_17, 1, x_16); +x_18 = l_Lean_Parser_epsilonInfo; +x_19 = l_Lean_Parser_andthenInfo(x_18, x_15); +x_20 = lean_alloc_closure((void*)(l_Lean_Parser_Term_unicodeInfixR___elambda__1), 4, 1); +lean_closure_set(x_20, 0, x_17); +x_21 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_21, 0, x_19); +lean_ctor_set(x_21, 1, x_20); +return x_21; +} +} +lean_object* l_Lean_Parser_Term_unicodeInfixR___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; +x_4 = l_Lean_Parser_Term_unicodeInfixR(x_1, x_2, x_3); +lean_dec(x_2); +lean_dec(x_1); +return x_4; +} +} +lean_object* l_Lean_Parser_Term_infixR___elambda__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_inc(x_2); +lean_inc(x_4); +x_5 = l_Lean_Parser_ParserState_pushSyntax(x_4, x_2); +x_6 = lean_ctor_get(x_4, 3); +lean_inc(x_6); +lean_dec(x_4); +if (lean_obj_tag(x_6) == 0) +{ +lean_object* x_7; +x_7 = lean_apply_3(x_1, x_2, x_3, x_5); +return x_7; +} +else +{ +lean_dec(x_6); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +return x_5; +} +} +} +lean_object* l_Lean_Parser_Term_infixR(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; uint8_t x_9; 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_inc(x_2); +x_3 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_3, 0, x_2); +x_4 = l_String_trim(x_1); +lean_inc(x_4); +x_5 = l_Lean_Parser_symbolInfo(x_4, x_3); +x_6 = lean_alloc_closure((void*)(l_Lean_Parser_symbolFn___rarg___boxed), 4, 1); +lean_closure_set(x_6, 0, x_4); +x_7 = lean_unsigned_to_nat(1u); +x_8 = lean_nat_sub(x_2, x_7); +lean_dec(x_2); +x_9 = 1; +x_10 = l_Lean_Parser_regBuiltinTermParserAttr___closed__4; +lean_inc(x_8); +x_11 = l_Lean_Parser_categoryParser(x_9, x_10, x_8); +x_12 = lean_ctor_get(x_11, 0); +lean_inc(x_12); +lean_dec(x_11); +x_13 = l_Lean_Parser_andthenInfo(x_5, x_12); +x_14 = lean_alloc_closure((void*)(l_Lean_Parser_categoryParser___elambda__1___rarg___boxed), 5, 2); +lean_closure_set(x_14, 0, x_10); +lean_closure_set(x_14, 1, x_8); +x_15 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn___rarg), 5, 2); +lean_closure_set(x_15, 0, x_6); +lean_closure_set(x_15, 1, x_14); +x_16 = l_Lean_Parser_epsilonInfo; +x_17 = l_Lean_Parser_andthenInfo(x_16, x_13); +x_18 = lean_alloc_closure((void*)(l_Lean_Parser_Term_infixR___elambda__1), 4, 1); +lean_closure_set(x_18, 0, x_15); +x_19 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_19, 0, x_17); +lean_ctor_set(x_19, 1, x_18); +return x_19; +} +} +lean_object* l_Lean_Parser_Term_infixR___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = l_Lean_Parser_Term_infixR(x_1, x_2); +lean_dec(x_1); +return x_3; +} +} +lean_object* l_Lean_Parser_Term_unicodeInfixL___elambda__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_inc(x_2); +lean_inc(x_4); +x_5 = l_Lean_Parser_ParserState_pushSyntax(x_4, x_2); +x_6 = lean_ctor_get(x_4, 3); +lean_inc(x_6); +lean_dec(x_4); +if (lean_obj_tag(x_6) == 0) +{ +lean_object* x_7; +x_7 = lean_apply_3(x_1, x_2, x_3, x_5); +return x_7; +} +else +{ +lean_dec(x_6); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +return x_5; +} +} +} +lean_object* l_Lean_Parser_Term_unicodeInfixL(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; uint8_t 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_inc(x_3); +x_4 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_4, 0, x_3); +x_5 = l_String_trim(x_1); +x_6 = l_String_trim(x_2); +lean_inc(x_6); +lean_inc(x_5); +x_7 = l_Lean_Parser_unicodeSymbolInfo(x_5, x_6, x_4); +x_8 = lean_alloc_closure((void*)(l_Lean_Parser_unicodeSymbolFn___rarg___boxed), 5, 2); +lean_closure_set(x_8, 0, x_5); +lean_closure_set(x_8, 1, x_6); +x_9 = 1; +x_10 = l_Lean_Parser_regBuiltinTermParserAttr___closed__4; +lean_inc(x_3); +x_11 = l_Lean_Parser_categoryParser(x_9, x_10, x_3); +x_12 = lean_ctor_get(x_11, 0); +lean_inc(x_12); +lean_dec(x_11); +x_13 = l_Lean_Parser_andthenInfo(x_7, x_12); +x_14 = lean_alloc_closure((void*)(l_Lean_Parser_categoryParser___elambda__1___rarg___boxed), 5, 2); +lean_closure_set(x_14, 0, x_10); +lean_closure_set(x_14, 1, x_3); +x_15 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn___rarg), 5, 2); +lean_closure_set(x_15, 0, x_8); +lean_closure_set(x_15, 1, x_14); +x_16 = l_Lean_Parser_epsilonInfo; +x_17 = l_Lean_Parser_andthenInfo(x_16, x_13); +x_18 = lean_alloc_closure((void*)(l_Lean_Parser_Term_unicodeInfixL___elambda__1), 4, 1); +lean_closure_set(x_18, 0, x_15); +x_19 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_19, 0, x_17); +lean_ctor_set(x_19, 1, x_18); +return x_19; +} +} +lean_object* l_Lean_Parser_Term_unicodeInfixL___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; +x_4 = l_Lean_Parser_Term_unicodeInfixL(x_1, x_2, x_3); +lean_dec(x_2); +lean_dec(x_1); +return x_4; +} +} +lean_object* l_Lean_Parser_Term_infixL___elambda__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_inc(x_2); +lean_inc(x_4); +x_5 = l_Lean_Parser_ParserState_pushSyntax(x_4, x_2); +x_6 = lean_ctor_get(x_4, 3); +lean_inc(x_6); +lean_dec(x_4); +if (lean_obj_tag(x_6) == 0) +{ +lean_object* x_7; +x_7 = lean_apply_3(x_1, x_2, x_3, x_5); +return x_7; +} +else +{ +lean_dec(x_6); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +return x_5; +} +} +} +lean_object* l_Lean_Parser_Term_infixL(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; 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; lean_object* x_16; lean_object* x_17; +lean_inc(x_2); +x_3 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_3, 0, x_2); +x_4 = l_String_trim(x_1); +lean_inc(x_4); +x_5 = l_Lean_Parser_symbolInfo(x_4, x_3); +x_6 = lean_alloc_closure((void*)(l_Lean_Parser_symbolFn___rarg___boxed), 4, 1); +lean_closure_set(x_6, 0, x_4); +x_7 = 1; +x_8 = l_Lean_Parser_regBuiltinTermParserAttr___closed__4; +lean_inc(x_2); +x_9 = l_Lean_Parser_categoryParser(x_7, x_8, x_2); +x_10 = lean_ctor_get(x_9, 0); +lean_inc(x_10); +lean_dec(x_9); +x_11 = l_Lean_Parser_andthenInfo(x_5, x_10); +x_12 = lean_alloc_closure((void*)(l_Lean_Parser_categoryParser___elambda__1___rarg___boxed), 5, 2); +lean_closure_set(x_12, 0, x_8); +lean_closure_set(x_12, 1, x_2); +x_13 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn___rarg), 5, 2); +lean_closure_set(x_13, 0, x_6); +lean_closure_set(x_13, 1, x_12); +x_14 = l_Lean_Parser_epsilonInfo; +x_15 = l_Lean_Parser_andthenInfo(x_14, x_11); +x_16 = lean_alloc_closure((void*)(l_Lean_Parser_Term_infixL___elambda__1), 4, 1); +lean_closure_set(x_16, 0, x_13); +x_17 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_17, 0, x_15); +lean_ctor_set(x_17, 1, x_16); +return x_17; +} +} +lean_object* l_Lean_Parser_Term_infixL___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = l_Lean_Parser_Term_infixL(x_1, x_2); +lean_dec(x_1); +return x_3; +} +} lean_object* _init_l___private_Init_Lean_Parser_Parser_2__sepByFnAux___main___at_Lean_Parser_Term_explicitUniv___elambda__1___spec__2___closed__1() { _start: { @@ -30381,7 +30689,7 @@ 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__6; x_2 = l_Lean_Parser_Term_depArrow___elambda__1___closed__8; x_3 = lean_unsigned_to_nat(25u); -x_4 = l_Lean_Parser_unicodeInfixR(x_1, x_2, x_3); +x_4 = l_Lean_Parser_Term_unicodeInfixR(x_1, x_2, x_3); return x_4; } } @@ -31951,7 +32259,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Term_fcomp___elambda__1___closed__3; x_2 = lean_unsigned_to_nat(90u); -x_3 = l_Lean_Parser_infixR(x_1, x_2); +x_3 = l_Lean_Parser_Term_infixR(x_1, x_2); return x_3; } } @@ -32056,7 +32364,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Term_prod___elambda__1___closed__3; x_2 = lean_unsigned_to_nat(35u); -x_3 = l_Lean_Parser_infixR(x_1, x_2); +x_3 = l_Lean_Parser_Term_infixR(x_1, x_2); return x_3; } } @@ -32161,7 +32469,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Term_add___elambda__1___closed__3; x_2 = lean_unsigned_to_nat(65u); -x_3 = l_Lean_Parser_infixL(x_1, x_2); +x_3 = l_Lean_Parser_Term_infixL(x_1, x_2); return x_3; } } @@ -32266,7 +32574,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Term_sub___elambda__1___closed__3; x_2 = lean_unsigned_to_nat(65u); -x_3 = l_Lean_Parser_infixL(x_1, x_2); +x_3 = l_Lean_Parser_Term_infixL(x_1, x_2); return x_3; } } @@ -32371,7 +32679,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Term_mul___elambda__1___closed__3; x_2 = lean_unsigned_to_nat(70u); -x_3 = l_Lean_Parser_infixL(x_1, x_2); +x_3 = l_Lean_Parser_Term_infixL(x_1, x_2); return x_3; } } @@ -32476,7 +32784,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Term_div___elambda__1___closed__3; x_2 = lean_unsigned_to_nat(70u); -x_3 = l_Lean_Parser_infixL(x_1, x_2); +x_3 = l_Lean_Parser_Term_infixL(x_1, x_2); return x_3; } } @@ -32581,7 +32889,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Term_mod___elambda__1___closed__3; x_2 = lean_unsigned_to_nat(70u); -x_3 = l_Lean_Parser_infixL(x_1, x_2); +x_3 = l_Lean_Parser_Term_infixL(x_1, x_2); return x_3; } } @@ -32686,7 +32994,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Term_modN___elambda__1___closed__3; x_2 = lean_unsigned_to_nat(70u); -x_3 = l_Lean_Parser_infixL(x_1, x_2); +x_3 = l_Lean_Parser_Term_infixL(x_1, x_2); return x_3; } } @@ -32791,7 +33099,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Term_pow___elambda__1___closed__3; x_2 = lean_unsigned_to_nat(80u); -x_3 = l_Lean_Parser_infixR(x_1, x_2); +x_3 = l_Lean_Parser_Term_infixR(x_1, x_2); return x_3; } } @@ -32905,7 +33213,7 @@ lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = l_Lean_Parser_Term_le___elambda__1___closed__3; x_2 = l_Lean_Parser_Term_le___elambda__1___closed__4; x_3 = lean_unsigned_to_nat(50u); -x_4 = l_Lean_Parser_unicodeInfixL(x_1, x_2, x_3); +x_4 = l_Lean_Parser_Term_unicodeInfixL(x_1, x_2, x_3); return x_4; } } @@ -33019,7 +33327,7 @@ lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = l_Lean_Parser_Term_ge___elambda__1___closed__3; x_2 = l_Lean_Parser_Term_ge___elambda__1___closed__4; x_3 = lean_unsigned_to_nat(50u); -x_4 = l_Lean_Parser_unicodeInfixL(x_1, x_2, x_3); +x_4 = l_Lean_Parser_Term_unicodeInfixL(x_1, x_2, x_3); return x_4; } } @@ -33124,7 +33432,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Term_lt___elambda__1___closed__3; x_2 = lean_unsigned_to_nat(50u); -x_3 = l_Lean_Parser_infixL(x_1, x_2); +x_3 = l_Lean_Parser_Term_infixL(x_1, x_2); return x_3; } } @@ -33229,7 +33537,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Term_gt___elambda__1___closed__3; x_2 = lean_unsigned_to_nat(50u); -x_3 = l_Lean_Parser_infixL(x_1, x_2); +x_3 = l_Lean_Parser_Term_infixL(x_1, x_2); return x_3; } } @@ -33334,7 +33642,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Term_eq___elambda__1___closed__3; x_2 = lean_unsigned_to_nat(50u); -x_3 = l_Lean_Parser_infixL(x_1, x_2); +x_3 = l_Lean_Parser_Term_infixL(x_1, x_2); return x_3; } } @@ -33439,7 +33747,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Term_ne___elambda__1___closed__3; x_2 = lean_unsigned_to_nat(50u); -x_3 = l_Lean_Parser_infixL(x_1, x_2); +x_3 = l_Lean_Parser_Term_infixL(x_1, x_2); return x_3; } } @@ -33544,7 +33852,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Term_beq___elambda__1___closed__3; x_2 = lean_unsigned_to_nat(50u); -x_3 = l_Lean_Parser_infixL(x_1, x_2); +x_3 = l_Lean_Parser_Term_infixL(x_1, x_2); return x_3; } } @@ -33649,7 +33957,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Term_bne___elambda__1___closed__3; x_2 = lean_unsigned_to_nat(50u); -x_3 = l_Lean_Parser_infixL(x_1, x_2); +x_3 = l_Lean_Parser_Term_infixL(x_1, x_2); return x_3; } } @@ -33763,7 +34071,7 @@ lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = l_Lean_Parser_Term_heq___elambda__1___closed__3; x_2 = l_Lean_Parser_Term_heq___elambda__1___closed__4; x_3 = lean_unsigned_to_nat(50u); -x_4 = l_Lean_Parser_unicodeInfixL(x_1, x_2, x_3); +x_4 = l_Lean_Parser_Term_unicodeInfixL(x_1, x_2, x_3); return x_4; } } @@ -33868,7 +34176,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Term_equiv___elambda__1___closed__3; x_2 = lean_unsigned_to_nat(50u); -x_3 = l_Lean_Parser_infixL(x_1, x_2); +x_3 = l_Lean_Parser_Term_infixL(x_1, x_2); return x_3; } } @@ -33973,7 +34281,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Term_subst___elambda__1___closed__3; x_2 = lean_unsigned_to_nat(75u); -x_3 = l_Lean_Parser_infixR(x_1, x_2); +x_3 = l_Lean_Parser_Term_infixR(x_1, x_2); return x_3; } } @@ -34087,7 +34395,7 @@ lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = l_Lean_Parser_Term_and___elambda__1___closed__3; x_2 = l_Lean_Parser_Term_and___elambda__1___closed__4; x_3 = lean_unsigned_to_nat(35u); -x_4 = l_Lean_Parser_unicodeInfixR(x_1, x_2, x_3); +x_4 = l_Lean_Parser_Term_unicodeInfixR(x_1, x_2, x_3); return x_4; } } @@ -34201,7 +34509,7 @@ lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = l_Lean_Parser_Term_or___elambda__1___closed__3; x_2 = l_Lean_Parser_Term_or___elambda__1___closed__4; x_3 = lean_unsigned_to_nat(30u); -x_4 = l_Lean_Parser_unicodeInfixR(x_1, x_2, x_3); +x_4 = l_Lean_Parser_Term_unicodeInfixR(x_1, x_2, x_3); return x_4; } } @@ -34315,7 +34623,7 @@ lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = l_Lean_Parser_Term_iff___elambda__1___closed__3; x_2 = l_Lean_Parser_Term_iff___elambda__1___closed__4; x_3 = lean_unsigned_to_nat(20u); -x_4 = l_Lean_Parser_unicodeInfixL(x_1, x_2, x_3); +x_4 = l_Lean_Parser_Term_unicodeInfixL(x_1, x_2, x_3); return x_4; } } @@ -34420,7 +34728,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Term_band___elambda__1___closed__3; x_2 = lean_unsigned_to_nat(35u); -x_3 = l_Lean_Parser_infixL(x_1, x_2); +x_3 = l_Lean_Parser_Term_infixL(x_1, x_2); return x_3; } } @@ -34525,7 +34833,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Term_bor___elambda__1___closed__3; x_2 = lean_unsigned_to_nat(30u); -x_3 = l_Lean_Parser_infixL(x_1, x_2); +x_3 = l_Lean_Parser_Term_infixL(x_1, x_2); return x_3; } } @@ -34630,7 +34938,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Term_append___elambda__1___closed__3; x_2 = lean_unsigned_to_nat(65u); -x_3 = l_Lean_Parser_infixL(x_1, x_2); +x_3 = l_Lean_Parser_Term_infixL(x_1, x_2); return x_3; } } @@ -34735,7 +35043,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Term_cons___elambda__1___closed__3; x_2 = lean_unsigned_to_nat(67u); -x_3 = l_Lean_Parser_infixR(x_1, x_2); +x_3 = l_Lean_Parser_Term_infixR(x_1, x_2); return x_3; } } @@ -34840,7 +35148,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Term_orelse___elambda__1___closed__3; x_2 = lean_unsigned_to_nat(2u); -x_3 = l_Lean_Parser_infixR(x_1, x_2); +x_3 = l_Lean_Parser_Term_infixR(x_1, x_2); return x_3; } } @@ -34945,7 +35253,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Term_orM___elambda__1___closed__3; x_2 = lean_unsigned_to_nat(30u); -x_3 = l_Lean_Parser_infixR(x_1, x_2); +x_3 = l_Lean_Parser_Term_infixR(x_1, x_2); return x_3; } } @@ -35050,7 +35358,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Term_andM___elambda__1___closed__3; x_2 = lean_unsigned_to_nat(35u); -x_3 = l_Lean_Parser_infixR(x_1, x_2); +x_3 = l_Lean_Parser_Term_infixR(x_1, x_2); return x_3; } } @@ -35155,7 +35463,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Term_andthen___elambda__1___closed__3; x_2 = lean_unsigned_to_nat(60u); -x_3 = l_Lean_Parser_infixR(x_1, x_2); +x_3 = l_Lean_Parser_Term_infixR(x_1, x_2); return x_3; } } @@ -35260,7 +35568,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Term_bindOp___elambda__1___closed__3; x_2 = lean_unsigned_to_nat(55u); -x_3 = l_Lean_Parser_infixR(x_1, x_2); +x_3 = l_Lean_Parser_Term_infixR(x_1, x_2); return x_3; } } @@ -35365,7 +35673,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Term_mapRev___elambda__1___closed__3; x_2 = lean_unsigned_to_nat(100u); -x_3 = l_Lean_Parser_infixR(x_1, x_2); +x_3 = l_Lean_Parser_Term_infixR(x_1, x_2); return x_3; } } @@ -35470,7 +35778,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Term_seq___elambda__1___closed__3; x_2 = lean_unsigned_to_nat(60u); -x_3 = l_Lean_Parser_infixL(x_1, x_2); +x_3 = l_Lean_Parser_Term_infixL(x_1, x_2); return x_3; } } @@ -35575,7 +35883,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Term_seqLeft___elambda__1___closed__3; x_2 = lean_unsigned_to_nat(60u); -x_3 = l_Lean_Parser_infixL(x_1, x_2); +x_3 = l_Lean_Parser_Term_infixL(x_1, x_2); return x_3; } } @@ -35680,7 +35988,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Term_seqRight___elambda__1___closed__3; x_2 = lean_unsigned_to_nat(60u); -x_3 = l_Lean_Parser_infixR(x_1, x_2); +x_3 = l_Lean_Parser_Term_infixR(x_1, x_2); return x_3; } } @@ -35785,7 +36093,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Term_map___elambda__1___closed__3; x_2 = lean_unsigned_to_nat(100u); -x_3 = l_Lean_Parser_infixR(x_1, x_2); +x_3 = l_Lean_Parser_Term_infixR(x_1, x_2); return x_3; } } @@ -35890,7 +36198,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Term_mapConst___elambda__1___closed__3; x_2 = lean_unsigned_to_nat(100u); -x_3 = l_Lean_Parser_infixR(x_1, x_2); +x_3 = l_Lean_Parser_Term_infixR(x_1, x_2); return x_3; } } @@ -35995,7 +36303,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Term_mapConstRev___elambda__1___closed__3; x_2 = lean_unsigned_to_nat(100u); -x_3 = l_Lean_Parser_infixR(x_1, x_2); +x_3 = l_Lean_Parser_Term_infixR(x_1, x_2); return x_3; } } diff --git a/stage0/stdlib/Init/LeanExt.c b/stage0/stdlib/Init/LeanExt.c index 7ef121781d..ca38ed20ac 100644 --- a/stage0/stdlib/Init/LeanExt.c +++ b/stage0/stdlib/Init/LeanExt.c @@ -1,6 +1,6 @@ // Lean compiler output // Module: Init.LeanExt -// Imports: Init.Data.String.Basic Init.Data.UInt +// Imports: Init.Data.String.Basic Init.Data.UInt Init.Data.Hashable #include "runtime/lean.h" #if defined(__clang__) #pragma clang diagnostic ignored "-Wunused-parameter" @@ -19,19 +19,27 @@ lean_object* l_Lean_ParserDescr_optional(uint8_t, lean_object*); lean_object* l_Lean_ParserDescr_lookahead(uint8_t, lean_object*); lean_object* l_Lean_ParserDescr_many(uint8_t, lean_object*); lean_object* l_Lean_ParserDescr_ident(uint8_t); +lean_object* l_Lean_mkNameSimple(lean_object*); lean_object* l_Lean_ParserDescr_andthen___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_ParserDescr_char(uint8_t); +lean_object* l_Lean_Name_inhabited; extern lean_object* l_String_splitAux___main___closed__1; +lean_object* l_Lean_Name_hashable___closed__1; lean_object* l_Lean_ParserDescr_try(uint8_t, lean_object*); +lean_object* l_Lean_Name_hashable; lean_object* l_Lean_ParserDescr_str(uint8_t); lean_object* l_Lean_ParserDescrCore_inhabited(uint8_t); lean_object* l_Lean_ParserDescr_many1(uint8_t, lean_object*); lean_object* l_Lean_ParserDescr_many___boxed(lean_object*, lean_object*); lean_object* l_Lean_ParserDescr_num___boxed(lean_object*); lean_object* l_Lean_ParserDescr_many1___boxed(lean_object*, lean_object*); +lean_object* l_Lean_Name_hashEx___boxed(lean_object*); +size_t lean_name_hash(lean_object*); +size_t l_Lean_Name_hash(lean_object*); lean_object* l_Lean_ParserDescr_parser(lean_object*, lean_object*); lean_object* l_Lean_ParserDescr_lookahead___boxed(lean_object*, lean_object*); lean_object* l_Lean_ParserDescr_sepBy(uint8_t, lean_object*, lean_object*); +lean_object* lean_name_mk_string(lean_object*, lean_object*); lean_object* l_Lean_ParserDescr_andthen(uint8_t, lean_object*, lean_object*); lean_object* l_Lean_ParserDescr_symbol___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_ParserDescr_node(uint8_t, lean_object*, lean_object*); @@ -39,17 +47,128 @@ lean_object* l_Lean_ParserDescr_try___boxed(lean_object*, lean_object*); lean_object* l_Lean_ParserDescr_ident___boxed(lean_object*); lean_object* l_Lean_ParserDescr_str___boxed(lean_object*); lean_object* l_Lean_ParserDescr_node___boxed(lean_object*, lean_object*, lean_object*); +size_t lean_usize_of_nat(lean_object*); lean_object* l_Lean_ParserDescr_nonReservedSymbol___boxed(lean_object*, lean_object*); lean_object* l_Lean_ParserDescrCore_inhabited___boxed(lean_object*); lean_object* l_Lean_ParserDescr_sepBy1(uint8_t, lean_object*, lean_object*); lean_object* l_Lean_ParserDescr_char___boxed(lean_object*); lean_object* l_Lean_ParserDescr_orelse___boxed(lean_object*, lean_object*, lean_object*); +size_t lean_usize_mix_hash(size_t, size_t); lean_object* l_Lean_ParserDescr_sepBy___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_ParserDescr_num(uint8_t); lean_object* l_Lean_ParserDescr_symbol(uint8_t, lean_object*, lean_object*); lean_object* l_Lean_ParserDescr_optional___boxed(lean_object*, lean_object*); lean_object* l_Lean_ParserDescr_nonReservedSymbol(lean_object*, uint8_t); +lean_object* l_Lean_Name_hash___boxed(lean_object*); +lean_object* lean_name_mk_numeral(lean_object*, lean_object*); +size_t lean_string_hash(lean_object*); lean_object* l_Lean_ParserDescr_sepBy1___boxed(lean_object*, lean_object*, lean_object*); +lean_object* _init_l_Lean_Name_inhabited() { +_start: +{ +lean_object* x_1; +x_1 = lean_box(0); +return x_1; +} +} +size_t l_Lean_Name_hash(lean_object* x_1) { +_start: +{ +if (lean_obj_tag(x_1) == 0) +{ +size_t x_2; +x_2 = 1723; +return x_2; +} +else +{ +size_t x_3; +x_3 = lean_ctor_get_usize(x_1, 2); +return x_3; +} +} +} +lean_object* l_Lean_Name_hash___boxed(lean_object* x_1) { +_start: +{ +size_t x_2; lean_object* x_3; +x_2 = l_Lean_Name_hash(x_1); +lean_dec(x_1); +x_3 = lean_box_usize(x_2); +return x_3; +} +} +lean_object* _init_l_Lean_Name_hashable___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Name_hash___boxed), 1, 0); +return x_1; +} +} +lean_object* _init_l_Lean_Name_hashable() { +_start: +{ +lean_object* x_1; +x_1 = l_Lean_Name_hashable___closed__1; +return x_1; +} +} +size_t lean_name_hash(lean_object* x_1) { +_start: +{ +size_t x_2; +x_2 = l_Lean_Name_hash(x_1); +lean_dec(x_1); +return x_2; +} +} +lean_object* l_Lean_Name_hashEx___boxed(lean_object* x_1) { +_start: +{ +size_t x_2; lean_object* x_3; +x_2 = lean_name_hash(x_1); +x_3 = lean_box_usize(x_2); +return x_3; +} +} +lean_object* lean_name_mk_string(lean_object* x_1, lean_object* x_2) { +_start: +{ +size_t x_3; size_t x_4; size_t x_5; lean_object* x_6; +x_3 = l_Lean_Name_hash(x_1); +x_4 = lean_string_hash(x_2); +x_5 = lean_usize_mix_hash(x_3, x_4); +x_6 = lean_alloc_ctor(1, 2, sizeof(size_t)*1); +lean_ctor_set(x_6, 0, x_1); +lean_ctor_set(x_6, 1, x_2); +lean_ctor_set_usize(x_6, 2, x_5); +return x_6; +} +} +lean_object* lean_name_mk_numeral(lean_object* x_1, lean_object* x_2) { +_start: +{ +size_t x_3; size_t x_4; size_t x_5; lean_object* x_6; +x_3 = l_Lean_Name_hash(x_1); +x_4 = lean_usize_of_nat(x_2); +x_5 = lean_usize_mix_hash(x_3, x_4); +x_6 = lean_alloc_ctor(2, 2, sizeof(size_t)*1); +lean_ctor_set(x_6, 0, x_1); +lean_ctor_set(x_6, 1, x_2); +lean_ctor_set_usize(x_6, 2, x_5); +return x_6; +} +} +lean_object* l_Lean_mkNameSimple(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; +x_2 = lean_box(0); +x_3 = lean_name_mk_string(x_2, x_1); +return x_3; +} +} lean_object* l_Lean_ParserDescrCore_inhabited(uint8_t x_1) { _start: { @@ -415,6 +534,7 @@ return x_3; } lean_object* initialize_Init_Data_String_Basic(lean_object*); lean_object* initialize_Init_Data_UInt(lean_object*); +lean_object* initialize_Init_Data_Hashable(lean_object*); static bool _G_initialized = false; lean_object* initialize_Init_LeanExt(lean_object* w) { lean_object * res; @@ -426,6 +546,15 @@ lean_dec_ref(res); res = initialize_Init_Data_UInt(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); +res = initialize_Init_Data_Hashable(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +l_Lean_Name_inhabited = _init_l_Lean_Name_inhabited(); +lean_mark_persistent(l_Lean_Name_inhabited); +l_Lean_Name_hashable___closed__1 = _init_l_Lean_Name_hashable___closed__1(); +lean_mark_persistent(l_Lean_Name_hashable___closed__1); +l_Lean_Name_hashable = _init_l_Lean_Name_hashable(); +lean_mark_persistent(l_Lean_Name_hashable); l_Lean_ParserDescr_pushLeading = _init_l_Lean_ParserDescr_pushLeading(); lean_mark_persistent(l_Lean_ParserDescr_pushLeading); return lean_mk_io_result(lean_box(0));