diff --git a/stage0/src/Init/Meta.lean b/stage0/src/Init/Meta.lean index 3ac8c6d0f9..42382b39e0 100644 --- a/stage0/src/Init/Meta.lean +++ b/stage0/src/Init/Meta.lean @@ -267,6 +267,12 @@ namespace Syntax def mkSep (a : Array Syntax) (sep : Syntax) : Syntax := mkNullNode <| mkSepArray a sep +def SepArray.ofElems {sep} (elems : Array Syntax) : SepArray sep := +⟨mkSepArray elems (mkAtom sep)⟩ + +instance (sep) : Coe (Array Syntax) (SepArray sep) := +⟨SepArray.ofElems⟩ + /-- Create syntax representing a Lean term application, but avoid degenerate empty applications. -/ def mkApp (fn : Syntax) : (args : Array Syntax) → Syntax | #[] => fn @@ -675,6 +681,16 @@ def mapSepElems (a : Array Syntax) (f : Syntax → Syntax) : Array Syntax := end Array +namespace Lean.Syntax.SepArray + +def getElems {sep} (sa : SepArray sep) : Array Syntax := +sa.elemsAndSeps.getSepElems + +instance (sep) : Coe (SepArray sep) (Array Syntax) := +⟨getElems⟩ + +end Lean.Syntax.SepArray + /-- Gadget for automatic parameter support. This is similar to the `optParam` gadget, but it uses the given tactic. diff --git a/stage0/src/Init/Prelude.lean b/stage0/src/Init/Prelude.lean index 877bba95c5..e17247cbbf 100644 --- a/stage0/src/Init/Prelude.lean +++ b/stage0/src/Init/Prelude.lean @@ -1689,6 +1689,12 @@ def getPos (stx : Syntax) : Option String.Pos := | some info => info.pos | _ => none +/-- + An array of syntax elements interspersed with separators. Can be coerced to/from `Array Syntax` to automatically + remove/insert the separators. -/ +structure SepArray (sep : String) := +(elemsAndSeps : Array Syntax) + end Syntax def mkAtomFrom (src : Syntax) (val : String) : Syntax := diff --git a/stage0/src/Lean/Elab/Binders.lean b/stage0/src/Lean/Elab/Binders.lean index 084a6d82e0..f92ed3a61c 100644 --- a/stage0/src/Lean/Elab/Binders.lean +++ b/stage0/src/Lean/Elab/Binders.lean @@ -46,7 +46,7 @@ partial def quoteAutoTactic : Syntax → TermElabM Syntax else let mut quotedArgs ← `(Array.empty) for arg in args do - if k == nullKind && arg.isAntiquotSplice then + if k == nullKind && (arg.isAntiquotSuffixSplice || arg.isAntiquotScope) then throwErrorAt arg "invalid auto tactic, antiquotation is not allowed" else let quotedArg ← quoteAutoTactic arg diff --git a/stage0/src/Lean/Elab/Quotation.lean b/stage0/src/Lean/Elab/Quotation.lean index 4dc595b6e6..e61890af2f 100644 --- a/stage0/src/Lean/Elab/Quotation.lean +++ b/stage0/src/Lean/Elab/Quotation.lean @@ -29,6 +29,10 @@ private partial def floatOutAntiquotTerms : Syntax → StateT (Syntax → TermEl Syntax.node k (← args.mapM floatOutAntiquotTerms) | stx => pure stx +private def getSepFromSplice (splice : Syntax) : Syntax := do + let Syntax.atom _ sep ← getAntiquotSpliceSuffix splice | unreachable! + Syntax.mkStrLit (sep.dropRight 1) + -- Elaborate the content of a syntax quotation term private partial def quoteSyntax : Syntax → TermElabM Syntax | Syntax.ident info rawVal val preresolved => do @@ -42,20 +46,27 @@ private partial def quoteSyntax : Syntax → TermElabM Syntax -- if antiquotation, insert contents as-is, else recurse | stx@(Syntax.node k _) => do if isAntiquot stx && !isEscapedAntiquot stx then + getAntiquotTerm stx + else if isAntiquotSuffixSplice stx && !isEscapedAntiquot stx then -- splices must occur in a `many` node - if isAntiquotSplice stx then throwErrorAt stx "unexpected antiquotation splice" - else pure $ getAntiquotTerm stx + throwErrorAt stx "unexpected antiquotation splice" else if isAntiquotScope stx && !isEscapedAntiquot stx then throwErrorAt stx "unexpected antiquotation splice" else let empty ← `(Array.empty); -- if escaped antiquotation, decrement by one escape level let stx := unescapeAntiquot stx - let args ← stx.getArgs.foldlM (fun args arg => - if k == nullKind && isAntiquotSplice arg then - -- antiquotation splice pattern: inject args array - `(Array.appendCore $args $(getAntiquotTerm arg)) - else if k == nullKind && isAntiquotScope arg then do + let args ← stx.getArgs.foldlM (fun args arg => do + if k == nullKind && isAntiquotSuffixSplice arg then + let antiquot := getAntiquotSuffixSpliceInner arg + match antiquotSuffixSplice? arg with + | `optional => `(Array.appendCore $args (match $(getAntiquotTerm antiquot):term with + | some x => Array.empty.push x + | none => Array.empty)) + | `many => `(Array.appendCore $args $(getAntiquotTerm antiquot)) + | `sepBy => `(Array.appendCore $args (@SepArray.elemsAndSeps $(getSepFromSplice arg) $(getAntiquotTerm antiquot))) + | k => throwErrorAt! arg "invalid antiquotation suffix splice kind '{k}'" + else if k == nullKind && isAntiquotScope arg then let k := antiquotScopeKind? arg let (arg, bindLets) ← floatOutAntiquotTerms arg |>.run pure let inner ← (getAntiquotScopeContents arg).mapM quoteSyntax @@ -74,8 +85,7 @@ private partial def quoteSyntax : Syntax → TermElabM Syntax | _ => throwErrorAt stx "too many antiquotations in antiquotation scope; don't be greedy" let arr ← if k == `sepBy then - let Syntax.atom _ sep ← getAntiquotScopeSuffix arg | unreachable! - `(mkSepArray $arr (mkAtom $(Syntax.mkStrLit (sep.dropRight 1)))) + `(mkSepArray $arr (mkAtom $(getSepFromSplice arg))) else arr let arr ← bindLets arr `(Array.appendCore $args $arr) @@ -194,15 +204,17 @@ private def getHeadInfo (alt : Alt) : HeadInfo := -- let e := stx; ... let kind := if k == Name.anonymous then none else k let anti := getAntiquotTerm quoted - -- Splices should only appear inside a nullKind node, see next case - if isAntiquotSplice quoted then unconditional $ fun _ => throwErrorAt quoted "unexpected antiquotation splice" - else if isAntiquotScope quoted then unconditional $ fun _ => throwErrorAt quoted "unexpected antiquotation scope" - else if anti.isIdent then basic { kind := kind, rhsFn := fun rhs => `(let $anti := discr; $rhs) } + if anti.isIdent then basic { kind := kind, rhsFn := fun rhs => `(let $anti := discr; $rhs) } else unconditional fun _ => throwErrorAt! anti "match_syntax: antiquotation must be variable {anti}" - else if isAntiquotSplicePat quoted && quoted.getArgs.size == 1 then - -- quotation is a single antiquotation splice => bind args array - let anti := getAntiquotTerm quoted[0] - unconditional fun rhs => `(let $anti := Syntax.getArgs discr; $rhs) + else if isAntiquotSuffixSplice quoted then unconditional $ fun _ => throwErrorAt quoted "unexpected antiquotation splice" + else if isAntiquotScope quoted then unconditional $ fun _ => throwErrorAt quoted "unexpected antiquotation splice" + else if quoted.getArgs.size == 1 && isAntiquotSuffixSplice quoted[0] then + let anti := getAntiquotTerm (getAntiquotSuffixSpliceInner quoted[0]) + unconditional fun rhs => match antiquotSuffixSplice? quoted[0] with + | `optional => `(let $anti := Syntax.getOptional? discr; $rhs) + | `many => `(let $anti := Syntax.getArgs discr; $rhs) + | `sepBy => `(let $anti := @SepArray.mk $(getSepFromSplice quoted[0]) (Syntax.getArgs discr); $rhs) + | k => throwErrorAt! quoted "invalid antiquotation suffix splice kind '{k}'" -- TODO: support for more complex antiquotation splices else if quoted.getArgs.size == 1 && isAntiquotScope quoted[0] then antiquotScope quoted[0] diff --git a/stage0/src/Lean/Parser/Basic.lean b/stage0/src/Lean/Parser/Basic.lean index 6bc0312e58..2f56ae3e8c 100644 --- a/stage0/src/Lean/Parser/Basic.lean +++ b/stage0/src/Lean/Parser/Basic.lean @@ -1605,8 +1605,7 @@ def mkAntiquot (name : String) (kind : Option SyntaxNodeKind) (anonymous := true setExpected [] "$" >> manyNoAntiquot (checkNoWsBefore "" >> "$") >> checkNoWsBefore "no space before spliced term" >> antiquotExpr >> - nameP >> - optionalNoAntiquot (checkNoWsBefore "" >> symbol "*") + nameP def tryAnti (c : ParserContext) (s : ParserState) : Bool := let (s, stx?) := peekToken c s @@ -1626,16 +1625,36 @@ def tryAnti (c : ParserContext) (s : ParserState) : Bool := def withoutInfo (p : Parser) : Parser := { fn := p.fn } +/-- Parse `$[p]suffix`, e.g. `$[p],*`. -/ def mkAntiquotScope (kind : SyntaxNodeKind) (p suffix : Parser) : Parser := let kind := kind ++ `antiquot_scope - -- prevent `p`'s info from being collected twice, since it should also be in use outside of the antiquot scope - let p := withoutInfo p leadingNode kind maxPrec $ atomic $ setExpected [] "$" >> manyNoAntiquot (checkNoWsBefore "" >> "$") >> checkNoWsBefore "no space before spliced term" >> symbol "[" >> node nullKind p >> symbol "]" >> suffix +@[inline] def withAntiquotSuffixSpliceFn (kind : SyntaxNodeKind) (p suffix : ParserFn) : ParserFn := fun c s => do + let s := p c s + if s.hasError || !s.stxStack.back.isAntiquot then + return s + let iniSz := s.stackSize + let iniPos := s.pos + let s := suffix c s + if s.hasError then + return s.restore iniSz iniPos + s.mkNode (kind ++ `antiquot_suffix_splice) (s.stxStack.size - 2) + +/-- Parse `suffix` after an antiquotation, e.g. `$x,*`, and put both into a new node. -/ +@[inline] def withAntiquotSuffixSplice (kind : SyntaxNodeKind) (p suffix : Parser) : Parser := { + info := andthenInfo p.info suffix.info, + fn := withAntiquotSuffixSpliceFn kind p.fn suffix.fn +} + +def withAntiquotScopeAndSuffix (kind : SyntaxNodeKind) (p suffix : Parser) := + -- prevent `p`'s info from being collected twice + withAntiquot (mkAntiquotScope kind (withoutInfo p) suffix) (withAntiquotSuffixSplice kind p suffix) + def nodeWithAntiquot (name : String) (kind : SyntaxNodeKind) (p : Parser) (anonymous := false) : Parser := withAntiquot (mkAntiquot name kind anonymous) $ node kind p @@ -1644,7 +1663,7 @@ def nodeWithAntiquot (name : String) (kind : SyntaxNodeKind) (p : Parser) (anony /- ===================== -/ def sepByElemParser (p : Parser) (sep : String) : Parser := - withAntiquot (mkAntiquotScope `sepBy p (symbol (sep.trim ++ "*"))) p + withAntiquotScopeAndSuffix `sepBy p (symbol (sep.trim ++ "*")) def sepBy (p : Parser) (sep : String) (psep : Parser := symbol sep) (allowTrailingSep : Bool := false) : Parser := sepByNoAntiquot (sepByElemParser p sep) psep allowTrailingSep diff --git a/stage0/src/Lean/Parser/Extra.lean b/stage0/src/Lean/Parser/Extra.lean index d64983f86d..8181405a3b 100644 --- a/stage0/src/Lean/Parser/Extra.lean +++ b/stage0/src/Lean/Parser/Extra.lean @@ -17,13 +17,13 @@ attribute [runBuiltinParserAttributeHooks] leadingNode termParser commandParser mkAntiquot nodeWithAntiquot sepBy sepBy1 @[runBuiltinParserAttributeHooks] def optional (p : Parser) : Parser := - optionalNoAntiquot (withAntiquot (mkAntiquotScope `optional p (symbol "?")) p) + optionalNoAntiquot (withAntiquotScopeAndSuffix `optional p (symbol "?")) @[runBuiltinParserAttributeHooks] def many (p : Parser) : Parser := - manyNoAntiquot (withAntiquot (mkAntiquotScope `many p (symbol "*")) p) + manyNoAntiquot (withAntiquotScopeAndSuffix `many p (symbol "*")) @[runBuiltinParserAttributeHooks] def many1 (p : Parser) : Parser := - many1NoAntiquot (withAntiquot (mkAntiquotScope `many p (symbol "*")) p) + many1NoAntiquot (withAntiquotScopeAndSuffix `many p (symbol "*")) @[runBuiltinParserAttributeHooks] def ident : Parser := withAntiquot (mkAntiquot "ident" identKind) identNoAntiquot diff --git a/stage0/src/Lean/PrettyPrinter/Formatter.lean b/stage0/src/Lean/PrettyPrinter/Formatter.lean index 5930ade29c..c9f15a06e3 100644 --- a/stage0/src/Lean/PrettyPrinter/Formatter.lean +++ b/stage0/src/Lean/PrettyPrinter/Formatter.lean @@ -172,6 +172,13 @@ def withAntiquot.formatter (antiP p : Formatter) : Formatter := -- fix the backtracking hack outright. orelse.formatter antiP p +@[combinatorFormatter Lean.Parser.withAntiquotSuffixSplice] +def withAntiquotSuffixSplice.formatter (k : SyntaxNodeKind) (p suffix : Formatter) : Formatter := do + if (← getCur).isAntiquotSuffixSplice then + visitArgs <| suffix *> p + else + p + @[combinatorFormatter Lean.Parser.categoryParser] def categoryParser.formatter (cat : Name) : Formatter := group $ indent do let stx ← getCur diff --git a/stage0/src/Lean/PrettyPrinter/Parenthesizer.lean b/stage0/src/Lean/PrettyPrinter/Parenthesizer.lean index f76c9d40a4..dea8fc612e 100644 --- a/stage0/src/Lean/PrettyPrinter/Parenthesizer.lean +++ b/stage0/src/Lean/PrettyPrinter/Parenthesizer.lean @@ -284,6 +284,13 @@ def withAntiquot.parenthesizer (antiP p : Parenthesizer) : Parenthesizer := -- fix the backtracking hack outright. orelse.parenthesizer antiP p +@[combinatorParenthesizer Lean.Parser.withAntiquotSuffixSplice] +def withAntiquotSuffixSplice.parenthesizer (k : SyntaxNodeKind) (p suffix : Parenthesizer) : Parenthesizer := do + if (← getCur).isAntiquotSuffixSplice then + visitArgs <| suffix *> p + else + p + def parenthesizeCategoryCore (cat : Name) (prec : Nat) : Parenthesizer := withReader (fun ctx => { ctx with cat := cat }) do let stx ← getCur diff --git a/stage0/src/Lean/Syntax.lean b/stage0/src/Lean/Syntax.lean index 62e3a88693..1410c8f576 100644 --- a/stage0/src/Lean/Syntax.lean +++ b/stage0/src/Lean/Syntax.lean @@ -348,11 +348,7 @@ def isAntiquot : Syntax → Bool | Syntax.node (Name.str _ "antiquot" _) _ => true | _ => false --- `$e*` is an antiquotation "splice" matching an arbitrary number of syntax nodes -def isAntiquotSplice (stx : Syntax) : Bool := - stx.isAntiquot && !stx[4].isNone - -def mkAntiquotNode (term : Syntax) (nesting := 0) (name : Option String := none) (kind := Name.anonymous) (splice := false) : Syntax := +def mkAntiquotNode (term : Syntax) (nesting := 0) (name : Option String := none) (kind := Name.anonymous) : Syntax := let nesting := mkNullNode (mkArray nesting (mkAtom "$")) let term := match term.isIdent with | true => term @@ -360,10 +356,7 @@ def mkAntiquotNode (term : Syntax) (nesting := 0) (name : Option String := none) let name := match name with | some name => mkNode `antiquotName #[mkAtom ":", mkAtom name] | none => mkNullNode - let splice := match splice with - | true => mkNullNode #[mkAtom "*"] - | false => mkNullNode - mkNode (kind ++ `antiquot) #[mkAtom "$", nesting, term, name, splice] + mkNode (kind ++ `antiquot) #[mkAtom "$", nesting, term, name] -- Antiquotations can be escaped as in `$$x`, which is useful for nesting macros. Also works for antiquotation scopes. def isEscapedAntiquot (stx : Syntax) : Bool := @@ -391,8 +384,7 @@ def antiquotKind? : Syntax → Option SyntaxNodeKind some Name.anonymous | _ => none --- An "antiquotation scope" is something like `$[...]?` or `$[...]*`. Note that the latter could be of kind `many` or --- `sepBy`, which have different implementations. +-- An "antiquotation scope" is something like `$[...]?` or `$[...]*`. def antiquotScopeKind? : Syntax → Option SyntaxNodeKind | Syntax.node (Name.str k "antiquot_scope" _) args => some k | _ => none @@ -403,13 +395,24 @@ def isAntiquotScope (stx : Syntax) : Bool := def getAntiquotScopeContents (stx : Syntax) : Array Syntax := stx[3].getArgs -def getAntiquotScopeSuffix (stx : Syntax) : Syntax := - stx[5] +-- `$[..],*` or `$x,*` ~> `,*` +def getAntiquotSpliceSuffix (stx : Syntax) : Syntax := + if stx.isAntiquotScope then + stx[5] + else + stx[1] --- If any item of a `many` node is an antiquotation splice, its result should --- be substituted into the `many` node's children -def isAntiquotSplicePat (stx : Syntax) : Bool := - stx.isOfKind nullKind && stx.getArgs.any fun arg => isAntiquotSplice arg && !isEscapedAntiquot arg +-- `$x,*` etc. +def antiquotSuffixSplice? : Syntax → Option SyntaxNodeKind + | Syntax.node (Name.str k "antiquot_suffix_splice" _) args => some k + | _ => none + +def isAntiquotSuffixSplice (stx : Syntax) : Bool := + antiquotSuffixSplice? stx |>.isSome + +-- `$x` in the example above +def getAntiquotSuffixSpliceInner (stx : Syntax) : Syntax := + stx[0] end Syntax end Lean diff --git a/stage0/stdlib/Init/Meta.c b/stage0/stdlib/Init/Meta.c index ab61c3d2cf..4107e2121e 100644 --- a/stage0/stdlib/Init/Meta.c +++ b/stage0/stdlib/Init/Meta.c @@ -153,6 +153,7 @@ lean_object* l_Lean_isSubScriptAlnum___boxed(lean_object*); lean_object* l_Array_mapSepElems(lean_object*, lean_object*); lean_object* l___private_Init_Meta_0__Lean_quoteName___closed__4; lean_object* l_Lean_Name_toStringWithSep(lean_object*, lean_object*); +lean_object* l_Lean_Syntax_SepArray_ofElems(lean_object*, lean_object*); lean_object* l_Lean_Syntax_decodeQuotedChar_match__3___rarg(lean_object*, lean_object*); lean_object* l_Lean_Name_capitalize_match__1(lean_object*); lean_object* l_Lean_Syntax_isLit_x3f_match__1___rarg(lean_object*, lean_object*, lean_object*); @@ -165,6 +166,7 @@ lean_object* l_Lean_Syntax_isLit_x3f___boxed(lean_object*, lean_object*); lean_object* l___private_Init_Meta_0__Lean_quoteName___closed__8; lean_object* l_Lean_Syntax_hasArgs___boxed(lean_object*); lean_object* l___private_Init_Meta_0__Lean_Syntax_decodeInterpStrLit_loop___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Syntax_SepArray_getElems___rarg(lean_object*); lean_object* l_Lean_Syntax_mkApp(lean_object*, lean_object*); lean_object* l_Array_mapSepElems___boxed(lean_object*, lean_object*); lean_object* l___private_Init_Meta_0__Lean_quoteOption___rarg___closed__6; @@ -213,6 +215,7 @@ lean_object* l_Lean_Syntax_isCharLit_x3f_match__1(lean_object*); lean_object* l_Array_getSepElems(lean_object*); lean_object* l_Lean_monadNameGeneratorLift___rarg(lean_object*, lean_object*); lean_object* l_Lean_Syntax_decodeQuotedChar_match__1___rarg(lean_object*, lean_object*); +lean_object* l_Lean_Syntax_SepArray_getElems(lean_object*); lean_object* l_Lean_Syntax_getId___boxed(lean_object*); lean_object* l_Lean_Syntax_hasArgs_match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l___private_Init_Meta_0__Lean_quoteList___rarg(lean_object*, lean_object*); @@ -224,6 +227,7 @@ lean_object* l_Lean_Syntax_isStrLit_x3f_match__1___rarg(lean_object*, lean_objec lean_object* l_Lean_Name_capitalize_match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_copyInfo(lean_object*, lean_object*); lean_object* l_Lean_Syntax_getHeadInfo(lean_object*); +lean_object* l_Lean_Syntax_SepArray_ofElems___boxed(lean_object*, lean_object*); lean_object* l___private_Init_Meta_0__Lean_Syntax_decodeHexLitAux(lean_object*, lean_object*, lean_object*); lean_object* l_Array_forInUnsafe_loop___at_Lean_mkSepArray___spec__1___lambda__1(lean_object*, lean_object*, lean_object*); lean_object* l_Substring_takeWhileAux___at___private_Init_Meta_0__Lean_Syntax_decodeNameLitAux___spec__2___boxed(lean_object*, lean_object*, lean_object*); @@ -241,6 +245,7 @@ lean_object* l_Lean_NameGenerator_next(lean_object*); lean_object* l_Lean_Syntax_setHeadInfo_match__1(lean_object*); lean_object* l_Lean_Syntax_decodeCharLit___boxed(lean_object*); lean_object* l_Lean_Syntax_decodeNatLitVal_x3f(lean_object*); +lean_object* l_Lean_Syntax_SepArray_getElems___boxed(lean_object*); extern lean_object* l_myMacro____x40_Init_Notation___hyg_10790____closed__9; lean_object* l_Substring_takeWhileAux___at___private_Init_Meta_0__Lean_Syntax_decodeNameLitAux___spec__1___boxed(lean_object*, lean_object*, lean_object*); lean_object* lean_array_fset(lean_object*, lean_object*, lean_object*); @@ -336,6 +341,7 @@ lean_object* l_Array_foldlMUnsafe_fold___at_Array_getSepElems___spec__1(lean_obj lean_object* l_Lean_Syntax_isToken_match__1(lean_object*); extern lean_object* l_Lean_nullKind___closed__2; uint8_t l_Lean_isLetterLike(uint32_t); +lean_object* l_Lean_Syntax_SepArray_instCoeSepArrayArraySyntax(lean_object*); lean_object* l_Lean_Syntax_isStrLit_x3f___boxed(lean_object*); lean_object* l_Lean_Syntax_toNat_match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkAtomFrom(lean_object*, lean_object*); @@ -371,7 +377,6 @@ lean_object* l_Lean_instQuoteBool___closed__2; lean_object* l_Lean_Syntax_expandInterpolatedStrChunks_match__3___rarg(lean_object*, lean_object*); lean_object* l_Lean_Syntax_expandInterpolatedStrChunks___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Syntax_hasArgs(lean_object*); -lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Syntax_getSepArgs___spec__1(lean_object*, size_t, size_t, lean_object*); lean_object* l___private_Init_Meta_0__Lean_quoteList(lean_object*); uint8_t lean_nat_dec_le(lean_object*, lean_object*); lean_object* l___private_Init_Meta_0__Lean_Syntax_isNatLitAux_match__1(lean_object*); @@ -379,10 +384,10 @@ lean_object* l_String_quote(lean_object*); uint8_t l_Char_isAlphanum(uint32_t); lean_object* l_Lean_Syntax_isScientificLit_x3f_match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_getArgs(lean_object*); +lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Syntax_SepArray_getElems___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_decodeScientificLitVal_x3f(lean_object*); uint8_t l_Lean_isGreek(uint32_t); lean_object* l___private_Init_Meta_0__Lean_quoteList_match__1(lean_object*, lean_object*); -lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Syntax_getSepArgs___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Init_Meta_0__Lean_Syntax_decodeInterpStrQuotedChar___boxed__const__1; lean_object* l_Array_filterSepElems(lean_object*, lean_object*); lean_object* l_Array_mapSepElemsM___at_Array_mapSepElems___spec__1(lean_object*, lean_object*); @@ -402,6 +407,7 @@ lean_object* l_Lean_Syntax_decodeCharLit_match__1(lean_object*); lean_object* l_Lean_Syntax_replaceInfo_match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Name_toStringWithSep___closed__1; lean_object* l_Lean_NameGenerator_curr(lean_object*); +lean_object* l_Lean_Syntax_SepArray_getElems___rarg___boxed(lean_object*); lean_object* l_Lean_Syntax_getId_match__1(lean_object*); lean_object* l_Lean_Syntax_isToken_match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_isNameLit_x3f___boxed(lean_object*); @@ -484,10 +490,13 @@ lean_object* l_Lean_mkCIdentFrom___closed__2; lean_object* l_Lean_instQuoteArray___rarg(lean_object*, lean_object*); lean_object* lean_nat_mod(lean_object*, lean_object*); lean_object* l___private_Init_Meta_0__Lean_quoteName___closed__3; +lean_object* l_Lean_Syntax_SepArray_instCoeSepArrayArraySyntax___closed__1; lean_object* l___private_Init_Meta_0__Array_filterSepElemsMAux___at_Array_filterSepElems___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Syntax_SepArray_instCoeSepArrayArraySyntax___boxed(lean_object*); lean_object* l_Lean_instQuoteProd___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_isScientificLit_x3f_match__1(lean_object*); lean_object* l___private_Init_Meta_0__Lean_quoteOption_match__1(lean_object*, lean_object*); +lean_object* l_Lean_Syntax_instCoeArraySyntaxSepArray(lean_object*); lean_object* l_Lean_Syntax_strLitToAtom___boxed(lean_object*); lean_object* l_Lean_Syntax_find_x3f(lean_object*, lean_object*); lean_object* l_unsafeCast(lean_object*, lean_object*, lean_object*); @@ -533,6 +542,7 @@ lean_object* l_Lean_Syntax_isFieldIdx_x3f___boxed(lean_object*); lean_object* l_Lean_Name_instToStringName___closed__1; lean_object* l___private_Init_Meta_0__Lean_Syntax_decodeInterpStrLit___boxed(lean_object*); extern lean_object* l_Array_findSomeM_x3f___rarg___closed__1; +lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Syntax_SepArray_getElems___spec__1(lean_object*, size_t, size_t, lean_object*); lean_object* l_Lean_Syntax_setHeadInfoAux(lean_object*, lean_object*); lean_object* l_Lean_Option_hasQuote___rarg(lean_object*); extern lean_object* l_Lean_interpolatedStrLitKind; @@ -4678,6 +4688,33 @@ lean_dec(x_1); return x_3; } } +lean_object* l_Lean_Syntax_SepArray_ofElems(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; lean_object* x_4; +x_3 = l_Lean_mkAtom(x_1); +x_4 = l_Lean_mkSepArray(x_2, x_3); +return x_4; +} +} +lean_object* l_Lean_Syntax_SepArray_ofElems___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +x_3 = l_Lean_Syntax_SepArray_ofElems(x_1, x_2); +lean_dec(x_2); +return x_3; +} +} +lean_object* l_Lean_Syntax_instCoeArraySyntaxSepArray(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l_Lean_Syntax_SepArray_ofElems___boxed), 2, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} lean_object* l_Lean_Syntax_mkApp_match__1___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { @@ -7918,7 +7955,7 @@ _start: 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 = l_Lean_Syntax_strLitToAtom___closed__1; x_2 = l_Lean_Syntax_strLitToAtom___closed__2; -x_3 = lean_unsigned_to_nat(547u); +x_3 = lean_unsigned_to_nat(553u); x_4 = lean_unsigned_to_nat(14u); x_5 = l_Lean_Syntax_strLitToAtom___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -10081,6 +10118,200 @@ lean_dec(x_1); return x_3; } } +lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Syntax_SepArray_getElems___spec__1(lean_object* x_1, size_t x_2, size_t x_3, lean_object* x_4) { +_start: +{ +uint8_t x_5; +x_5 = x_2 == x_3; +if (x_5 == 0) +{ +lean_object* x_6; size_t x_7; size_t x_8; lean_object* x_9; uint8_t x_10; +x_6 = lean_array_uget(x_1, x_2); +x_7 = 1; +x_8 = x_2 + x_7; +x_9 = lean_ctor_get(x_4, 0); +lean_inc(x_9); +x_10 = lean_unbox(x_9); +lean_dec(x_9); +if (x_10 == 0) +{ +uint8_t x_11; +lean_dec(x_6); +x_11 = !lean_is_exclusive(x_4); +if (x_11 == 0) +{ +lean_object* x_12; uint8_t x_13; lean_object* x_14; +x_12 = lean_ctor_get(x_4, 0); +lean_dec(x_12); +x_13 = 1; +x_14 = lean_box(x_13); +lean_ctor_set(x_4, 0, x_14); +x_2 = x_8; +goto _start; +} +else +{ +lean_object* x_16; uint8_t x_17; lean_object* x_18; lean_object* x_19; +x_16 = lean_ctor_get(x_4, 1); +lean_inc(x_16); +lean_dec(x_4); +x_17 = 1; +x_18 = lean_box(x_17); +x_19 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_19, 0, x_18); +lean_ctor_set(x_19, 1, x_16); +x_2 = x_8; +x_4 = x_19; +goto _start; +} +} +else +{ +uint8_t x_21; +x_21 = !lean_is_exclusive(x_4); +if (x_21 == 0) +{ +lean_object* x_22; lean_object* x_23; lean_object* x_24; uint8_t x_25; lean_object* x_26; +x_22 = lean_ctor_get(x_4, 1); +x_23 = lean_ctor_get(x_4, 0); +lean_dec(x_23); +x_24 = lean_array_push(x_22, x_6); +x_25 = 0; +x_26 = lean_box(x_25); +lean_ctor_set(x_4, 1, x_24); +lean_ctor_set(x_4, 0, x_26); +x_2 = x_8; +goto _start; +} +else +{ +lean_object* x_28; lean_object* x_29; uint8_t x_30; lean_object* x_31; lean_object* x_32; +x_28 = lean_ctor_get(x_4, 1); +lean_inc(x_28); +lean_dec(x_4); +x_29 = lean_array_push(x_28, x_6); +x_30 = 0; +x_31 = lean_box(x_30); +x_32 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_32, 0, x_31); +lean_ctor_set(x_32, 1, x_29); +x_2 = x_8; +x_4 = x_32; +goto _start; +} +} +} +else +{ +return x_4; +} +} +} +lean_object* l_Lean_Syntax_SepArray_getElems___rarg(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; uint8_t x_4; +x_2 = lean_array_get_size(x_1); +x_3 = lean_unsigned_to_nat(0u); +x_4 = lean_nat_dec_lt(x_3, x_2); +if (x_4 == 0) +{ +lean_object* x_5; +lean_dec(x_2); +x_5 = l_Array_empty___closed__1; +return x_5; +} +else +{ +uint8_t x_6; +x_6 = lean_nat_dec_le(x_2, x_2); +if (x_6 == 0) +{ +lean_object* x_7; +lean_dec(x_2); +x_7 = l_Array_empty___closed__1; +return x_7; +} +else +{ +size_t x_8; size_t x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; +x_8 = 0; +x_9 = lean_usize_of_nat(x_2); +lean_dec(x_2); +x_10 = l_Array_getEvenElems___rarg___closed__1; +x_11 = l_Array_foldlMUnsafe_fold___at_Lean_Syntax_SepArray_getElems___spec__1(x_1, x_8, x_9, x_10); +x_12 = lean_ctor_get(x_11, 1); +lean_inc(x_12); +lean_dec(x_11); +return x_12; +} +} +} +} +lean_object* l_Lean_Syntax_SepArray_getElems(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l_Lean_Syntax_SepArray_getElems___rarg___boxed), 1, 0); +return x_2; +} +} +lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Syntax_SepArray_getElems___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +size_t x_5; size_t x_6; lean_object* x_7; +x_5 = lean_unbox_usize(x_2); +lean_dec(x_2); +x_6 = lean_unbox_usize(x_3); +lean_dec(x_3); +x_7 = l_Array_foldlMUnsafe_fold___at_Lean_Syntax_SepArray_getElems___spec__1(x_1, x_5, x_6, x_4); +lean_dec(x_1); +return x_7; +} +} +lean_object* l_Lean_Syntax_SepArray_getElems___rarg___boxed(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = l_Lean_Syntax_SepArray_getElems___rarg(x_1); +lean_dec(x_1); +return x_2; +} +} +lean_object* l_Lean_Syntax_SepArray_getElems___boxed(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = l_Lean_Syntax_SepArray_getElems(x_1); +lean_dec(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Syntax_SepArray_instCoeSepArrayArraySyntax___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Syntax_SepArray_getElems___rarg___boxed), 1, 0); +return x_1; +} +} +lean_object* l_Lean_Syntax_SepArray_instCoeSepArrayArraySyntax(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = l_Lean_Syntax_SepArray_instCoeSepArrayArraySyntax___closed__1; +return x_2; +} +} +lean_object* l_Lean_Syntax_SepArray_instCoeSepArrayArraySyntax___boxed(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = l_Lean_Syntax_SepArray_instCoeSepArrayArraySyntax(x_1); +lean_dec(x_1); +return x_2; +} +} lean_object* l___private_Init_Meta_0__Lean_Syntax_decodeInterpStrQuotedChar_match__1___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { @@ -11151,95 +11382,6 @@ lean_dec(x_1); return x_6; } } -lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Syntax_getSepArgs___spec__1(lean_object* x_1, size_t x_2, size_t x_3, lean_object* x_4) { -_start: -{ -uint8_t x_5; -x_5 = x_2 == x_3; -if (x_5 == 0) -{ -lean_object* x_6; size_t x_7; size_t x_8; lean_object* x_9; uint8_t x_10; -x_6 = lean_array_uget(x_1, x_2); -x_7 = 1; -x_8 = x_2 + x_7; -x_9 = lean_ctor_get(x_4, 0); -lean_inc(x_9); -x_10 = lean_unbox(x_9); -lean_dec(x_9); -if (x_10 == 0) -{ -uint8_t x_11; -lean_dec(x_6); -x_11 = !lean_is_exclusive(x_4); -if (x_11 == 0) -{ -lean_object* x_12; uint8_t x_13; lean_object* x_14; -x_12 = lean_ctor_get(x_4, 0); -lean_dec(x_12); -x_13 = 1; -x_14 = lean_box(x_13); -lean_ctor_set(x_4, 0, x_14); -x_2 = x_8; -goto _start; -} -else -{ -lean_object* x_16; uint8_t x_17; lean_object* x_18; lean_object* x_19; -x_16 = lean_ctor_get(x_4, 1); -lean_inc(x_16); -lean_dec(x_4); -x_17 = 1; -x_18 = lean_box(x_17); -x_19 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_19, 0, x_18); -lean_ctor_set(x_19, 1, x_16); -x_2 = x_8; -x_4 = x_19; -goto _start; -} -} -else -{ -uint8_t x_21; -x_21 = !lean_is_exclusive(x_4); -if (x_21 == 0) -{ -lean_object* x_22; lean_object* x_23; lean_object* x_24; uint8_t x_25; lean_object* x_26; -x_22 = lean_ctor_get(x_4, 1); -x_23 = lean_ctor_get(x_4, 0); -lean_dec(x_23); -x_24 = lean_array_push(x_22, x_6); -x_25 = 0; -x_26 = lean_box(x_25); -lean_ctor_set(x_4, 1, x_24); -lean_ctor_set(x_4, 0, x_26); -x_2 = x_8; -goto _start; -} -else -{ -lean_object* x_28; lean_object* x_29; uint8_t x_30; lean_object* x_31; lean_object* x_32; -x_28 = lean_ctor_get(x_4, 1); -lean_inc(x_28); -lean_dec(x_4); -x_29 = lean_array_push(x_28, x_6); -x_30 = 0; -x_31 = lean_box(x_30); -x_32 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_32, 0, x_31); -lean_ctor_set(x_32, 1, x_29); -x_2 = x_8; -x_4 = x_32; -goto _start; -} -} -} -else -{ -return x_4; -} -} -} lean_object* l_Lean_Syntax_getSepArgs(lean_object* x_1) { _start: { @@ -11275,7 +11417,7 @@ x_9 = 0; x_10 = lean_usize_of_nat(x_3); lean_dec(x_3); x_11 = l_Array_getEvenElems___rarg___closed__1; -x_12 = l_Array_foldlMUnsafe_fold___at_Lean_Syntax_getSepArgs___spec__1(x_2, x_9, x_10, x_11); +x_12 = l_Array_foldlMUnsafe_fold___at_Lean_Syntax_SepArray_getElems___spec__1(x_2, x_9, x_10, x_11); lean_dec(x_2); x_13 = lean_ctor_get(x_12, 1); lean_inc(x_13); @@ -11285,19 +11427,6 @@ return x_13; } } } -lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Syntax_getSepArgs___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { -_start: -{ -size_t x_5; size_t x_6; lean_object* x_7; -x_5 = lean_unbox_usize(x_2); -lean_dec(x_2); -x_6 = lean_unbox_usize(x_3); -lean_dec(x_3); -x_7 = l_Array_foldlMUnsafe_fold___at_Lean_Syntax_getSepArgs___spec__1(x_1, x_5, x_6, x_4); -lean_dec(x_1); -return x_7; -} -} lean_object* l_Lean_Syntax_getSepArgs___boxed(lean_object* x_1) { _start: { @@ -11438,6 +11567,8 @@ l___private_Init_Meta_0__Lean_quoteOption___rarg___closed__5 = _init_l___private lean_mark_persistent(l___private_Init_Meta_0__Lean_quoteOption___rarg___closed__5); l___private_Init_Meta_0__Lean_quoteOption___rarg___closed__6 = _init_l___private_Init_Meta_0__Lean_quoteOption___rarg___closed__6(); lean_mark_persistent(l___private_Init_Meta_0__Lean_quoteOption___rarg___closed__6); +l_Lean_Syntax_SepArray_instCoeSepArrayArraySyntax___closed__1 = _init_l_Lean_Syntax_SepArray_instCoeSepArrayArraySyntax___closed__1(); +lean_mark_persistent(l_Lean_Syntax_SepArray_instCoeSepArrayArraySyntax___closed__1); l___private_Init_Meta_0__Lean_Syntax_decodeInterpStrQuotedChar___boxed__const__1 = _init_l___private_Init_Meta_0__Lean_Syntax_decodeInterpStrQuotedChar___boxed__const__1(); lean_mark_persistent(l___private_Init_Meta_0__Lean_Syntax_decodeInterpStrQuotedChar___boxed__const__1); l_Array_forInUnsafe_loop___at_Lean_Syntax_expandInterpolatedStrChunks___spec__1___lambda__2___closed__1 = _init_l_Array_forInUnsafe_loop___at_Lean_Syntax_expandInterpolatedStrChunks___spec__1___lambda__2___closed__1(); diff --git a/stage0/stdlib/Init/NotationExtra.c b/stage0/stdlib/Init/NotationExtra.c index b7d2b9eba7..01cccc06b8 100644 --- a/stage0/stdlib/Init/NotationExtra.c +++ b/stage0/stdlib/Init/NotationExtra.c @@ -255,7 +255,6 @@ lean_object* l_Lean_expandExplicitBindersAux_loop_match__1___rarg___boxed(lean_o lean_object* l_Lean_expandExplicitBindersAux_loop___closed__6; lean_object* l_term___xd7_x27_____closed__6; lean_object* l_Array_sequenceMap_loop___at_myMacro____x40_Init_NotationExtra___hyg_2962____spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Syntax_getSepArgs___spec__1(lean_object*, size_t, size_t, lean_object*); uint8_t lean_nat_dec_le(lean_object*, lean_object*); lean_object* l_tacticFunext_______closed__4; extern lean_object* l_term___x3d_____closed__2; @@ -367,6 +366,7 @@ lean_object* l_Lean_unbracktedExplicitBinders___closed__2; lean_object* l_term___xd7_x27_____closed__7; lean_object* l_Lean_command__Unif__hint______Where___x7c_x2d_u22a2_____closed__4; lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__35; +lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Syntax_SepArray_getElems___spec__1(lean_object*, size_t, size_t, lean_object*); lean_object* l_myMacro____x40_Init_NotationExtra___hyg_2656____closed__9; extern lean_object* l_myMacro____x40_Init_Notation___hyg_12545____closed__16; lean_object* l_myMacro____x40_Init_NotationExtra___hyg_2140____closed__1; @@ -4770,7 +4770,7 @@ x_102 = 0; x_103 = lean_usize_of_nat(x_11); lean_dec(x_11); x_104 = l_Array_getEvenElems___rarg___closed__1; -x_105 = l_Array_foldlMUnsafe_fold___at_Lean_Syntax_getSepArgs___spec__1(x_10, x_102, x_103, x_104); +x_105 = l_Array_foldlMUnsafe_fold___at_Lean_Syntax_SepArray_getElems___spec__1(x_10, x_102, x_103, x_104); lean_dec(x_10); x_106 = lean_ctor_get(x_105, 1); lean_inc(x_106); diff --git a/stage0/stdlib/Lean/Compiler/ConstFolding.c b/stage0/stdlib/Lean/Compiler/ConstFolding.c index b840660d55..f003a9b4d5 100644 --- a/stage0/stdlib/Lean/Compiler/ConstFolding.c +++ b/stage0/stdlib/Lean/Compiler/ConstFolding.c @@ -24,6 +24,7 @@ lean_object* l_Lean_Compiler_numScalarTypes; lean_object* l_Lean_Compiler_preUIntBinFoldFns___closed__15; lean_object* l_Lean_Compiler_preUIntBinFoldFns___closed__18; lean_object* l_Lean_Compiler_preUIntBinFoldFns___closed__23; +extern lean_object* l_Lean_Syntax_mkAntiquotNode___closed__3; uint8_t l_List_foldr___at_Lean_Compiler_isToNat___spec__1(lean_object*, uint8_t, lean_object*); lean_object* l_Lean_Compiler_NumScalarTypeInfo_id___default(lean_object*); lean_object* lean_nat_div(lean_object*, lean_object*); @@ -68,7 +69,6 @@ uint8_t lean_name_eq(lean_object*, lean_object*); lean_object* l_Lean_Compiler_natFoldFns___closed__19; extern lean_object* l_instReprBool___closed__1; lean_object* l_Lean_Compiler_foldNatDecLe___closed__2; -extern lean_object* l_Lean_Syntax_mkAntiquotNode___closed__16; lean_object* l_Lean_Compiler_preUIntBinFoldFns___closed__9; lean_object* l_Lean_Compiler_foldUIntSub___boxed(lean_object*, lean_object*, lean_object*); extern lean_object* l_USize_size___closed__1; @@ -218,6 +218,7 @@ lean_object* l_Lean_Compiler_natFoldFns___closed__6; lean_object* l_Lean_Compiler_foldUIntMod(uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Compiler_toDecidableExpr_match__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Compiler_foldToNat___boxed(lean_object*); +extern lean_object* l_Lean_Syntax_mkAntiquotNode___closed__9; lean_object* l_Lean_Compiler_boolFoldFns___closed__1; lean_object* l_Lean_Compiler_foldStrictOr_match__1(lean_object*); lean_object* l_Lean_Compiler_foldNatBinPred(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); @@ -261,7 +262,6 @@ lean_object* l_Lean_Name_append(lean_object*, lean_object*); lean_object* l_Lean_Compiler_mkNatLe___closed__1; lean_object* l_Lean_Compiler_numScalarTypes___closed__2; lean_object* l_Lean_Compiler_mkNatLe___closed__4; -extern lean_object* l_Std_PersistentHashMap_mkCollisionNode___rarg___closed__1; lean_object* l_Lean_Compiler_foldUIntDiv___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Compiler_toDecidableExpr_match__1___rarg(uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Compiler_mkNatLt___closed__6; @@ -2302,7 +2302,7 @@ static lean_object* _init_l_Lean_Compiler_mkNatEq___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Syntax_mkAntiquotNode___closed__16; +x_1 = l_Lean_Syntax_mkAntiquotNode___closed__9; x_2 = l_Lean_Compiler_mkNatEq___closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; @@ -2375,7 +2375,7 @@ static lean_object* _init_l_Lean_Compiler_mkNatLt___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Std_PersistentHashMap_mkCollisionNode___rarg___closed__1; +x_1 = l_Lean_Syntax_mkAntiquotNode___closed__3; x_2 = l_Lean_Compiler_mkNatEq___closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; diff --git a/stage0/stdlib/Lean/Elab/App.c b/stage0/stdlib/Lean/Elab/App.c index 727b245adf..f08d78c3a6 100644 --- a/stage0/stdlib/Lean/Elab/App.c +++ b/stage0/stdlib/Lean/Elab/App.c @@ -38,6 +38,7 @@ lean_object* l_Lean_registerTraceClass(lean_object*, lean_object*); lean_object* lean_erase_macro_scopes(lean_object*); lean_object* l_Lean_Elab_Term_instInhabitedNamedArg___closed__1; lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg___closed__4; +extern lean_object* l_Lean_Syntax_mkAntiquotNode___closed__3; lean_object* l_Std_Range_forIn_loop___at___private_Lean_Elab_App_0__Lean_Elab_Term_addLValArg___spec__2___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_stringToMessageData(lean_object*); lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_resolveLValAux___closed__6; @@ -502,7 +503,6 @@ extern lean_object* l_Lean_Elab_postponeExceptionId; lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_mergeFailures_match__1(lean_object*); lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_addLValArg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_expandApp_match__1___rarg(lean_object*, lean_object*); -lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Syntax_getSepArgs___spec__1(lean_object*, size_t, size_t, lean_object*); lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_addLValArg_match__3(lean_object*); uint8_t lean_nat_dec_le(lean_object*, lean_object*); lean_object* l_Lean_mkApp(lean_object*, lean_object*); @@ -530,7 +530,6 @@ lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_resolveLValAux_match__4 lean_object* l_Lean_Elab_Term_throwInvalidNamedArg___rarg___closed__5; lean_object* lean_panic_fn(lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_elabExplicit___closed__1; -extern lean_object* l_Std_PersistentHashMap_mkCollisionNode___rarg___closed__1; lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_addImplicitArg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_appendCore___rarg(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_ElabAppArgs_State_etaArgs___default; @@ -721,6 +720,7 @@ lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppLValsAux_loop___ lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_getForallBody_match__1___rarg(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_importModules___closed__2; lean_object* l___private_Lean_Util_Trace_0__Lean_checkTraceOptionM___at___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_finalize___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Syntax_SepArray_getElems___spec__1(lean_object*, size_t, size_t, lean_object*); lean_object* l_Lean_Elab_Term_addNamedArg___closed__4; lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_getForallBody(uint8_t, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg___closed__5; @@ -1639,7 +1639,7 @@ x_51 = lean_ctor_get(x_41, 0); lean_dec(x_51); x_52 = l___private_Lean_Elab_App_0__Lean_Elab_Term_tryCoeFun_x3f___closed__4; x_53 = l_Lean_mkConst(x_52, x_28); -x_54 = l_Std_PersistentHashMap_mkCollisionNode___rarg___closed__1; +x_54 = l_Lean_Syntax_mkAntiquotNode___closed__3; x_55 = lean_array_push(x_54, x_1); x_56 = lean_array_push(x_55, x_21); x_57 = lean_array_push(x_56, x_2); @@ -1659,7 +1659,7 @@ lean_inc(x_61); lean_dec(x_41); x_62 = l___private_Lean_Elab_App_0__Lean_Elab_Term_tryCoeFun_x3f___closed__4; x_63 = l_Lean_mkConst(x_62, x_28); -x_64 = l_Std_PersistentHashMap_mkCollisionNode___rarg___closed__1; +x_64 = l_Lean_Syntax_mkAntiquotNode___closed__3; x_65 = lean_array_push(x_64, x_1); x_66 = lean_array_push(x_65, x_21); x_67 = lean_array_push(x_66, x_2); @@ -28386,7 +28386,7 @@ x_731 = 0; x_732 = lean_usize_of_nat(x_710); lean_dec(x_710); x_733 = l_Array_getEvenElems___rarg___closed__1; -x_734 = l_Array_foldlMUnsafe_fold___at_Lean_Syntax_getSepArgs___spec__1(x_709, x_731, x_732, x_733); +x_734 = l_Array_foldlMUnsafe_fold___at_Lean_Syntax_SepArray_getElems___spec__1(x_709, x_731, x_732, x_733); lean_dec(x_709); x_735 = lean_ctor_get(x_734, 1); lean_inc(x_735); diff --git a/stage0/stdlib/Lean/Elab/Binders.c b/stage0/stdlib/Lean/Elab/Binders.c index 436db30674..44b05d7ce7 100644 --- a/stage0/stdlib/Lean/Elab/Binders.c +++ b/stage0/stdlib/Lean/Elab/Binders.c @@ -22,6 +22,7 @@ lean_object* l_Lean_Elab_Term_elabLetDeclCore_match__1(lean_object*); lean_object* l_Lean_Elab_Term_elabBinders(lean_object*); extern lean_object* l_myMacro____x40_Init_Notation___hyg_49____closed__16; extern lean_object* l_myMacro____x40_Init_Notation___hyg_11918____closed__8; +uint8_t l_Lean_Syntax_isAntiquotSuffixSplice(lean_object*); lean_object* l_Lean_Elab_Term_quoteAutoTactic___closed__6; lean_object* l_Lean_Elab_Term_expandWhereDecls___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Term_elabForall___spec__1___rarg(lean_object*); @@ -33,9 +34,9 @@ extern lean_object* l_Lean_expandExplicitBindersAux_loop___closed__5; extern lean_object* l_Lean_Syntax_strLitToAtom___closed__3; lean_object* l_Lean_registerTraceClass(lean_object*, lean_object*); extern lean_object* l_myMacro____x40_Init_Notation___hyg_521____closed__11; -extern lean_object* l_Lean_Syntax_mkAntiquotNode___closed__3; lean_object* l_Lean_Elab_Term_elabLetDeclAux___lambda__1___closed__3; lean_object* l_Lean_Elab_Term_elabDepArrow___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l_Lean_Syntax_isAntiquotScope(lean_object*); lean_object* l_Lean_Elab_throwUnsupportedSyntax___at___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_expandFunBinders_loop_match__2(lean_object*); extern lean_object* l_Lean_Parser_Tactic_let_x21___closed__1; @@ -78,6 +79,7 @@ lean_object* lean_array_uset(lean_object*, size_t, lean_object*); lean_object* l_Lean_Elab_Term_elabFun(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabLetDeclCore_match__2___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_elabDepArrow___closed__2; +lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___lambda__2___boxed(lean_object**); extern lean_object* l_myMacro____x40_Init_Notation___hyg_11918____closed__12; extern lean_object* l_Lean_identKind___closed__2; lean_object* l_Lean_Elab_Term_expandWhereDecls(lean_object*, lean_object*, lean_object*); @@ -116,6 +118,7 @@ lean_object* l_Lean_Elab_Term_expandFunBinders_loop___closed__6; lean_object* l_Lean_addDecl___at_Lean_Elab_Term_declareTacticSyntax___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_quoteAutoTactic___closed__15; extern lean_object* l_Lean_Meta_withoutPostponingUniverseConstraintsImp___rarg___closed__15; +extern lean_object* l_Lean_Meta_withoutPostponingUniverseConstraintsImp___rarg___closed__3; lean_object* lean_expr_instantiate1(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_expandFunBinders_loop_match__2___rarg(lean_object*, lean_object*, lean_object*); lean_object* lean_array_push(lean_object*, lean_object*); @@ -159,15 +162,16 @@ lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_FunBinders_elabFunB lean_object* l___regBuiltin_Lean_Elab_Term_elabArrow(lean_object*); lean_object* l_Lean_Elab_Term_expandFunBinders_loop___closed__10; lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderModifier___closed__10; +lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___lambda__2(lean_object*, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabLetDeclAux___lambda__2___closed__1; lean_object* l_Lean_Elab_Term_mkLetRec___boxed(lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderModifier___closed__2; lean_object* l_Lean_Elab_Term_expandMatchAltsWhereDecls___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_addDiscr(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_expandFunBinders_loop___closed__11; -lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___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*); +lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___boxed(lean_object**); lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__4; -lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___closed__1; +lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___lambda__1___closed__1; lean_object* l_Lean_Meta_restoreSynthInstanceCache(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderIdent(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_FunBinders_elabFunBindersAux(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -192,6 +196,7 @@ lean_object* l___regBuiltin_Lean_Elab_Term_elabLetStarDecl(lean_object*); lean_object* lean_st_ref_take(lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderType(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_registerCustomErrorIfMVar(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___lambda__1___closed__3; lean_object* l_Lean_Elab_Term_quoteAutoTactic___closed__30; lean_object* lean_nat_sub(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_declareTacticSyntax(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -205,11 +210,13 @@ lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Binders_0__Lean_Ela lean_object* l_Lean_Elab_Term_expandMatchAltsWhereDecls_loop(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_withLetDecl___at_Lean_Elab_Term_elabLetDeclAux___spec__3(lean_object*); lean_object* l_Lean_Elab_Term_elabLetDeclAux___closed__1; +extern lean_object* l_Lean_Elab_Term_mkExplicitBinder___closed__3; lean_object* l_Lean_KernelException_toMessageData(lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_elabFun___closed__1; lean_object* l_Lean_Elab_Term_elabLetDeclAux___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabTerm(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_withoutPostponingUniverseConstraintsImp___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___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*, lean_object*); lean_object* l_Lean_Elab_Term_elabForall___closed__1; extern lean_object* l_myMacro____x40_Init_Notation___hyg_12545____closed__8; lean_object* l_Lean_Elab_Term_elabForall___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -222,7 +229,7 @@ lean_object* lean_array_get(lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Util_0__Lean_Elab_expandMacro_x3f___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_mkLambdaFVars(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_getFunBinderIds_x3f___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_4857_(lean_object*); +lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_4861_(lean_object*); extern lean_object* l_myMacro____x40_Init_Notation___hyg_10790____closed__9; lean_object* l_Lean_Elab_Term_quoteAutoTactic___closed__20; lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderModifier___closed__8; @@ -232,13 +239,13 @@ extern lean_object* l_myMacro____x40_Init_NotationExtra___hyg_2656____closed__10 lean_object* l_Lean_Elab_Term_expandFunBinders_loop___closed__7; lean_object* l_Lean_Syntax_setKind(lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___closed__2; +lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___lambda__1___closed__2; lean_object* l_Lean_Elab_throwUnsupportedSyntax___at___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___spec__1___rarg(lean_object*); lean_object* l___private_Lean_Meta_LevelDefEq_0__Lean_Meta_getResetPostponed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabLetDeclCore___closed__7; extern lean_object* l_myMacro____x40_Init_Notation___hyg_12545____closed__1; lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_FunBinders_elabFunBinderViews_match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_elabLetBangDecl(lean_object*); -lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___closed__4; lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderModifier___closed__9; lean_object* l_Lean_Elab_Term_mkLetRec___closed__1; lean_object* l_Lean_Elab_Term_expandMatchAltsWhereDecls(lean_object*, lean_object*, lean_object*, lean_object*); @@ -261,6 +268,8 @@ lean_object* l_Lean_Elab_Term_elabLetDeclAux___lambda__2___closed__3; lean_object* l_Lean_Elab_Term_quoteAutoTactic___closed__32; lean_object* l_Lean_Elab_Term_quoteAutoTactic___closed__10; lean_object* l_Lean_Elab_Term_elabLetDeclCore___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___lambda__1___closed__4; +extern lean_object* l_Lean_Meta_withoutPostponingUniverseConstraintsImp___rarg___closed__2; extern lean_object* l_myMacro____x40_Init_Notation___hyg_12545____closed__4; lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_elabBindersAux___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabArrow___lambda__1___closed__1; @@ -271,11 +280,9 @@ lean_object* l_Lean_Elab_Term_getCurrMacroScope(lean_object*, lean_object*, lean lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___closed__2; lean_object* l_Lean_Elab_Term_elabArrow___lambda__1___closed__2; -lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___closed__5; lean_object* l_Lean_Elab_Term_expandOptType(lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_registerFailedToInferBinderTypeInfo___closed__3; lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Binders_0__Lean_Elab_Term_getFunBinderIds_x3f___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* l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___closed__3; extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_261____closed__5; lean_object* l_Lean_Elab_Term_elabForall___closed__2; lean_object* l_Lean_Elab_Term_quoteAutoTactic___closed__24; @@ -285,13 +292,12 @@ lean_object* l___regBuiltin_Lean_Elab_Term_elabForall(lean_object*); lean_object* l_Lean_Syntax_mkStrLit(lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_elabBindersAux_loop___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_quoteAutoTactic___closed__19; -lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder_match__1(lean_object*); lean_object* l___private_Init_Util_0__mkPanicMessageWithDecl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_KernelException_toMessageData___closed__15; uint8_t l_Array_isEmpty___rarg(lean_object*); extern lean_object* l_Lean_instInhabitedSyntax; -lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___closed__6; lean_object* l_Lean_Meta_getLocalInstances(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_myMacro____x40_Init_Notation___hyg_1625____closed__2; lean_object* l_Lean_Elab_Term_mkFreshIdent(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -318,13 +324,13 @@ lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_registerFailedToInf lean_object* l_Lean_Elab_Term_expandFunBinders_loop_match__3(lean_object*); lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___spec__4(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Expr_getAutoParamTactic_x3f___closed__2; +lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___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*, lean_object*); lean_object* l_Lean_Elab_Term_elabLetDeclAux___lambda__1___closed__1; lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_registerFailedToInferBinderTypeInfo___closed__1; lean_object* l_Lean_addTrace___at___private_Lean_Elab_Term_0__Lean_Elab_Term_postponeElabTerm___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabLetDeclAux___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_addMacroScope(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Meta_mkArrow___closed__1; -lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___closed__2; lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_addDiscr___boxed(lean_object*, lean_object*, lean_object*); extern lean_object* l___private_Lean_Elab_Util_0__Lean_Elab_evalSyntaxConstantUnsafe___closed__1; lean_object* l_Lean_Elab_Term_elabBinders___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -347,6 +353,7 @@ lean_object* l_Lean_throwError___at_Lean_Elab_Term_elabLetDeclAux___spec__1(lean extern lean_object* l_Lean_Parser_Tactic_match___closed__1; lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_mkMatch(lean_object*, lean_object*, lean_object*, uint8_t); extern lean_object* l_Lean_Expr_instInhabitedExpr; +lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___lambda__1___closed__5; extern lean_object* l_Lean_identKind; lean_object* l_Lean_Elab_Term_expandFunBinders_loop_match__1___rarg(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_expandMatchAltsWhereDecls_loop_match__1___rarg(lean_object*, lean_object*, lean_object*); @@ -405,6 +412,7 @@ extern lean_object* l_myMacro____x40_Init_Notation___hyg_1625____closed__4; lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Term_expandFunBinders_loop___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_mkExplicitBinder(lean_object*, lean_object*); extern lean_object* l___private_Lean_Meta_ExprDefEq_0__Lean_Meta_checkTypesAndAssign___closed__8; +lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___lambda__1___closed__6; lean_object* l_Lean_Elab_Term_adaptExpander(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_FunBinders_elabFunBinderViews___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*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_FunBinders_elabFunBindersAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -421,11 +429,11 @@ lean_object* l_Lean_addMessageContextFull___at_Lean_Meta_instAddMessageContextMe lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux_match__1(lean_object*); lean_object* l_Lean_Elab_Term_quoteAutoTactic___closed__23; lean_object* l_Lean_Elab_Term_expandFunBinders_loop___closed__2; +extern lean_object* l_Lean_Meta_withoutPostponingUniverseConstraintsImp___rarg___closed__1; lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandOptIdent(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Syntax_isNone(lean_object*); lean_object* lean_name_mk_numeral(lean_object*, lean_object*); lean_object* l_Lean_setEnv___at_Lean_Elab_Term_declareTacticSyntax___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___closed__7; lean_object* l_Lean_Meta_isExprDefEq(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_mkFreshExprMVarImpl(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_throwUnsupportedSyntax___at___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -468,9 +476,11 @@ lean_object* l_Lean_throwError___at_Lean_Elab_Term_elabLetDeclAux___spec__1___ra lean_object* l_Lean_Elab_Term_quoteAutoTactic___closed__11; lean_object* l___regBuiltin_Lean_Elab_Term_elabLetDecl(lean_object*); extern lean_object* l_myMacro____x40_Init_Notation___hyg_376____closed__7; +extern lean_object* l_Lean_Meta_CheckAssignment_checkFVar___closed__1; lean_object* l_Lean_Elab_Term_expandFunBinders_loop_match__3___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Term_expandFunBinders_loop___spec__1(lean_object*, size_t, size_t, lean_object*); lean_object* lean_compile_decl(lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_Meta_CheckAssignment_checkFVar___closed__2; lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder_match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabArrow___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_unsafeCast(lean_object*, lean_object*, lean_object*); @@ -533,8 +543,8 @@ lean_object* l_Lean_Elab_Term_expandFunBinders_loop___closed__1; lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderIdent___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_lt(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabBinder(lean_object*); +lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___lambda__1___closed__7; lean_object* lean_add_decl(lean_object*, lean_object*); -uint8_t l_Lean_Syntax_isAntiquotSplice(lean_object*); lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderType(lean_object* x_1, lean_object* x_2) { _start: { @@ -944,7 +954,7 @@ x_2 = lean_alloc_closure((void*)(l_Lean_Elab_Term_quoteAutoTactic_match__1___rar return x_2; } } -static lean_object* _init_l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___closed__1() { +static lean_object* _init_l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___lambda__1___closed__1() { _start: { lean_object* x_1; @@ -952,22 +962,22 @@ x_1 = lean_mk_string("Array.push"); return x_1; } } -static lean_object* _init_l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___closed__2() { +static lean_object* _init_l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___lambda__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___closed__1; +x_1 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___lambda__1___closed__1; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___closed__3() { +static lean_object* _init_l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___lambda__1___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___closed__1; +x_1 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___lambda__1___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___closed__2; +x_3 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___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); @@ -975,7 +985,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___closed__4() { +static lean_object* _init_l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___lambda__1___closed__4() { _start: { lean_object* x_1; @@ -983,7 +993,7 @@ x_1 = lean_mk_string("push"); return x_1; } } -static lean_object* _init_l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___closed__5() { +static lean_object* _init_l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___lambda__1___closed__5() { _start: { lean_object* x_1; @@ -991,225 +1001,367 @@ x_1 = lean_mk_string("invalid auto tactic, antiquotation is not allowed"); return x_1; } } -static lean_object* _init_l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___closed__6() { +static lean_object* _init_l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___lambda__1___closed__6() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___closed__5; +x_1 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___lambda__1___closed__5; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___closed__7() { +static lean_object* _init_l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___lambda__1___closed__7() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___closed__6; +x_1 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___lambda__1___closed__6; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___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, size_t x_7, size_t 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* l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___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* x_13, lean_object* x_14) { _start: { -lean_object* x_17; lean_object* x_18; uint8_t x_24; -x_24 = x_8 < x_7; -if (x_24 == 0) +lean_object* x_15; lean_object* x_67; lean_object* x_75; uint8_t x_76; +x_75 = l_Lean_nullKind; +x_76 = lean_name_eq(x_7, x_75); +if (x_76 == 0) { -lean_object* x_25; -lean_dec(x_15); -lean_dec(x_14); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); +lean_object* x_77; +x_77 = lean_box(0); +x_15 = x_77; +goto block_66; +} +else +{ +uint8_t x_78; +x_78 = l_Lean_Syntax_isAntiquotSuffixSplice(x_1); +if (x_78 == 0) +{ +uint8_t x_79; +x_79 = l_Lean_Syntax_isAntiquotScope(x_1); +if (x_79 == 0) +{ +lean_object* x_80; +x_80 = lean_box(0); +x_15 = x_80; +goto block_66; +} +else +{ +lean_object* x_81; +lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); -x_25 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_25, 0, x_9); -lean_ctor_set(x_25, 1, x_16); -return x_25; +x_81 = lean_box(0); +x_67 = x_81; +goto block_74; +} } else { -lean_object* x_26; lean_object* x_27; lean_object* x_59; uint8_t x_60; -x_26 = lean_array_uget(x_6, x_8); -x_59 = l_Lean_nullKind; -x_60 = lean_name_eq(x_1, x_59); -if (x_60 == 0) -{ -lean_object* x_61; -x_61 = lean_box(0); -x_27 = x_61; -goto block_58; -} -else -{ -uint8_t x_62; -x_62 = l_Lean_Syntax_isAntiquotSplice(x_26); -if (x_62 == 0) -{ -lean_object* x_63; -x_63 = lean_box(0); -x_27 = x_63; -goto block_58; -} -else -{ -lean_object* x_64; lean_object* x_65; uint8_t x_66; -lean_dec(x_9); +lean_object* x_82; +lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); -x_64 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___closed__7; -x_65 = l_Lean_throwErrorAt___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabTermAux___spec__1___rarg(x_26, x_64, x_10, x_11, x_12, x_13, x_14, x_15, x_16); +x_82 = lean_box(0); +x_67 = x_82; +goto block_74; +} +} +block_66: +{ +lean_object* x_16; lean_dec(x_15); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_26); -x_66 = !lean_is_exclusive(x_65); -if (x_66 == 0) -{ -return x_65; -} -else -{ -lean_object* x_67; lean_object* x_68; lean_object* x_69; -x_67 = lean_ctor_get(x_65, 0); -x_68 = lean_ctor_get(x_65, 1); -lean_inc(x_68); -lean_inc(x_67); -lean_dec(x_65); -x_69 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_69, 0, x_67); -lean_ctor_set(x_69, 1, x_68); -return x_69; -} -} -} -block_58: -{ -lean_object* x_28; -lean_dec(x_27); -lean_inc(x_15); -lean_inc(x_14); lean_inc(x_13); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); -x_28 = l_Lean_Elab_Term_quoteAutoTactic(x_26, x_10, x_11, x_12, x_13, x_14, x_15, x_16); -if (lean_obj_tag(x_28) == 0) +lean_inc(x_9); +lean_inc(x_8); +x_16 = l_Lean_Elab_Term_quoteAutoTactic(x_1, x_8, x_9, x_10, x_11, x_12, x_13, x_14); +if (lean_obj_tag(x_16) == 0) { -lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_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; -x_29 = lean_ctor_get(x_28, 0); -lean_inc(x_29); -x_30 = lean_ctor_get(x_28, 1); -lean_inc(x_30); -lean_dec(x_28); -x_31 = l_Lean_Elab_Term_getCurrMacroScope(x_10, x_11, x_12, x_13, x_14, x_15, x_30); -x_32 = lean_ctor_get(x_31, 0); -lean_inc(x_32); -x_33 = lean_ctor_get(x_31, 1); -lean_inc(x_33); -lean_dec(x_31); -x_34 = l_Lean_Elab_Term_getMainModule___rarg(x_15, x_33); -x_35 = lean_ctor_get(x_34, 0); -lean_inc(x_35); -x_36 = lean_ctor_get(x_34, 1); -lean_inc(x_36); -lean_dec(x_34); -x_37 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___closed__4; -lean_inc(x_3); -x_38 = lean_name_mk_string(x_3, x_37); -lean_inc(x_38); -x_39 = l_Lean_addMacroScope(x_35, x_38, x_32); -lean_inc(x_4); -x_40 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_40, 0, x_38); -lean_ctor_set(x_40, 1, x_4); -lean_inc(x_5); -x_41 = lean_alloc_ctor(1, 2, 0); +lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; uint8_t x_23; +x_17 = lean_ctor_get(x_16, 0); +lean_inc(x_17); +x_18 = lean_ctor_get(x_16, 1); +lean_inc(x_18); +lean_dec(x_16); +x_19 = l_Lean_Elab_Term_getCurrMacroScope(x_8, x_9, x_10, x_11, x_12, x_13, x_18); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +x_20 = lean_ctor_get(x_19, 0); +lean_inc(x_20); +x_21 = lean_ctor_get(x_19, 1); +lean_inc(x_21); +lean_dec(x_19); +x_22 = l_Lean_Elab_Term_getMainModule___rarg(x_13, x_21); +lean_dec(x_13); +x_23 = !lean_is_exclusive(x_22); +if (x_23 == 0) +{ +lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; +x_24 = lean_ctor_get(x_22, 0); +x_25 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___lambda__1___closed__4; +x_26 = lean_name_mk_string(x_2, x_25); +lean_inc(x_26); +x_27 = l_Lean_addMacroScope(x_24, x_26, x_20); +x_28 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_28, 0, x_26); +lean_ctor_set(x_28, 1, x_3); +x_29 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_29, 0, x_28); +lean_ctor_set(x_29, 1, x_4); +x_30 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___lambda__1___closed__3; +x_31 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_31, 0, x_5); +lean_ctor_set(x_31, 1, x_30); +lean_ctor_set(x_31, 2, x_27); +lean_ctor_set(x_31, 3, x_29); +x_32 = l_Array_empty___closed__1; +x_33 = lean_array_push(x_32, x_31); +x_34 = lean_array_push(x_32, x_6); +x_35 = lean_array_push(x_34, x_17); +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 = lean_array_push(x_33, x_37); +x_39 = l_myMacro____x40_Init_Notation___hyg_1625____closed__4; +x_40 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_40, 0, x_39); +lean_ctor_set(x_40, 1, x_38); +x_41 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_41, 0, x_40); -lean_ctor_set(x_41, 1, x_5); -x_42 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___closed__3; -lean_inc(x_2); -x_43 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_43, 0, x_2); -lean_ctor_set(x_43, 1, x_42); -lean_ctor_set(x_43, 2, x_39); -lean_ctor_set(x_43, 3, x_41); -x_44 = l_Array_empty___closed__1; -x_45 = lean_array_push(x_44, x_43); -x_46 = lean_array_push(x_44, x_9); -x_47 = lean_array_push(x_46, x_29); -x_48 = l_Lean_nullKind___closed__2; -x_49 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_49, 0, x_48); -lean_ctor_set(x_49, 1, x_47); -x_50 = lean_array_push(x_45, x_49); -x_51 = l_myMacro____x40_Init_Notation___hyg_1625____closed__4; -x_52 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_52, 0, x_51); -lean_ctor_set(x_52, 1, x_50); -x_53 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_53, 0, x_52); -x_17 = x_53; -x_18 = x_36; -goto block_23; +lean_ctor_set(x_22, 0, x_41); +return x_22; } else { -uint8_t x_54; -lean_dec(x_15); -lean_dec(x_14); +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; +x_42 = lean_ctor_get(x_22, 0); +x_43 = lean_ctor_get(x_22, 1); +lean_inc(x_43); +lean_inc(x_42); +lean_dec(x_22); +x_44 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___lambda__1___closed__4; +x_45 = lean_name_mk_string(x_2, x_44); +lean_inc(x_45); +x_46 = l_Lean_addMacroScope(x_42, x_45, x_20); +x_47 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_47, 0, x_45); +lean_ctor_set(x_47, 1, x_3); +x_48 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_48, 0, x_47); +lean_ctor_set(x_48, 1, x_4); +x_49 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___lambda__1___closed__3; +x_50 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_50, 0, x_5); +lean_ctor_set(x_50, 1, x_49); +lean_ctor_set(x_50, 2, x_46); +lean_ctor_set(x_50, 3, x_48); +x_51 = l_Array_empty___closed__1; +x_52 = lean_array_push(x_51, x_50); +x_53 = lean_array_push(x_51, x_6); +x_54 = lean_array_push(x_53, x_17); +x_55 = l_Lean_nullKind___closed__2; +x_56 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_56, 0, x_55); +lean_ctor_set(x_56, 1, x_54); +x_57 = lean_array_push(x_52, x_56); +x_58 = l_myMacro____x40_Init_Notation___hyg_1625____closed__4; +x_59 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_59, 0, x_58); +lean_ctor_set(x_59, 1, x_57); +x_60 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_60, 0, x_59); +x_61 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_61, 0, x_60); +lean_ctor_set(x_61, 1, x_43); +return x_61; +} +} +else +{ +uint8_t x_62; lean_dec(x_13); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); -x_54 = !lean_is_exclusive(x_28); -if (x_54 == 0) +x_62 = !lean_is_exclusive(x_16); +if (x_62 == 0) { -return x_28; +return x_16; } else { -lean_object* x_55; lean_object* x_56; lean_object* x_57; -x_55 = lean_ctor_get(x_28, 0); -x_56 = lean_ctor_get(x_28, 1); -lean_inc(x_56); -lean_inc(x_55); -lean_dec(x_28); -x_57 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_57, 0, x_55); -lean_ctor_set(x_57, 1, x_56); -return x_57; +lean_object* x_63; lean_object* x_64; lean_object* x_65; +x_63 = lean_ctor_get(x_16, 0); +x_64 = lean_ctor_get(x_16, 1); +lean_inc(x_64); +lean_inc(x_63); +lean_dec(x_16); +x_65 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_65, 0, x_63); +lean_ctor_set(x_65, 1, x_64); +return x_65; } } } -} -block_23: +block_74: { -lean_object* x_19; size_t x_20; size_t x_21; -x_19 = lean_ctor_get(x_17, 0); -lean_inc(x_19); -lean_dec(x_17); -x_20 = 1; -x_21 = x_8 + x_20; -x_8 = x_21; -x_9 = x_19; -x_16 = x_18; -goto _start; +lean_object* x_68; lean_object* x_69; uint8_t x_70; +lean_dec(x_67); +x_68 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___lambda__1___closed__7; +x_69 = l_Lean_throwErrorAt___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabTermAux___spec__1___rarg(x_1, x_68, x_8, x_9, x_10, x_11, x_12, x_13, x_14); +lean_dec(x_13); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_1); +x_70 = !lean_is_exclusive(x_69); +if (x_70 == 0) +{ +return x_69; +} +else +{ +lean_object* x_71; lean_object* x_72; lean_object* x_73; +x_71 = lean_ctor_get(x_69, 0); +x_72 = lean_ctor_get(x_69, 1); +lean_inc(x_72); +lean_inc(x_71); +lean_dec(x_69); +x_73 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_73, 0, x_71); +lean_ctor_set(x_73, 1, x_72); +return x_73; +} +} +} +} +lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___lambda__2(lean_object* x_1, size_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, size_t 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) { +_start: +{ +if (lean_obj_tag(x_14) == 0) +{ +lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +x_22 = lean_ctor_get(x_14, 0); +lean_inc(x_22); +lean_dec(x_14); +x_23 = lean_ctor_get(x_1, 0); +lean_inc(x_23); +lean_dec(x_1); +x_24 = lean_ctor_get(x_23, 1); +lean_inc(x_24); +lean_dec(x_23); +x_25 = lean_apply_9(x_24, lean_box(0), x_22, x_15, x_16, x_17, x_18, x_19, x_20, x_21); +return x_25; +} +else +{ +lean_object* x_26; size_t x_27; size_t x_28; lean_object* x_29; +x_26 = lean_ctor_get(x_14, 0); +lean_inc(x_26); +lean_dec(x_14); +x_27 = 1; +x_28 = x_2 + x_27; +x_29 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1(x_3, x_4, x_5, x_6, x_7, x_1, x_8, x_9, x_10, x_11, x_12, x_13, x_28, x_26, x_15, x_16, x_17, x_18, x_19, x_20, x_21); +return x_29; +} +} +} +lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___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, size_t x_12, size_t 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) { +_start: +{ +uint8_t x_22; +x_22 = x_13 < x_12; +if (x_22 == 0) +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; +lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_23 = lean_ctor_get(x_6, 0); +lean_inc(x_23); +lean_dec(x_6); +x_24 = lean_ctor_get(x_23, 1); +lean_inc(x_24); +lean_dec(x_23); +x_25 = lean_apply_9(x_24, lean_box(0), x_14, x_15, x_16, x_17, x_18, x_19, x_20, x_21); +return x_25; +} +else +{ +lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; +x_26 = lean_array_uget(x_11, x_13); +x_27 = lean_ctor_get(x_6, 1); +lean_inc(x_27); +lean_inc(x_1); +lean_inc(x_7); +lean_inc(x_10); +lean_inc(x_9); +lean_inc(x_8); +x_28 = lean_alloc_closure((void*)(l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___lambda__1___boxed), 14, 7); +lean_closure_set(x_28, 0, x_26); +lean_closure_set(x_28, 1, x_8); +lean_closure_set(x_28, 2, x_9); +lean_closure_set(x_28, 3, x_10); +lean_closure_set(x_28, 4, x_7); +lean_closure_set(x_28, 5, x_14); +lean_closure_set(x_28, 6, x_1); +x_29 = lean_box_usize(x_13); +x_30 = lean_box_usize(x_12); +x_31 = lean_alloc_closure((void*)(l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___lambda__2___boxed), 21, 13); +lean_closure_set(x_31, 0, x_6); +lean_closure_set(x_31, 1, x_29); +lean_closure_set(x_31, 2, x_1); +lean_closure_set(x_31, 3, x_2); +lean_closure_set(x_31, 4, x_3); +lean_closure_set(x_31, 5, x_4); +lean_closure_set(x_31, 6, x_5); +lean_closure_set(x_31, 7, x_7); +lean_closure_set(x_31, 8, x_8); +lean_closure_set(x_31, 9, x_9); +lean_closure_set(x_31, 10, x_10); +lean_closure_set(x_31, 11, x_11); +lean_closure_set(x_31, 12, x_30); +x_32 = lean_apply_11(x_27, lean_box(0), lean_box(0), x_28, x_31, x_15, x_16, x_17, x_18, x_19, x_20, x_21); +return x_32; } } } @@ -1664,7 +1816,7 @@ uint8_t x_16; x_16 = !lean_is_exclusive(x_1); if (x_16 == 0) { -lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; 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; size_t x_33; size_t x_34; lean_object* x_35; lean_object* x_36; +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; size_t x_33; size_t x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; x_17 = lean_ctor_get(x_1, 1); lean_dec(x_17); x_18 = lean_ctor_get(x_1, 0); @@ -1696,105 +1848,110 @@ x_32 = lean_array_get_size(x_14); x_33 = lean_usize_of_nat(x_32); lean_dec(x_32); x_34 = 0; -x_35 = l_Array_term_____x5b___x3a___x5d___closed__2; +x_35 = l_Lean_Meta_withoutPostponingUniverseConstraintsImp___rarg___closed__1; +x_36 = l_Lean_Meta_withoutPostponingUniverseConstraintsImp___rarg___closed__2; +x_37 = l_Lean_Meta_withoutPostponingUniverseConstraintsImp___rarg___closed__3; +x_38 = l_Lean_Meta_CheckAssignment_checkFVar___closed__1; +x_39 = l_Lean_Meta_CheckAssignment_checkFVar___closed__2; +x_40 = l_Array_term_____x5b___x3a___x5d___closed__2; lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); lean_inc(x_3); lean_inc(x_2); -x_36 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1(x_13, x_28, x_35, x_27, x_27, x_14, x_33, x_34, x_31, x_2, x_3, x_4, x_5, x_6, x_7, x_24); -lean_dec(x_14); -if (lean_obj_tag(x_36) == 0) +lean_inc(x_13); +x_41 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1(x_13, x_35, x_36, x_37, x_38, x_39, x_28, x_40, x_27, x_27, x_14, x_33, x_34, x_31, x_2, x_3, x_4, x_5, x_6, x_7, x_24); +if (lean_obj_tag(x_41) == 0) { -lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; uint8_t x_43; -x_37 = lean_ctor_get(x_36, 0); -lean_inc(x_37); -x_38 = lean_ctor_get(x_36, 1); -lean_inc(x_38); -lean_dec(x_36); -x_39 = l_Lean_Elab_Term_getCurrMacroScope(x_2, x_3, x_4, x_5, x_6, x_7, x_38); +lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; uint8_t x_48; +x_42 = lean_ctor_get(x_41, 0); +lean_inc(x_42); +x_43 = lean_ctor_get(x_41, 1); +lean_inc(x_43); +lean_dec(x_41); +x_44 = l_Lean_Elab_Term_getCurrMacroScope(x_2, x_3, x_4, x_5, x_6, x_7, x_43); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); -x_40 = lean_ctor_get(x_39, 0); -lean_inc(x_40); -x_41 = lean_ctor_get(x_39, 1); -lean_inc(x_41); -lean_dec(x_39); -x_42 = l_Lean_Elab_Term_getMainModule___rarg(x_7, x_41); +x_45 = lean_ctor_get(x_44, 0); +lean_inc(x_45); +x_46 = lean_ctor_get(x_44, 1); +lean_inc(x_46); +lean_dec(x_44); +x_47 = l_Lean_Elab_Term_getMainModule___rarg(x_7, x_46); lean_dec(x_7); -x_43 = !lean_is_exclusive(x_42); -if (x_43 == 0) +x_48 = !lean_is_exclusive(x_47); +if (x_48 == 0) { -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; -x_44 = lean_ctor_get(x_42, 0); -x_45 = l_Lean_Elab_Term_quoteAutoTactic___closed__15; -x_46 = l_Lean_addMacroScope(x_44, x_45, x_40); -x_47 = l_Lean_Elab_Term_quoteAutoTactic___closed__13; -x_48 = l_Lean_Elab_Term_quoteAutoTactic___closed__18; -x_49 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_49, 0, x_28); -lean_ctor_set(x_49, 1, x_47); -lean_ctor_set(x_49, 2, x_46); -lean_ctor_set(x_49, 3, x_48); -x_50 = l_Array_empty___closed__1; -x_51 = lean_array_push(x_50, x_49); -x_52 = l___private_Init_Meta_0__Lean_quoteName(x_13); -x_53 = lean_array_push(x_50, x_52); -x_54 = lean_array_push(x_53, x_37); -x_55 = l_Lean_nullKind___closed__2; -lean_ctor_set(x_1, 1, x_54); -lean_ctor_set(x_1, 0, x_55); -x_56 = lean_array_push(x_51, x_1); -x_57 = l_myMacro____x40_Init_Notation___hyg_1625____closed__4; -x_58 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_58, 0, x_57); -lean_ctor_set(x_58, 1, x_56); -lean_ctor_set(x_42, 0, x_58); -return x_42; +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; +x_49 = lean_ctor_get(x_47, 0); +x_50 = l_Lean_Elab_Term_quoteAutoTactic___closed__15; +x_51 = l_Lean_addMacroScope(x_49, x_50, x_45); +x_52 = l_Lean_Elab_Term_quoteAutoTactic___closed__13; +x_53 = l_Lean_Elab_Term_quoteAutoTactic___closed__18; +x_54 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_54, 0, x_28); +lean_ctor_set(x_54, 1, x_52); +lean_ctor_set(x_54, 2, x_51); +lean_ctor_set(x_54, 3, x_53); +x_55 = l_Array_empty___closed__1; +x_56 = lean_array_push(x_55, x_54); +x_57 = l___private_Init_Meta_0__Lean_quoteName(x_13); +x_58 = lean_array_push(x_55, x_57); +x_59 = lean_array_push(x_58, x_42); +x_60 = l_Lean_nullKind___closed__2; +lean_ctor_set(x_1, 1, x_59); +lean_ctor_set(x_1, 0, x_60); +x_61 = lean_array_push(x_56, x_1); +x_62 = l_myMacro____x40_Init_Notation___hyg_1625____closed__4; +x_63 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_63, 0, x_62); +lean_ctor_set(x_63, 1, x_61); +lean_ctor_set(x_47, 0, x_63); +return x_47; } else { -lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; -x_59 = lean_ctor_get(x_42, 0); -x_60 = lean_ctor_get(x_42, 1); -lean_inc(x_60); -lean_inc(x_59); -lean_dec(x_42); -x_61 = l_Lean_Elab_Term_quoteAutoTactic___closed__15; -x_62 = l_Lean_addMacroScope(x_59, x_61, x_40); -x_63 = l_Lean_Elab_Term_quoteAutoTactic___closed__13; -x_64 = l_Lean_Elab_Term_quoteAutoTactic___closed__18; -x_65 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_65, 0, x_28); -lean_ctor_set(x_65, 1, x_63); -lean_ctor_set(x_65, 2, x_62); -lean_ctor_set(x_65, 3, x_64); -x_66 = l_Array_empty___closed__1; -x_67 = lean_array_push(x_66, x_65); -x_68 = l___private_Init_Meta_0__Lean_quoteName(x_13); -x_69 = lean_array_push(x_66, x_68); -x_70 = lean_array_push(x_69, x_37); -x_71 = l_Lean_nullKind___closed__2; -lean_ctor_set(x_1, 1, x_70); -lean_ctor_set(x_1, 0, x_71); -x_72 = lean_array_push(x_67, x_1); -x_73 = l_myMacro____x40_Init_Notation___hyg_1625____closed__4; -x_74 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_74, 0, x_73); -lean_ctor_set(x_74, 1, x_72); -x_75 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_75, 0, x_74); -lean_ctor_set(x_75, 1, x_60); -return x_75; +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_64 = lean_ctor_get(x_47, 0); +x_65 = lean_ctor_get(x_47, 1); +lean_inc(x_65); +lean_inc(x_64); +lean_dec(x_47); +x_66 = l_Lean_Elab_Term_quoteAutoTactic___closed__15; +x_67 = l_Lean_addMacroScope(x_64, x_66, x_45); +x_68 = l_Lean_Elab_Term_quoteAutoTactic___closed__13; +x_69 = l_Lean_Elab_Term_quoteAutoTactic___closed__18; +x_70 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_70, 0, x_28); +lean_ctor_set(x_70, 1, x_68); +lean_ctor_set(x_70, 2, x_67); +lean_ctor_set(x_70, 3, x_69); +x_71 = l_Array_empty___closed__1; +x_72 = lean_array_push(x_71, x_70); +x_73 = l___private_Init_Meta_0__Lean_quoteName(x_13); +x_74 = lean_array_push(x_71, x_73); +x_75 = lean_array_push(x_74, x_42); +x_76 = l_Lean_nullKind___closed__2; +lean_ctor_set(x_1, 1, x_75); +lean_ctor_set(x_1, 0, x_76); +x_77 = lean_array_push(x_72, x_1); +x_78 = l_myMacro____x40_Init_Notation___hyg_1625____closed__4; +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 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_80, 0, x_79); +lean_ctor_set(x_80, 1, x_65); +return x_80; } } else { -uint8_t x_76; +uint8_t x_81; lean_free_object(x_1); lean_dec(x_13); lean_dec(x_7); @@ -1803,134 +1960,139 @@ lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); -x_76 = !lean_is_exclusive(x_36); -if (x_76 == 0) +x_81 = !lean_is_exclusive(x_41); +if (x_81 == 0) { -return x_36; +return x_41; } else { -lean_object* x_77; lean_object* x_78; lean_object* x_79; -x_77 = lean_ctor_get(x_36, 0); -x_78 = lean_ctor_get(x_36, 1); -lean_inc(x_78); -lean_inc(x_77); -lean_dec(x_36); -x_79 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_79, 0, x_77); -lean_ctor_set(x_79, 1, x_78); -return x_79; -} -} -} -else -{ -lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; 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; size_t x_94; size_t x_95; lean_object* x_96; lean_object* x_97; -lean_dec(x_1); -x_80 = l_Lean_Elab_Term_getCurrMacroScope(x_2, x_3, x_4, x_5, x_6, x_7, x_8); -x_81 = lean_ctor_get(x_80, 0); -lean_inc(x_81); -x_82 = lean_ctor_get(x_80, 1); +lean_object* x_82; lean_object* x_83; lean_object* x_84; +x_82 = lean_ctor_get(x_41, 0); +x_83 = lean_ctor_get(x_41, 1); +lean_inc(x_83); lean_inc(x_82); -lean_dec(x_80); -x_83 = l_Lean_Elab_Term_getMainModule___rarg(x_7, x_82); -x_84 = lean_ctor_get(x_83, 0); -lean_inc(x_84); -x_85 = lean_ctor_get(x_83, 1); -lean_inc(x_85); -lean_dec(x_83); -x_86 = l_Lean_Elab_Term_quoteAutoTactic___closed__8; -x_87 = l_Lean_addMacroScope(x_84, x_86, x_81); -x_88 = lean_box(0); -x_89 = l_Lean_instInhabitedSourceInfo___closed__1; -x_90 = l_Lean_Elab_Term_quoteAutoTactic___closed__6; -x_91 = l_Lean_Elab_Term_quoteAutoTactic___closed__10; -x_92 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_92, 0, x_89); -lean_ctor_set(x_92, 1, x_90); -lean_ctor_set(x_92, 2, x_87); -lean_ctor_set(x_92, 3, x_91); -x_93 = lean_array_get_size(x_14); -x_94 = lean_usize_of_nat(x_93); -lean_dec(x_93); -x_95 = 0; -x_96 = l_Array_term_____x5b___x3a___x5d___closed__2; +lean_dec(x_41); +x_84 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_84, 0, x_82); +lean_ctor_set(x_84, 1, x_83); +return x_84; +} +} +} +else +{ +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; size_t x_99; size_t x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; +lean_dec(x_1); +x_85 = l_Lean_Elab_Term_getCurrMacroScope(x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_86 = lean_ctor_get(x_85, 0); +lean_inc(x_86); +x_87 = lean_ctor_get(x_85, 1); +lean_inc(x_87); +lean_dec(x_85); +x_88 = l_Lean_Elab_Term_getMainModule___rarg(x_7, x_87); +x_89 = lean_ctor_get(x_88, 0); +lean_inc(x_89); +x_90 = lean_ctor_get(x_88, 1); +lean_inc(x_90); +lean_dec(x_88); +x_91 = l_Lean_Elab_Term_quoteAutoTactic___closed__8; +x_92 = l_Lean_addMacroScope(x_89, x_91, x_86); +x_93 = lean_box(0); +x_94 = l_Lean_instInhabitedSourceInfo___closed__1; +x_95 = l_Lean_Elab_Term_quoteAutoTactic___closed__6; +x_96 = l_Lean_Elab_Term_quoteAutoTactic___closed__10; +x_97 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_97, 0, x_94); +lean_ctor_set(x_97, 1, x_95); +lean_ctor_set(x_97, 2, x_92); +lean_ctor_set(x_97, 3, x_96); +x_98 = lean_array_get_size(x_14); +x_99 = lean_usize_of_nat(x_98); +lean_dec(x_98); +x_100 = 0; +x_101 = l_Lean_Meta_withoutPostponingUniverseConstraintsImp___rarg___closed__1; +x_102 = l_Lean_Meta_withoutPostponingUniverseConstraintsImp___rarg___closed__2; +x_103 = l_Lean_Meta_withoutPostponingUniverseConstraintsImp___rarg___closed__3; +x_104 = l_Lean_Meta_CheckAssignment_checkFVar___closed__1; +x_105 = l_Lean_Meta_CheckAssignment_checkFVar___closed__2; +x_106 = l_Array_term_____x5b___x3a___x5d___closed__2; lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); lean_inc(x_3); lean_inc(x_2); -x_97 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1(x_13, x_89, x_96, x_88, x_88, x_14, x_94, x_95, x_92, x_2, x_3, x_4, x_5, x_6, x_7, x_85); -lean_dec(x_14); -if (lean_obj_tag(x_97) == 0) +lean_inc(x_13); +x_107 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1(x_13, x_101, x_102, x_103, x_104, x_105, x_94, x_106, x_93, x_93, x_14, x_99, x_100, x_97, x_2, x_3, x_4, x_5, x_6, x_7, x_90); +if (lean_obj_tag(x_107) == 0) { -lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; -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 = l_Lean_Elab_Term_getCurrMacroScope(x_2, x_3, x_4, x_5, x_6, x_7, x_99); +lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; +x_108 = lean_ctor_get(x_107, 0); +lean_inc(x_108); +x_109 = lean_ctor_get(x_107, 1); +lean_inc(x_109); +lean_dec(x_107); +x_110 = l_Lean_Elab_Term_getCurrMacroScope(x_2, x_3, x_4, x_5, x_6, x_7, x_109); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); -x_101 = lean_ctor_get(x_100, 0); -lean_inc(x_101); -x_102 = lean_ctor_get(x_100, 1); -lean_inc(x_102); -lean_dec(x_100); -x_103 = l_Lean_Elab_Term_getMainModule___rarg(x_7, x_102); +x_111 = lean_ctor_get(x_110, 0); +lean_inc(x_111); +x_112 = lean_ctor_get(x_110, 1); +lean_inc(x_112); +lean_dec(x_110); +x_113 = l_Lean_Elab_Term_getMainModule___rarg(x_7, x_112); lean_dec(x_7); -x_104 = lean_ctor_get(x_103, 0); -lean_inc(x_104); -x_105 = lean_ctor_get(x_103, 1); -lean_inc(x_105); -if (lean_is_exclusive(x_103)) { - lean_ctor_release(x_103, 0); - lean_ctor_release(x_103, 1); - x_106 = x_103; +x_114 = lean_ctor_get(x_113, 0); +lean_inc(x_114); +x_115 = lean_ctor_get(x_113, 1); +lean_inc(x_115); +if (lean_is_exclusive(x_113)) { + lean_ctor_release(x_113, 0); + lean_ctor_release(x_113, 1); + x_116 = x_113; } else { - lean_dec_ref(x_103); - x_106 = lean_box(0); + lean_dec_ref(x_113); + x_116 = lean_box(0); } -x_107 = l_Lean_Elab_Term_quoteAutoTactic___closed__15; -x_108 = l_Lean_addMacroScope(x_104, x_107, x_101); -x_109 = l_Lean_Elab_Term_quoteAutoTactic___closed__13; -x_110 = l_Lean_Elab_Term_quoteAutoTactic___closed__18; -x_111 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_111, 0, x_89); -lean_ctor_set(x_111, 1, x_109); -lean_ctor_set(x_111, 2, x_108); -lean_ctor_set(x_111, 3, x_110); -x_112 = l_Array_empty___closed__1; -x_113 = lean_array_push(x_112, x_111); -x_114 = l___private_Init_Meta_0__Lean_quoteName(x_13); -x_115 = lean_array_push(x_112, x_114); -x_116 = lean_array_push(x_115, x_98); -x_117 = l_Lean_nullKind___closed__2; -x_118 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_118, 0, x_117); -lean_ctor_set(x_118, 1, x_116); -x_119 = lean_array_push(x_113, x_118); -x_120 = l_myMacro____x40_Init_Notation___hyg_1625____closed__4; -x_121 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_121, 0, x_120); +x_117 = l_Lean_Elab_Term_quoteAutoTactic___closed__15; +x_118 = l_Lean_addMacroScope(x_114, x_117, x_111); +x_119 = l_Lean_Elab_Term_quoteAutoTactic___closed__13; +x_120 = l_Lean_Elab_Term_quoteAutoTactic___closed__18; +x_121 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_121, 0, x_94); lean_ctor_set(x_121, 1, x_119); -if (lean_is_scalar(x_106)) { - x_122 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_121, 2, x_118); +lean_ctor_set(x_121, 3, x_120); +x_122 = l_Array_empty___closed__1; +x_123 = lean_array_push(x_122, x_121); +x_124 = l___private_Init_Meta_0__Lean_quoteName(x_13); +x_125 = lean_array_push(x_122, x_124); +x_126 = lean_array_push(x_125, x_108); +x_127 = l_Lean_nullKind___closed__2; +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_myMacro____x40_Init_Notation___hyg_1625____closed__4; +x_131 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_131, 0, x_130); +lean_ctor_set(x_131, 1, x_129); +if (lean_is_scalar(x_116)) { + x_132 = lean_alloc_ctor(0, 2, 0); } else { - x_122 = x_106; + x_132 = x_116; } -lean_ctor_set(x_122, 0, x_121); -lean_ctor_set(x_122, 1, x_105); -return x_122; +lean_ctor_set(x_132, 0, x_131); +lean_ctor_set(x_132, 1, x_115); +return x_132; } else { -lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; +lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_dec(x_13); lean_dec(x_7); lean_dec(x_6); @@ -1938,232 +2100,293 @@ lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); -x_123 = lean_ctor_get(x_97, 0); -lean_inc(x_123); -x_124 = lean_ctor_get(x_97, 1); -lean_inc(x_124); -if (lean_is_exclusive(x_97)) { - lean_ctor_release(x_97, 0); - lean_ctor_release(x_97, 1); - x_125 = x_97; +x_133 = lean_ctor_get(x_107, 0); +lean_inc(x_133); +x_134 = lean_ctor_get(x_107, 1); +lean_inc(x_134); +if (lean_is_exclusive(x_107)) { + lean_ctor_release(x_107, 0); + lean_ctor_release(x_107, 1); + x_135 = x_107; } else { - lean_dec_ref(x_97); - x_125 = lean_box(0); + lean_dec_ref(x_107); + x_135 = lean_box(0); } -if (lean_is_scalar(x_125)) { - x_126 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_135)) { + x_136 = lean_alloc_ctor(1, 2, 0); } else { - x_126 = x_125; + x_136 = x_135; } -lean_ctor_set(x_126, 0, x_123); -lean_ctor_set(x_126, 1, x_124); -return x_126; +lean_ctor_set(x_136, 0, x_133); +lean_ctor_set(x_136, 1, x_134); +return x_136; } } } else { -lean_object* x_127; lean_object* x_128; +lean_object* x_137; lean_object* x_138; lean_dec(x_14); lean_dec(x_13); -x_127 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___closed__7; -x_128 = l_Lean_throwErrorAt___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabTermAux___spec__1___rarg(x_1, x_127, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_137 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___lambda__1___closed__7; +x_138 = l_Lean_throwErrorAt___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabTermAux___spec__1___rarg(x_1, x_137, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_7); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_1); -return x_128; +return x_138; } } case 2: { -uint8_t x_129; -x_129 = !lean_is_exclusive(x_1); -if (x_129 == 0) +uint8_t x_139; +x_139 = !lean_is_exclusive(x_1); +if (x_139 == 0) { -lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; uint8_t x_136; -x_130 = lean_ctor_get(x_1, 1); -x_131 = lean_ctor_get(x_1, 0); -lean_dec(x_131); -x_132 = l_Lean_Elab_Term_getCurrMacroScope(x_2, x_3, x_4, x_5, x_6, x_7, x_8); +lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; uint8_t x_146; +x_140 = lean_ctor_get(x_1, 1); +x_141 = lean_ctor_get(x_1, 0); +lean_dec(x_141); +x_142 = l_Lean_Elab_Term_getCurrMacroScope(x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); -x_133 = lean_ctor_get(x_132, 0); -lean_inc(x_133); -x_134 = lean_ctor_get(x_132, 1); -lean_inc(x_134); -lean_dec(x_132); -x_135 = l_Lean_Elab_Term_getMainModule___rarg(x_7, x_134); +x_143 = lean_ctor_get(x_142, 0); +lean_inc(x_143); +x_144 = lean_ctor_get(x_142, 1); +lean_inc(x_144); +lean_dec(x_142); +x_145 = l_Lean_Elab_Term_getMainModule___rarg(x_7, x_144); lean_dec(x_7); -x_136 = !lean_is_exclusive(x_135); -if (x_136 == 0) +x_146 = !lean_is_exclusive(x_145); +if (x_146 == 0) { -lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; -x_137 = lean_ctor_get(x_135, 0); -x_138 = l_Lean_Elab_Term_quoteAutoTactic___closed__22; -x_139 = l_Lean_addMacroScope(x_137, x_138, x_133); -x_140 = l_Lean_instInhabitedSourceInfo___closed__1; -x_141 = l_Lean_Elab_Term_quoteAutoTactic___closed__21; -x_142 = l_Lean_Elab_Term_quoteAutoTactic___closed__25; -x_143 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_143, 0, x_140); -lean_ctor_set(x_143, 1, x_141); -lean_ctor_set(x_143, 2, x_139); -lean_ctor_set(x_143, 3, x_142); -x_144 = l_Array_empty___closed__1; -x_145 = lean_array_push(x_144, x_143); -x_146 = l_Lean_Syntax_mkStrLit(x_130, x_140); -lean_dec(x_130); -x_147 = l_Lean_Elab_Term_quoteAutoTactic___closed__38; -x_148 = lean_array_push(x_147, x_146); -x_149 = l_Lean_nullKind___closed__2; +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; +x_147 = lean_ctor_get(x_145, 0); +x_148 = l_Lean_Elab_Term_quoteAutoTactic___closed__22; +x_149 = l_Lean_addMacroScope(x_147, x_148, x_143); +x_150 = l_Lean_instInhabitedSourceInfo___closed__1; +x_151 = l_Lean_Elab_Term_quoteAutoTactic___closed__21; +x_152 = l_Lean_Elab_Term_quoteAutoTactic___closed__25; +x_153 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_153, 0, x_150); +lean_ctor_set(x_153, 1, x_151); +lean_ctor_set(x_153, 2, x_149); +lean_ctor_set(x_153, 3, x_152); +x_154 = l_Array_empty___closed__1; +x_155 = lean_array_push(x_154, x_153); +x_156 = l_Lean_Syntax_mkStrLit(x_140, x_150); +lean_dec(x_140); +x_157 = l_Lean_Elab_Term_quoteAutoTactic___closed__38; +x_158 = lean_array_push(x_157, x_156); +x_159 = l_Lean_nullKind___closed__2; lean_ctor_set_tag(x_1, 1); -lean_ctor_set(x_1, 1, x_148); -lean_ctor_set(x_1, 0, x_149); -x_150 = lean_array_push(x_145, x_1); -x_151 = l_myMacro____x40_Init_Notation___hyg_1625____closed__4; -x_152 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_152, 0, x_151); -lean_ctor_set(x_152, 1, x_150); -lean_ctor_set(x_135, 0, x_152); -return x_135; +lean_ctor_set(x_1, 1, x_158); +lean_ctor_set(x_1, 0, x_159); +x_160 = lean_array_push(x_155, x_1); +x_161 = l_myMacro____x40_Init_Notation___hyg_1625____closed__4; +x_162 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_162, 0, x_161); +lean_ctor_set(x_162, 1, x_160); +lean_ctor_set(x_145, 0, x_162); +return x_145; } else { -lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; lean_object* x_169; lean_object* x_170; -x_153 = lean_ctor_get(x_135, 0); -x_154 = lean_ctor_get(x_135, 1); -lean_inc(x_154); -lean_inc(x_153); -lean_dec(x_135); -x_155 = l_Lean_Elab_Term_quoteAutoTactic___closed__22; -x_156 = l_Lean_addMacroScope(x_153, x_155, x_133); -x_157 = l_Lean_instInhabitedSourceInfo___closed__1; -x_158 = l_Lean_Elab_Term_quoteAutoTactic___closed__21; -x_159 = l_Lean_Elab_Term_quoteAutoTactic___closed__25; -x_160 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_160, 0, x_157); -lean_ctor_set(x_160, 1, x_158); -lean_ctor_set(x_160, 2, x_156); -lean_ctor_set(x_160, 3, x_159); -x_161 = l_Array_empty___closed__1; -x_162 = lean_array_push(x_161, x_160); -x_163 = l_Lean_Syntax_mkStrLit(x_130, x_157); -lean_dec(x_130); -x_164 = l_Lean_Elab_Term_quoteAutoTactic___closed__38; -x_165 = lean_array_push(x_164, x_163); -x_166 = l_Lean_nullKind___closed__2; +lean_object* x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; lean_object* x_169; lean_object* x_170; lean_object* x_171; lean_object* x_172; lean_object* x_173; lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; lean_object* x_178; lean_object* x_179; lean_object* x_180; +x_163 = lean_ctor_get(x_145, 0); +x_164 = lean_ctor_get(x_145, 1); +lean_inc(x_164); +lean_inc(x_163); +lean_dec(x_145); +x_165 = l_Lean_Elab_Term_quoteAutoTactic___closed__22; +x_166 = l_Lean_addMacroScope(x_163, x_165, x_143); +x_167 = l_Lean_instInhabitedSourceInfo___closed__1; +x_168 = l_Lean_Elab_Term_quoteAutoTactic___closed__21; +x_169 = l_Lean_Elab_Term_quoteAutoTactic___closed__25; +x_170 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_170, 0, x_167); +lean_ctor_set(x_170, 1, x_168); +lean_ctor_set(x_170, 2, x_166); +lean_ctor_set(x_170, 3, x_169); +x_171 = l_Array_empty___closed__1; +x_172 = lean_array_push(x_171, x_170); +x_173 = l_Lean_Syntax_mkStrLit(x_140, x_167); +lean_dec(x_140); +x_174 = l_Lean_Elab_Term_quoteAutoTactic___closed__38; +x_175 = lean_array_push(x_174, x_173); +x_176 = l_Lean_nullKind___closed__2; lean_ctor_set_tag(x_1, 1); -lean_ctor_set(x_1, 1, x_165); -lean_ctor_set(x_1, 0, x_166); -x_167 = lean_array_push(x_162, x_1); -x_168 = l_myMacro____x40_Init_Notation___hyg_1625____closed__4; -x_169 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_169, 0, x_168); -lean_ctor_set(x_169, 1, x_167); -x_170 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_170, 0, x_169); -lean_ctor_set(x_170, 1, x_154); -return x_170; +lean_ctor_set(x_1, 1, x_175); +lean_ctor_set(x_1, 0, x_176); +x_177 = lean_array_push(x_172, x_1); +x_178 = l_myMacro____x40_Init_Notation___hyg_1625____closed__4; +x_179 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_179, 0, x_178); +lean_ctor_set(x_179, 1, x_177); +x_180 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_180, 0, x_179); +lean_ctor_set(x_180, 1, x_164); +return x_180; } } else { -lean_object* x_171; lean_object* x_172; lean_object* x_173; lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; lean_object* x_178; lean_object* x_179; lean_object* x_180; lean_object* x_181; lean_object* x_182; lean_object* x_183; lean_object* x_184; lean_object* x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; lean_object* x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; -x_171 = lean_ctor_get(x_1, 1); -lean_inc(x_171); +lean_object* x_181; lean_object* x_182; lean_object* x_183; lean_object* x_184; lean_object* x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; lean_object* x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; lean_object* x_200; lean_object* x_201; lean_object* x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; +x_181 = lean_ctor_get(x_1, 1); +lean_inc(x_181); lean_dec(x_1); -x_172 = l_Lean_Elab_Term_getCurrMacroScope(x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_182 = l_Lean_Elab_Term_getCurrMacroScope(x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); -x_173 = lean_ctor_get(x_172, 0); -lean_inc(x_173); -x_174 = lean_ctor_get(x_172, 1); -lean_inc(x_174); -lean_dec(x_172); -x_175 = l_Lean_Elab_Term_getMainModule___rarg(x_7, x_174); +x_183 = lean_ctor_get(x_182, 0); +lean_inc(x_183); +x_184 = lean_ctor_get(x_182, 1); +lean_inc(x_184); +lean_dec(x_182); +x_185 = l_Lean_Elab_Term_getMainModule___rarg(x_7, x_184); lean_dec(x_7); -x_176 = lean_ctor_get(x_175, 0); -lean_inc(x_176); -x_177 = lean_ctor_get(x_175, 1); -lean_inc(x_177); -if (lean_is_exclusive(x_175)) { - lean_ctor_release(x_175, 0); - lean_ctor_release(x_175, 1); - x_178 = x_175; +x_186 = lean_ctor_get(x_185, 0); +lean_inc(x_186); +x_187 = lean_ctor_get(x_185, 1); +lean_inc(x_187); +if (lean_is_exclusive(x_185)) { + lean_ctor_release(x_185, 0); + lean_ctor_release(x_185, 1); + x_188 = x_185; } else { - lean_dec_ref(x_175); - x_178 = lean_box(0); + lean_dec_ref(x_185); + x_188 = lean_box(0); } -x_179 = l_Lean_Elab_Term_quoteAutoTactic___closed__22; -x_180 = l_Lean_addMacroScope(x_176, x_179, x_173); -x_181 = l_Lean_instInhabitedSourceInfo___closed__1; -x_182 = l_Lean_Elab_Term_quoteAutoTactic___closed__21; -x_183 = l_Lean_Elab_Term_quoteAutoTactic___closed__25; -x_184 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_184, 0, x_181); -lean_ctor_set(x_184, 1, x_182); -lean_ctor_set(x_184, 2, x_180); -lean_ctor_set(x_184, 3, x_183); -x_185 = l_Array_empty___closed__1; -x_186 = lean_array_push(x_185, x_184); -x_187 = l_Lean_Syntax_mkStrLit(x_171, x_181); -lean_dec(x_171); -x_188 = l_Lean_Elab_Term_quoteAutoTactic___closed__38; -x_189 = lean_array_push(x_188, x_187); -x_190 = l_Lean_nullKind___closed__2; -x_191 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_191, 0, x_190); -lean_ctor_set(x_191, 1, x_189); -x_192 = lean_array_push(x_186, x_191); -x_193 = l_myMacro____x40_Init_Notation___hyg_1625____closed__4; -x_194 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_194, 0, x_193); +x_189 = l_Lean_Elab_Term_quoteAutoTactic___closed__22; +x_190 = l_Lean_addMacroScope(x_186, x_189, x_183); +x_191 = l_Lean_instInhabitedSourceInfo___closed__1; +x_192 = l_Lean_Elab_Term_quoteAutoTactic___closed__21; +x_193 = l_Lean_Elab_Term_quoteAutoTactic___closed__25; +x_194 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_194, 0, x_191); lean_ctor_set(x_194, 1, x_192); -if (lean_is_scalar(x_178)) { - x_195 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_194, 2, x_190); +lean_ctor_set(x_194, 3, x_193); +x_195 = l_Array_empty___closed__1; +x_196 = lean_array_push(x_195, x_194); +x_197 = l_Lean_Syntax_mkStrLit(x_181, x_191); +lean_dec(x_181); +x_198 = l_Lean_Elab_Term_quoteAutoTactic___closed__38; +x_199 = lean_array_push(x_198, x_197); +x_200 = l_Lean_nullKind___closed__2; +x_201 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_201, 0, x_200); +lean_ctor_set(x_201, 1, x_199); +x_202 = lean_array_push(x_196, x_201); +x_203 = l_myMacro____x40_Init_Notation___hyg_1625____closed__4; +x_204 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_204, 0, x_203); +lean_ctor_set(x_204, 1, x_202); +if (lean_is_scalar(x_188)) { + x_205 = lean_alloc_ctor(0, 2, 0); } else { - x_195 = x_178; + x_205 = x_188; } -lean_ctor_set(x_195, 0, x_194); -lean_ctor_set(x_195, 1, x_177); -return x_195; +lean_ctor_set(x_205, 0, x_204); +lean_ctor_set(x_205, 1, x_187); +return x_205; } } default: { -lean_object* x_196; lean_object* x_197; -x_196 = l_Lean_Elab_Term_quoteAutoTactic___closed__41; -x_197 = l_Lean_throwErrorAt___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabTermAux___spec__1___rarg(x_1, x_196, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +lean_object* x_206; lean_object* x_207; +x_206 = l_Lean_Elab_Term_quoteAutoTactic___closed__41; +x_207 = l_Lean_throwErrorAt___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabTermAux___spec__1___rarg(x_1, x_206, x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_7); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_1); -return x_197; +return x_207; } } } } -lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___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* x_16) { +lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { _start: { -size_t x_17; size_t x_18; lean_object* x_19; -x_17 = lean_unbox_usize(x_7); +lean_object* x_15; +x_15 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___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, x_14); lean_dec(x_7); -x_18 = lean_unbox_usize(x_8); -lean_dec(x_8); -x_19 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1(x_1, x_2, x_3, x_4, x_5, x_6, x_17, x_18, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16); -lean_dec(x_6); -lean_dec(x_1); -return x_19; +return x_15; +} +} +lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___lambda__2___boxed(lean_object** _args) { +lean_object* x_1 = _args[0]; +lean_object* x_2 = _args[1]; +lean_object* x_3 = _args[2]; +lean_object* x_4 = _args[3]; +lean_object* x_5 = _args[4]; +lean_object* x_6 = _args[5]; +lean_object* x_7 = _args[6]; +lean_object* x_8 = _args[7]; +lean_object* x_9 = _args[8]; +lean_object* x_10 = _args[9]; +lean_object* x_11 = _args[10]; +lean_object* x_12 = _args[11]; +lean_object* x_13 = _args[12]; +lean_object* x_14 = _args[13]; +lean_object* x_15 = _args[14]; +lean_object* x_16 = _args[15]; +lean_object* x_17 = _args[16]; +lean_object* x_18 = _args[17]; +lean_object* x_19 = _args[18]; +lean_object* x_20 = _args[19]; +lean_object* x_21 = _args[20]; +_start: +{ +size_t x_22; size_t x_23; lean_object* x_24; +x_22 = lean_unbox_usize(x_2); +lean_dec(x_2); +x_23 = lean_unbox_usize(x_13); +lean_dec(x_13); +x_24 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___lambda__2(x_1, x_22, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_23, x_14, x_15, x_16, x_17, x_18, x_19, x_20, x_21); +return x_24; +} +} +lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___boxed(lean_object** _args) { +lean_object* x_1 = _args[0]; +lean_object* x_2 = _args[1]; +lean_object* x_3 = _args[2]; +lean_object* x_4 = _args[3]; +lean_object* x_5 = _args[4]; +lean_object* x_6 = _args[5]; +lean_object* x_7 = _args[6]; +lean_object* x_8 = _args[7]; +lean_object* x_9 = _args[8]; +lean_object* x_10 = _args[9]; +lean_object* x_11 = _args[10]; +lean_object* x_12 = _args[11]; +lean_object* x_13 = _args[12]; +lean_object* x_14 = _args[13]; +lean_object* x_15 = _args[14]; +lean_object* x_16 = _args[15]; +lean_object* x_17 = _args[16]; +lean_object* x_18 = _args[17]; +lean_object* x_19 = _args[18]; +lean_object* x_20 = _args[19]; +lean_object* x_21 = _args[20]; +_start: +{ +size_t x_22; size_t x_23; lean_object* x_24; +x_22 = lean_unbox_usize(x_12); +lean_dec(x_12); +x_23 = lean_unbox_usize(x_13); +lean_dec(x_13); +x_24 = l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___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_22, x_23, x_14, x_15, x_16, x_17, x_18, x_19, x_20, x_21); +return x_24; } } lean_object* l_Lean_throwKernelException___at_Lean_Elab_Term_declareTacticSyntax___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { @@ -17100,7 +17323,7 @@ lean_ctor_set(x_8, 0, x_7); lean_ctor_set(x_8, 1, x_2); x_9 = l_Lean_Parser_Tactic_changeWith___closed__3; x_10 = l_Lean_mkAtomFrom(x_1, x_9); -x_11 = l_Lean_Syntax_mkAntiquotNode___closed__3; +x_11 = l_Lean_Elab_Term_mkExplicitBinder___closed__3; x_12 = lean_array_push(x_11, x_6); x_13 = lean_array_push(x_12, x_8); x_14 = l_Lean_mkOptionalNode___closed__1; @@ -20189,7 +20412,7 @@ lean_ctor_set(x_111, 0, x_110); lean_ctor_set(x_111, 1, x_4); x_112 = l_Lean_Parser_Tactic_changeWith___closed__3; x_113 = l_Lean_mkAtomFrom(x_1, x_112); -x_114 = l_Lean_Syntax_mkAntiquotNode___closed__3; +x_114 = l_Lean_Elab_Term_mkExplicitBinder___closed__3; x_115 = lean_array_push(x_114, x_109); x_116 = lean_array_push(x_115, x_111); x_117 = l_Lean_mkOptionalNode___closed__1; @@ -20238,7 +20461,7 @@ x_14 = lean_unsigned_to_nat(2u); x_15 = l_Lean_Syntax_getArg(x_1, x_14); x_16 = l_Lean_Parser_Tactic_tacticHave_____x3a_x3d_____closed__5; x_17 = l_Lean_mkAtomFrom(x_1, x_16); -x_18 = l_Lean_Syntax_mkAntiquotNode___closed__3; +x_18 = l_Lean_Elab_Term_mkExplicitBinder___closed__3; x_19 = lean_array_push(x_18, x_11); x_20 = lean_array_push(x_19, x_13); x_21 = lean_array_push(x_20, x_15); @@ -20267,7 +20490,7 @@ x_32 = lean_unsigned_to_nat(2u); x_33 = l_Lean_Syntax_getArg(x_1, x_32); x_34 = l_Lean_Parser_Tactic_tacticHave_____x3a_x3d_____closed__5; x_35 = l_Lean_mkAtomFrom(x_1, x_34); -x_36 = l_Lean_Syntax_mkAntiquotNode___closed__3; +x_36 = l_Lean_Elab_Term_mkExplicitBinder___closed__3; x_37 = lean_array_push(x_36, x_29); x_38 = lean_array_push(x_37, x_31); x_39 = lean_array_push(x_38, x_33); @@ -21175,7 +21398,7 @@ x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; } } -lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_4857_(lean_object* x_1) { +lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_4861_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; @@ -21201,20 +21424,20 @@ l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandOptIdent___closed__1 = _in lean_mark_persistent(l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandOptIdent___closed__1); l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandOptIdent___closed__2 = _init_l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandOptIdent___closed__2(); lean_mark_persistent(l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandOptIdent___closed__2); -l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___closed__1 = _init_l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___closed__1(); -lean_mark_persistent(l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___closed__1); -l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___closed__2 = _init_l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___closed__2(); -lean_mark_persistent(l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___closed__2); -l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___closed__3 = _init_l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___closed__3(); -lean_mark_persistent(l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___closed__3); -l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___closed__4 = _init_l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___closed__4(); -lean_mark_persistent(l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___closed__4); -l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___closed__5 = _init_l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___closed__5(); -lean_mark_persistent(l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___closed__5); -l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___closed__6 = _init_l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___closed__6(); -lean_mark_persistent(l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___closed__6); -l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___closed__7 = _init_l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___closed__7(); -lean_mark_persistent(l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___closed__7); +l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___lambda__1___closed__1 = _init_l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___lambda__1___closed__1(); +lean_mark_persistent(l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___lambda__1___closed__1); +l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___lambda__1___closed__2 = _init_l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___lambda__1___closed__2(); +lean_mark_persistent(l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___lambda__1___closed__2); +l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___lambda__1___closed__3 = _init_l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___lambda__1___closed__3(); +lean_mark_persistent(l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___lambda__1___closed__3); +l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___lambda__1___closed__4 = _init_l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___lambda__1___closed__4(); +lean_mark_persistent(l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___lambda__1___closed__4); +l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___lambda__1___closed__5 = _init_l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___lambda__1___closed__5(); +lean_mark_persistent(l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___lambda__1___closed__5); +l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___lambda__1___closed__6 = _init_l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___lambda__1___closed__6(); +lean_mark_persistent(l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___lambda__1___closed__6); +l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___lambda__1___closed__7 = _init_l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___lambda__1___closed__7(); +lean_mark_persistent(l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__1___lambda__1___closed__7); l_Lean_Elab_Term_quoteAutoTactic___closed__1 = _init_l_Lean_Elab_Term_quoteAutoTactic___closed__1(); lean_mark_persistent(l_Lean_Elab_Term_quoteAutoTactic___closed__1); l_Lean_Elab_Term_quoteAutoTactic___closed__2 = _init_l_Lean_Elab_Term_quoteAutoTactic___closed__2(); @@ -21476,7 +21699,7 @@ lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_elabLetStarDecl___closed__1); res = l___regBuiltin_Lean_Elab_Term_elabLetStarDecl(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_4857_(lean_io_mk_world()); +res = l_Lean_Elab_Term_initFn____x40_Lean_Elab_Binders___hyg_4861_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); return lean_io_result_mk_ok(lean_box(0)); diff --git a/stage0/stdlib/Lean/Elab/BuiltinNotation.c b/stage0/stdlib/Lean/Elab/BuiltinNotation.c index 069873ecbf..db20e62326 100644 --- a/stage0/stdlib/Lean/Elab/BuiltinNotation.c +++ b/stage0/stdlib/Lean/Elab/BuiltinNotation.c @@ -102,7 +102,6 @@ lean_object* l_Lean_Elab_Term_elabNativeDecide___rarg___closed__1; extern lean_object* l_myMacro____x40_Init_Data_ToString_Macro___hyg_23____closed__7; lean_object* l_Lean_Elab_Term_elabNativeRefl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_instReprBool___closed__1; -extern lean_object* l_Lean_Syntax_mkAntiquotNode___closed__16; lean_object* l_Lean_mkIdentFrom(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabParserMacro___lambda__1___closed__4; lean_object* l___regBuiltin_Lean_Elab_Term_expandAssert___closed__2; @@ -363,6 +362,7 @@ lean_object* l___regBuiltin_Lean_Elab_Term_expandEmptyC(lean_object*); extern lean_object* l_myMacro____x40_Init_Notation___hyg_11918____closed__22; lean_object* l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_expandCDot(lean_object*, lean_object*, lean_object*, lean_object*); size_t lean_usize_of_nat(lean_object*); +extern lean_object* l_Lean_Syntax_mkAntiquotNode___closed__9; lean_object* l_Lean_Core_mkFreshUserName___at_Lean_Elab_Term_elabSubst___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabDecide___boxed(lean_object*); extern lean_object* l_term___x2b_x2b_____closed__2; @@ -420,7 +420,6 @@ lean_object* l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserM lean_object* l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserMacroAux___closed__28; lean_object* l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserMacroAux___closed__14; lean_object* l_Lean_Elab_Term_expandSorry___boxed(lean_object*); -lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Syntax_getSepArgs___spec__1(lean_object*, size_t, size_t, lean_object*); lean_object* l_Lean_Elab_getRefPos___at_Lean_Elab_Term_elabPanic___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_le(lean_object*, lean_object*); lean_object* l_Lean_mkApp(lean_object*, lean_object*); @@ -627,6 +626,7 @@ lean_object* l___regBuiltin_Lean_Elab_Term_expandUnreachable___closed__2; lean_object* l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserMacroAux___closed__34; lean_object* l_Lean_Syntax_reprint(lean_object*); lean_object* l_Lean_Elab_Term_expandCDot_x3f_match__1___rarg(lean_object*, lean_object*); +lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Syntax_SepArray_getElems___spec__1(lean_object*, size_t, size_t, lean_object*); lean_object* l_Lean_Meta_mkAppOptM___at___private_Lean_Elab_Term_0__Lean_Elab_Term_tryPureCoe_x3f___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabAnonymousCtor_match__1(lean_object*); lean_object* l_Lean_Elab_Term_elabPanic___closed__4; @@ -1041,7 +1041,7 @@ x_91 = 0; x_92 = lean_usize_of_nat(x_79); lean_dec(x_79); x_93 = l_Array_getEvenElems___rarg___closed__1; -x_94 = l_Array_foldlMUnsafe_fold___at_Lean_Syntax_getSepArgs___spec__1(x_15, x_91, x_92, x_93); +x_94 = l_Array_foldlMUnsafe_fold___at_Lean_Syntax_SepArray_getElems___spec__1(x_15, x_91, x_92, x_93); lean_dec(x_15); x_95 = lean_ctor_get(x_94, 1); lean_inc(x_95); @@ -10749,7 +10749,7 @@ x_116 = 0; x_117 = lean_usize_of_nat(x_111); lean_dec(x_111); x_118 = l_Array_getEvenElems___rarg___closed__1; -x_119 = l_Array_foldlMUnsafe_fold___at_Lean_Syntax_getSepArgs___spec__1(x_71, x_116, x_117, x_118); +x_119 = l_Array_foldlMUnsafe_fold___at_Lean_Syntax_SepArray_getElems___spec__1(x_71, x_116, x_117, x_118); lean_dec(x_71); x_120 = lean_ctor_get(x_119, 1); lean_inc(x_120); @@ -14564,7 +14564,7 @@ lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean x_35 = lean_ctor_get(x_34, 1); lean_inc(x_35); lean_dec(x_34); -x_36 = l_Lean_Syntax_mkAntiquotNode___closed__16; +x_36 = l_Lean_Syntax_mkAntiquotNode___closed__9; x_37 = lean_array_push(x_36, x_25); x_38 = lean_array_push(x_37, x_1); x_39 = lean_array_push(x_38, x_19); diff --git a/stage0/stdlib/Lean/Elab/Command.c b/stage0/stdlib/Lean/Elab/Command.c index b94844d7fc..4015aec9f9 100644 --- a/stage0/stdlib/Lean/Elab/Command.c +++ b/stage0/stdlib/Lean/Elab/Command.c @@ -156,7 +156,6 @@ lean_object* l_Lean_Elab_Command_instMonadQuotationCommandElabM___closed__1; lean_object* l_Lean_Elab_Command_instMonadRefCommandElabM; lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_Command___hyg_1147____closed__1; lean_object* l___private_Lean_Elab_Command_0__Lean_Elab_Command_addScopes___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_Syntax_mkAntiquotNode___closed__16; lean_object* l_Lean_Elab_throwAlreadyDeclaredUniverseLevel___at_Lean_Elab_Command_addUnivLevel___spec__2(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabInitQuot___rarg___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_ensureNoUnassignedMVars(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -511,6 +510,7 @@ lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at_Lean_Elab_Command_expandDe lean_object* l___regBuiltin_Lean_Elab_Command_elabEval___closed__1; extern lean_object* l_Lean_KernelException_toMessageData___closed__3; size_t lean_usize_of_nat(lean_object*); +extern lean_object* l_Lean_Syntax_mkAntiquotNode___closed__9; lean_object* l_Lean_Elab_Command_withMacroExpansion(lean_object*); lean_object* l_Lean_Elab_Command_withLogging_match__1(lean_object*); lean_object* l_Lean_Elab_Command_modifyScope_match__1___rarg(lean_object*, lean_object*, lean_object*); @@ -583,7 +583,6 @@ lean_object* l_Lean_Elab_addMacroStack___at_Lean_Elab_Command_instAddErrorMessag lean_object* l___regBuiltin_Lean_Elab_Command_elabReduce(lean_object*); lean_object* l_Lean_Elab_Command_mkCommandElabAttributeUnsafe___closed__1; lean_object* l_Lean_Elab_Command_getScope(lean_object*); -lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Syntax_getSepArgs___spec__1(lean_object*, size_t, size_t, lean_object*); lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Command_0__Lean_Elab_Command_addScope___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabExport___boxed(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_le(lean_object*, lean_object*); @@ -825,6 +824,7 @@ lean_object* l_Lean_Elab_mkDeclName___at_Lean_Elab_Command_expandDeclId___spec__ lean_object* l_Lean_Elab_Command_instMonadLogCommandElabM___closed__7; lean_object* l_Std_PersistentArray_foldlM___at___private_Lean_Elab_Command_0__Lean_Elab_Command_addTraceAsMessages___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_instReprChar___closed__1; +lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Syntax_SepArray_getElems___spec__1(lean_object*, size_t, size_t, lean_object*); lean_object* l_Lean_Elab_Command_elabInitQuot___boxed(lean_object*); lean_object* l_Lean_Elab_logAt___at_Lean_Elab_Command_runLinters___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabEvalUnsafe___lambda__5___closed__3; @@ -20307,7 +20307,7 @@ _start: lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; x_12 = l_Lean_Elab_Command_elabEvalUnsafe___lambda__4___closed__1; x_13 = lean_name_mk_string(x_1, x_12); -x_14 = l_Lean_Syntax_mkAntiquotNode___closed__16; +x_14 = l_Lean_Syntax_mkAntiquotNode___closed__9; lean_inc(x_2); x_15 = lean_array_push(x_14, x_2); lean_inc(x_4); @@ -24047,7 +24047,7 @@ x_38 = 0; x_39 = lean_usize_of_nat(x_15); lean_dec(x_15); x_40 = l_Array_getEvenElems___rarg___closed__1; -x_41 = l_Array_foldlMUnsafe_fold___at_Lean_Syntax_getSepArgs___spec__1(x_14, x_38, x_39, x_40); +x_41 = l_Array_foldlMUnsafe_fold___at_Lean_Syntax_SepArray_getElems___spec__1(x_14, x_38, x_39, x_40); lean_dec(x_14); x_42 = lean_ctor_get(x_41, 1); lean_inc(x_42); diff --git a/stage0/stdlib/Lean/Elab/DeclModifiers.c b/stage0/stdlib/Lean/Elab/DeclModifiers.c index 30592a4abc..f5e0553416 100644 --- a/stage0/stdlib/Lean/Elab/DeclModifiers.c +++ b/stage0/stdlib/Lean/Elab/DeclModifiers.c @@ -135,7 +135,6 @@ lean_object* l_Lean_Elab_Modifiers_isProtected___boxed(lean_object*); lean_object* l_Lean_Elab_mkDeclName___rarg___lambda__1___closed__2; lean_object* l_Lean_Elab_expandDeclId_match__2___rarg(lean_object*, lean_object*); lean_object* l_Lean_Elab_checkNotAlreadyDeclared___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Syntax_getSepArgs___spec__1(lean_object*, size_t, size_t, lean_object*); uint8_t lean_nat_dec_le(lean_object*, lean_object*); lean_object* l_Lean_Elab_expandDeclIdCore___boxed(lean_object*); extern lean_object* l_Lean_Elab_instToFormatAttribute___closed__4; @@ -206,6 +205,7 @@ lean_object* l_Lean_Elab_checkNotAlreadyDeclared___rarg___lambda__2___boxed(lean lean_object* l_Lean_Elab_checkNotAlreadyDeclared___rarg___lambda__2___closed__2; lean_object* l_Lean_Syntax_formatStxAux(lean_object*, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Elab_instToStringVisibility___closed__2; +lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Syntax_SepArray_getElems___spec__1(lean_object*, size_t, size_t, lean_object*); lean_object* l_Lean_Elab_applyVisibility___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*); extern lean_object* l_addParenHeuristic___closed__1; lean_object* l_Lean_Elab_expandDeclId___rarg___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -3377,7 +3377,7 @@ x_42 = 0; x_43 = lean_usize_of_nat(x_18); lean_dec(x_18); x_44 = l_Array_getEvenElems___rarg___closed__1; -x_45 = l_Array_foldlMUnsafe_fold___at_Lean_Syntax_getSepArgs___spec__1(x_17, x_42, x_43, x_44); +x_45 = l_Array_foldlMUnsafe_fold___at_Lean_Syntax_SepArray_getElems___spec__1(x_17, x_42, x_43, x_44); lean_dec(x_17); x_46 = lean_ctor_get(x_45, 1); lean_inc(x_46); diff --git a/stage0/stdlib/Lean/Elab/Declaration.c b/stage0/stdlib/Lean/Elab/Declaration.c index 56538d37a0..a8e4955ac2 100644 --- a/stage0/stdlib/Lean/Elab/Declaration.c +++ b/stage0/stdlib/Lean/Elab/Declaration.c @@ -271,7 +271,6 @@ lean_object* l_Lean_Elab_Command_expandMutualNamespace_match__1___rarg(lean_obje lean_object* l_Lean_Elab_Command_expandInitCmd___closed__3; extern lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__5; lean_object* l_Lean_Elab_Command_getRef(lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__2; lean_object* l___private_Lean_Elab_Declaration_0__Lean_Elab_Command_splitMutualPreamble_loop(lean_object*, lean_object*); lean_object* l_Lean_Elab_expandDeclSig(lean_object*); lean_object* l_Lean_Elab_Term_elabType(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -287,6 +286,7 @@ extern lean_object* l_myMacro____x40_Init_System_IO___hyg_2501____closed__11; extern lean_object* l_Lean_Parser_Command_universes___elambda__1___closed__2; lean_object* l_Lean_Elab_Modifiers_addAttribute(lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_checkValidCtorModifier___at___private_Lean_Elab_Declaration_0__Lean_Elab_Command_inductiveSyntaxToView___spec__1___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__2; lean_object* l_Lean_Elab_Command_checkValidCtorModifier___at___private_Lean_Elab_Declaration_0__Lean_Elab_Command_inductiveSyntaxToView___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Macro_expandMacro_x3fImp(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_expandInitCmd___closed__6; @@ -321,7 +321,6 @@ lean_object* l_Lean_Elab_Command_checkValidCtorModifier___at___private_Lean_Elab lean_object* l_unsafeCast(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabDeclaration___closed__5; lean_object* l_Lean_Elab_Command_elabInductive(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__4; extern lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__27; extern lean_object* l_Lean_Parser_Command_builtin__initialize___elambda__1___closed__2; uint8_t l_Array_anyMUnsafe_any___at___private_Lean_Elab_Declaration_0__Lean_Elab_Command_isMutualDef___spec__1(lean_object*, size_t, size_t); @@ -334,6 +333,7 @@ lean_object* l_Lean_Elab_Command_elabDeclaration___closed__3; lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Command_expandMutualNamespace___spec__1(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_expandMutualElement_match__2___rarg(lean_object*, lean_object*); uint8_t l___private_Lean_Elab_Declaration_0__Lean_Elab_Command_isMutualInductive(lean_object*); +extern lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__4; lean_object* l_Lean_Elab_Command_expandMutualNamespace_match__3___rarg(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Elab_Command_expandInCmd___closed__2; lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Command_elabAttr___spec__1___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -7125,9 +7125,9 @@ 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_31, x_53); -x_55 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__4; +x_55 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__4; x_56 = lean_array_push(x_55, x_8); -x_57 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__2; +x_57 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__2; x_58 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_58, 0, x_57); lean_ctor_set(x_58, 1, x_56); @@ -7328,9 +7328,9 @@ 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_152, x_177); -x_179 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__4; +x_179 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__4; x_180 = lean_array_push(x_179, x_8); -x_181 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__2; +x_181 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__2; x_182 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_182, 0, x_181); lean_ctor_set(x_182, 1, x_180); diff --git a/stage0/stdlib/Lean/Elab/Do.c b/stage0/stdlib/Lean/Elab/Do.c index 6f642ecde9..093fb0e4f5 100644 --- a/stage0/stdlib/Lean/Elab/Do.c +++ b/stage0/stdlib/Lean/Elab/Do.c @@ -58,7 +58,6 @@ lean_object* l_Lean_Elab_Term_Do_ToCodeBlock_doTryToCode___lambda__4___closed__5 lean_object* l_Lean_throwErrorAt___at_Lean_Elab_Term_Do_concat___spec__1(lean_object*); lean_object* l___private_Lean_Elab_Do_0__Lean_Elab_Term_extractBind___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Do_ToTerm_continueToTermCore___closed__21; -extern lean_object* l_Lean_Syntax_mkAntiquotNode___closed__3; lean_object* l_Lean_stringToMessageData(lean_object*); extern lean_object* l_instReprOption___rarg___closed__1; lean_object* l_Lean_Elab_Term_Do_ToTerm_declToTermCore___closed__2; @@ -135,6 +134,7 @@ lean_object* l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__1; lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_mkUnit___closed__5; lean_object* l_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_Meta_caseValueAux___lambda__3___closed__4; lean_object* l_Lean_Elab_Term_Do_ToCodeBlock_doTryToCode___lambda__5___closed__2; uint8_t l_Array_anyMUnsafe_any___at___private_Lean_Elab_Do_0__Lean_Elab_Term_hasLiftMethod___spec__1(lean_object*, size_t, size_t); extern lean_object* l_myMacro____x40_Init_Notation___hyg_9474____closed__7; @@ -202,7 +202,6 @@ lean_object* l_Lean_Elab_Term_Do_ToTerm_matchNestedTermResult___closed__31; lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Term_Do_ToTerm_toTerm___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_name_eq(lean_object*, lean_object*); extern lean_object* l_myMacro____x40_Init_Notation___hyg_11154____closed__6; -extern lean_object* l_Lean_Syntax_mkAntiquotNode___closed__16; lean_object* l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__9; lean_object* l_Lean_Elab_Term_Do_ToTerm_returnToTermCore___closed__4; lean_object* l_Lean_mkIdentFrom(lean_object*, lean_object*); @@ -687,6 +686,7 @@ lean_object* l_Array_anyMUnsafe_any___rarg(lean_object*, lean_object*, lean_obje extern lean_object* l_Lean_KernelException_toMessageData___closed__3; size_t lean_usize_of_nat(lean_object*); lean_object* l_Lean_Elab_Term_Do_concat___closed__3; +extern lean_object* l_Lean_Syntax_mkAntiquotNode___closed__9; lean_object* l_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode___closed__6; uint8_t l_Lean_Syntax_isAntiquot(lean_object*); lean_object* l_Lean_Elab_Term_Do_ToCodeBlock_concatWith(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -27551,7 +27551,7 @@ lean_ctor_set(x_19, 0, x_12); lean_ctor_set(x_19, 1, x_18); x_20 = l_myMacro____x40_Init_Notation___hyg_49____closed__15; x_21 = l_Lean_mkAtomFrom(x_1, x_20); -x_22 = l_Lean_Syntax_mkAntiquotNode___closed__3; +x_22 = l_Lean_Meta_caseValueAux___lambda__3___closed__4; x_23 = lean_array_push(x_22, x_15); x_24 = lean_array_push(x_23, x_19); x_25 = lean_array_push(x_24, x_13); @@ -28432,7 +28432,7 @@ lean_dec(x_10); x_20 = l_myMacro____x40_Init_Notation___hyg_10790____closed__16; x_21 = l_Lean_mkAtomFrom(x_11, x_20); lean_dec(x_11); -x_22 = l_Lean_Syntax_mkAntiquotNode___closed__16; +x_22 = l_Lean_Syntax_mkAntiquotNode___closed__9; x_23 = lean_array_push(x_22, x_19); x_24 = lean_array_push(x_23, x_21); x_25 = lean_array_push(x_24, x_17); @@ -28910,7 +28910,7 @@ x_112 = l_Lean_mkAtomFrom(x_83, x_111); x_113 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; x_114 = l_Lean_mkAtomFrom(x_83, x_113); lean_dec(x_83); -x_115 = l_Lean_Syntax_mkAntiquotNode___closed__3; +x_115 = l_Lean_Meta_caseValueAux___lambda__3___closed__4; x_116 = lean_array_push(x_115, x_112); x_117 = lean_array_push(x_116, x_84); x_118 = lean_array_push(x_117, x_85); @@ -28960,7 +28960,7 @@ x_143 = l_Lean_mkAtomFrom(x_83, x_142); x_144 = l_Lean_Elab_Term_expandFunBinders_loop___closed__5; x_145 = l_Lean_mkAtomFrom(x_83, x_144); lean_dec(x_83); -x_146 = l_Lean_Syntax_mkAntiquotNode___closed__3; +x_146 = l_Lean_Meta_caseValueAux___lambda__3___closed__4; x_147 = lean_array_push(x_146, x_143); x_148 = lean_array_push(x_147, x_84); x_149 = lean_array_push(x_148, x_85); diff --git a/stage0/stdlib/Lean/Elab/MutualDef.c b/stage0/stdlib/Lean/Elab/MutualDef.c index dfce9e59b4..52e11e8b86 100644 --- a/stage0/stdlib/Lean/Elab/MutualDef.c +++ b/stage0/stdlib/Lean/Elab/MutualDef.c @@ -115,7 +115,6 @@ lean_object* l_Lean_Elab_elabAttrs___at_Lean_Elab_Command_elabMutualDef___spec__ lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_check___lambda__7___closed__2; lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_check___lambda__2___closed__1; extern lean_object* l___private_Lean_Compiler_ExternAttr_0__Lean_syntaxToExternEntries___closed__1; -extern lean_object* l_Lean_Syntax_mkAntiquotNode___closed__16; lean_object* l_List_forIn_loop___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_MutualClosure_mkInitialUsedFVarsMap___spec__4(lean_object*, lean_object*, size_t, lean_object*, lean_object*); lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__4___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_check___lambda__3___closed__3; @@ -385,6 +384,7 @@ lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_checkModifiers___ extern lean_object* l_Lean_KernelException_toMessageData___closed__3; lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_MutualClosure_mkClosureForAux___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); size_t lean_usize_of_nat(lean_object*); +extern lean_object* l_Lean_Syntax_mkAntiquotNode___closed__9; lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_MutualClosure_mkInitialUsedFVarsMap_match__1(lean_object*); lean_object* l_Lean_replaceFVarIdAtLocalDecl(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_MutualClosure_main___boxed__const__1; @@ -464,7 +464,6 @@ lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_checkLetRecsToLif lean_object* l_Lean_Elab_throwAlreadyDeclaredUniverseLevel___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_removeUnusedVars___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Std_RBNode_foldM___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_MutualClosure_FixPoint_updateUsedVarsOf___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Syntax_getSepArgs___spec__1(lean_object*, size_t, size_t, lean_object*); lean_object* l_Array_anyMUnsafe_any___at_Lean_Elab_Term_MutualClosure_getModifiersForLetRecs___spec__2___boxed(lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_le(lean_object*, lean_object*); lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_withFunLocalDecls_loop___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -636,6 +635,7 @@ lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_MutualClosure_mkC extern lean_object* l_Lean_Elab_checkNotAlreadyDeclared___rarg___lambda__2___closed__2; lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabFunType_match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_registerFailedToInferDefTypeInfo___closed__2; +lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Syntax_SepArray_getElems___spec__1(lean_object*, size_t, size_t, lean_object*); lean_object* l___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_MutualClosure_FixPoint_getUsedFVarsMap___boxed(lean_object*); extern lean_object* l_addParenHeuristic___closed__1; lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_MutualDef_0__Lean_Elab_Term_elabHeaders___spec__6(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -3858,7 +3858,7 @@ x_42 = 0; x_43 = lean_usize_of_nat(x_19); lean_dec(x_19); x_44 = l_Array_getEvenElems___rarg___closed__1; -x_45 = l_Array_foldlMUnsafe_fold___at_Lean_Syntax_getSepArgs___spec__1(x_18, x_42, x_43, x_44); +x_45 = l_Array_foldlMUnsafe_fold___at_Lean_Syntax_SepArray_getElems___spec__1(x_18, x_42, x_43, x_44); lean_dec(x_18); x_46 = lean_ctor_get(x_45, 1); lean_inc(x_46); @@ -4926,7 +4926,7 @@ lean_ctor_set(x_11, 1, x_9); x_12 = l_myMacro____x40_Init_Notation___hyg_12545____closed__13; x_13 = l_Lean_mkAtomFrom(x_1, x_12); lean_dec(x_1); -x_14 = l_Lean_Syntax_mkAntiquotNode___closed__16; +x_14 = l_Lean_Syntax_mkAntiquotNode___closed__9; x_15 = lean_array_push(x_14, x_11); x_16 = lean_array_push(x_15, x_13); x_17 = lean_array_push(x_16, x_2); diff --git a/stage0/stdlib/Lean/Elab/Quotation.c b/stage0/stdlib/Lean/Elab/Quotation.c index 7a5352dbfb..0bcfcf215c 100644 --- a/stage0/stdlib/Lean/Elab/Quotation.c +++ b/stage0/stdlib/Lean/Elab/Quotation.c @@ -16,22 +16,26 @@ extern "C" { lean_object* l_List_reverse___rarg(lean_object*); uint8_t l_Lean_Syntax_isQuot(lean_object*); lean_object* l_List_head_x21___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__2(lean_object*); +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__15; lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__8(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Syntax_getQuotContent___closed__1; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__5; extern lean_object* l_myMacro____x40_Init_Notation___hyg_10790____closed__11; +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__18; extern lean_object* l_Lean_Name_toString___closed__1; lean_object* l_List_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__1(lean_object*); lean_object* l_Array_sequenceMap___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__1___boxed(lean_object*, lean_object*); extern lean_object* l_myMacro____x40_Init_Notation___hyg_49____closed__16; lean_object* l_Lean_Syntax_unescapeAntiquot(lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_explodeHeadPat___closed__1; +uint8_t l_Lean_Syntax_isAntiquotSuffixSplice(lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__5; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__4; lean_object* l_Lean_Elab_Term_Quotation_match__syntax_expand_match__2(lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__34; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__51; size_t l_USize_add(size_t, size_t); +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepFromSplice___closed__3; extern lean_object* l_Lean_fieldIdxKind; extern lean_object* l_Array_term_____x5b___x3a___x5d___closed__2; lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__21; @@ -77,6 +81,7 @@ extern lean_object* l_myMacro____x40_Init_Notation___hyg_5449____closed__3; lean_object* l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__15(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__44; lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__4(size_t, size_t, lean_object*); +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__44; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__8; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_explodeHeadPat_match__2(lean_object*); lean_object* l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__9___boxed(lean_object**); @@ -87,6 +92,7 @@ extern lean_object* l_Lean_List_format___rarg___closed__2; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__31; extern lean_object* l_Lean_Elab_throwUnsupportedSyntax___rarg___closed__1; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__59; +lean_object* l_Lean_Syntax_antiquotSuffixSplice_x3f(lean_object*); lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__3___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__37; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax_match__5___rarg(lean_object*, lean_object*); @@ -102,6 +108,7 @@ lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSy extern lean_object* l_myMacro____x40_Init_Notation___hyg_12545____closed__15; extern lean_object* l_myMacro____x40_Init_Notation___hyg_11918____closed__12; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__20; +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__16; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__7; extern lean_object* l_myMacro____x40_Init_Notation___hyg_12545____closed__5; extern lean_object* l_Lean_List_format___rarg___closed__1; @@ -115,14 +122,15 @@ lean_object* l_Lean_Elab_Term_Quotation_BasicHeadInfo_argPats___default; lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__1; lean_object* l_Lean_Elab_Term_Quotation_match__syntax_expand_match__4(lean_object*); lean_object* l_Lean_Elab_Term_Quotation_elabTacticQuot(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__40; extern lean_object* l_Array_empty___closed__1; lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabTacticQuot___closed__1; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_explodeHeadPat_match__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_261____closed__19; -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__12; lean_object* l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5(lean_object*); uint8_t l_Lean_checkTraceOption(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Quotation_BasicHeadInfo_kind___default; +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__45; lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabDoElemQuot___closed__3; lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__9; extern lean_object* l___private_Init_Meta_0__Lean_quoteOption___rarg___closed__5; @@ -155,12 +163,13 @@ lean_object* lean_array_push(lean_object*, lean_object*); lean_object* lean_array_get_size(lean_object*); lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__27; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch_match__2(lean_object*); +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__39; +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__35; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__19; extern lean_object* l_Array_getEvenElems___rarg___closed__1; lean_object* l_List_range(lean_object*); lean_object* l_Lean_MessageData_ofList(lean_object*); lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_List_zipWith___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__1___closed__1; lean_object* l_Lean_Elab_throwUnsupportedSyntax___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabTermAux___spec__2___rarg(lean_object*); @@ -173,16 +182,17 @@ extern lean_object* l_myMacro____x40_Init_Notation___hyg_12545____closed__6; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__7; lean_object* l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__4; lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabfunBinderQuot___closed__2; +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__31; lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__3(size_t, size_t, lean_object*); lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__1; lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__1; lean_object* l_List_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__21(lean_object*); +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepFromSplice_match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__1___closed__2; lean_object* l___private_Lean_Util_Trace_0__Lean_checkTraceOptionM___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_string_utf8_byte_size(lean_object*); lean_object* l_Lean_Elab_Term_Quotation_elabStxQuot(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkAtom(lean_object*); -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__13; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss_match__1(lean_object*); lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__26; lean_object* l_Lean_Elab_Term_Quotation_getPatternsVars(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -195,6 +205,8 @@ lean_object* l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(lean_object*, lean_obj lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__1___closed__4; lean_object* l_Lean_Elab_Term_getMainModule___rarg(lean_object*, lean_object*); uint8_t l_USize_decLt(size_t, size_t); +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__36; +extern lean_object* l_Lean_instToMessageDataOption___rarg___closed__4; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__3; lean_object* l_Lean_Elab_Term_Quotation_match__syntax_expand(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__36; @@ -209,6 +221,7 @@ extern lean_object* l_myMacro____x40_Init_Notation___hyg_49____closed__15; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch_match__7___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Quotation_mkTuple___closed__3; lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabTacticQuot___closed__2; +extern lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_isExplicit___closed__1; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__47; uint8_t l_Array_anyMUnsafe_any___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__9(lean_object*, size_t, size_t); lean_object* l_Array_anyMUnsafe_any___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__9___boxed(lean_object*, lean_object*, lean_object*); @@ -226,7 +239,7 @@ lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lea extern lean_object* l_myMacro____x40_Init_Notation___hyg_5703____closed__3; lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabLevelQuot___closed__1; lean_object* l_Lean_Elab_Term_Quotation_mkTuple___closed__5; -lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__10; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__46; lean_object* l_Lean_Elab_Term_Quotation_match__syntax_expand___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*); @@ -255,7 +268,7 @@ lean_object* l_Lean_Elab_Term_Quotation_instInhabitedHeadInfo; lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabStxQuot___closed__3; lean_object* lean_array_fget(lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__29; -lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__14; uint8_t lean_nat_dec_eq(lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabfunBinderQuot(lean_object*); @@ -299,9 +312,11 @@ extern lean_object* l_myMacro____x40_Init_Notation___hyg_12545____closed__8; extern lean_object* l_Lean_Parser_Tactic_matchAlt___closed__1; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___closed__7; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__57; +extern lean_object* l_Lean_Meta_mkArrow___closed__2; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__12; lean_object* lean_array_get(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Unhygienic_run___rarg(lean_object*); +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__11; lean_object* l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16___closed__2; lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__6; lean_object* l_Lean_Elab_Term_Quotation_mkTuple___closed__9; @@ -314,16 +329,20 @@ lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lea lean_object* l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__10(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__21; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch_match__3___rarg(lean_object*, lean_object*, lean_object*); +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__32; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__26; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax_match__3(lean_object*); lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__7; +lean_object* l_instInhabited___rarg(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Quotation_match__syntax_expand_match__1(lean_object*); +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__43; lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabTacticQuotSeq___closed__1; lean_object* l_Lean_Elab_Term_Quotation_match__syntax_expand___lambda__3(lean_object*, lean_object*, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__48; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___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*); extern lean_object* l_Lean_Parser_sepByElemParser___closed__1; extern lean_object* l_myMacro____x40_Init_Notation___hyg_12545____closed__1; +extern lean_object* l_Lean_MessageData_instCoeOptionExprMessageData___closed__1; lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__12; lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__20; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__41; @@ -345,11 +364,11 @@ lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__14; lean_object* l_Lean_Elab_Term_Quotation_mkTuple___closed__1; lean_object* l_Lean_throwErrorAt___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabTermAux___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__3___lambda__1___closed__1; +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__13; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__1; lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__16; lean_object* l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16___closed__6; lean_object* l_Lean_Elab_Term_getCurrMacroScope(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__11; extern lean_object* l_myMacro____x40_Init_Notation___hyg_11154____closed__3; lean_object* lean_array_to_list(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Quotation_mkTuple___closed__4; @@ -367,7 +386,7 @@ lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compile lean_object* l_ReaderT_bind___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__1___closed__2; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__11; -lean_object* l_Lean_Elab_Term_Quotation_initFn____x40_Lean_Elab_Quotation___hyg_8686_(lean_object*); +lean_object* l_Lean_Elab_Term_Quotation_initFn____x40_Lean_Elab_Quotation___hyg_9845_(lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__3; lean_object* l___private_Init_Util_0__mkPanicMessageWithDecl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -379,10 +398,11 @@ extern lean_object* l_Lean_instInhabitedSyntax; extern lean_object* l_myMacro____x40_Init_Notation___hyg_1625____closed__2; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__49; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch_match__4___rarg(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo_match__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___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*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_explodeHeadPat_match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch_match__4(lean_object*); -lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax_match__4___rarg(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax_match__4___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_List_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__7(lean_object*); extern lean_object* l_myMacro____x40_Init_Notation___hyg_49____closed__2; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -394,18 +414,20 @@ lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHead lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Elab_Term_getFVarLocalDecl_x21___closed__1; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_explodeHeadPat___lambda__1(lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_KernelException_toMessageData___closed__3; size_t lean_usize_of_nat(lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__1; extern lean_object* l_Lean_nullKind___closed__1; uint8_t l_Lean_Syntax_isAntiquot(lean_object*); lean_object* l_Lean_addTrace___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__56; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__40; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___closed__2; lean_object* l_Lean_addTrace___at___private_Lean_Elab_Term_0__Lean_Elab_Term_postponeElabTerm___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__36; lean_object* l_Lean_addMacroScope(lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_Meta_mkArrow___closed__1; lean_object* l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___closed__8; extern lean_object* l_Lean_instToExprUnit___lambda__1___closed__2; @@ -425,6 +447,7 @@ extern lean_object* l_Lean_nullKind___closed__2; lean_object* l_Lean_Elab_Term_Quotation_elabTermQuot(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_ReaderT_bind___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__2(lean_object*, lean_object*); lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__3___lambda__1___closed__2; +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__17; extern lean_object* l_Lean_Elab_Term_termElabAttribute; extern lean_object* l_Lean_Format_sbracket___closed__3; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__8; @@ -438,9 +461,11 @@ lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabDoElemQuot(lean_object* lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabfunBinderQuot___closed__4; lean_object* l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__3(lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__8; +extern lean_object* l_Lean_instToMessageDataOption___rarg___closed__3; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__45; extern lean_object* l_Lean_Parser_Tactic_match___closed__1; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__4; +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepFromSplice(lean_object*); lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__7; lean_object* l_Lean_Syntax_getQuotContent(lean_object*); lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__5(size_t, size_t, lean_object*); @@ -451,12 +476,12 @@ lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBind lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__24; extern lean_object* l_Lean_Parser_Tactic_match___closed__3; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__12; lean_object* l_List_redLength___rarg(lean_object*); lean_object* l_Std_PersistentArray_push___rarg(lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__44; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__15; lean_object* l_Lean_Elab_Term_Quotation_mkTuple___closed__6; -lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__5___closed__3; lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__3; lean_object* l___private_Lean_Util_Trace_0__Lean_checkTraceOptionM___at___private_Lean_Elab_Term_0__Lean_Elab_Term_postponeElabTerm___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__27; @@ -477,8 +502,9 @@ lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compile lean_object* l_Lean_List_format___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__19(lean_object*); lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__20; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__30; +extern lean_object* l_Id_instMonadId; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__53; -lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Syntax_getSepArgs___spec__1(lean_object*, size_t, size_t, lean_object*); +extern lean_object* l_Lean_Expr_setPPExplicit___closed__3; uint8_t lean_nat_dec_le(lean_object*, lean_object*); lean_object* l_List_head_x21___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__2___boxed(lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabfunBinderQuot___closed__1; @@ -486,12 +512,14 @@ lean_object* l_Lean_Elab_Term_Quotation_match__syntax_expand___lambda__3___close lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__4; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__42; lean_object* l_Lean_Elab_Term_Quotation_match__syntax_expand___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepFromSplice_match__1(lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_explodeHeadPat___closed__4; +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__37; extern lean_object* l_Lean_Format_sbracket___closed__4; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__30; lean_object* l_Lean_Syntax_getArgs(lean_object*); lean_object* l_Lean_Elab_Term_Quotation_match__syntax_expand___lambda__1(lean_object*, lean_object*); -lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Syntax_getAntiquotSpliceSuffix(lean_object*); lean_object* l_Lean_Syntax_getKind(lean_object*); lean_object* l_Lean_Elab_Term_Quotation_BasicHeadInfo_rhsFn___default(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__34; @@ -499,10 +527,10 @@ lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_explode lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__28; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__5; lean_object* l_List_filterAux___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__6___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__42; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__33; lean_object* lean_panic_fn(lean_object*, lean_object*); -uint8_t l_Lean_Syntax_isAntiquotSplicePat(lean_object*); lean_object* l_Lean_Elab_Term_Quotation_match__syntax_expand___closed__2; extern lean_object* l_Std_PersistentHashMap_mkCollisionNode___rarg___closed__1; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch_match__6(lean_object*); @@ -517,9 +545,11 @@ extern lean_object* l_Lean_Format_paren___closed__2; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo(lean_object*); lean_object* l_List_head_x21___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__1___boxed(lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___closed__1; +extern lean_object* l_myMacro____x40_Init_Notation___hyg_158____closed__1; lean_object* l_Lean_Elab_Term_Quotation_elabfunBinderQuot(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabTermQuot___closed__2; lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__3(lean_object*, size_t, size_t, lean_object*); +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__19; lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__25; lean_object* l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16___closed__7; extern lean_object* l_myMacro____x40_Init_NotationExtra___hyg_2962____closed__1; @@ -535,8 +565,10 @@ lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSy lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___closed__3; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__20; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss_match__2(lean_object*); +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__4___closed__1; lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__5; lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__28; +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__20; lean_object* l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__9(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_st_ref_set(lean_object*, lean_object*, lean_object*); lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__14; @@ -545,7 +577,6 @@ lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compile lean_object* l_Lean_resolveGlobalName___at_Lean_Elab_Term_resolveName___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_addMessageContextFull___at_Lean_Meta_instAddMessageContextMetaM___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__29; -lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__3___closed__2; lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabDoElemQuot___closed__4; lean_object* l_List_toArrayAux___rarg(lean_object*, lean_object*); lean_object* l_Array_sequenceMap_loop___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -563,12 +594,15 @@ lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSy lean_object* l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16___closed__5; lean_object* l_Lean_Elab_Term_Quotation_BasicHeadInfo_rhsFn___default___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__18; +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__10; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax_match__2___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Quotation_match__syntax_expand_match__2___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__15; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__2; lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabTacticQuot(lean_object*); +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__61; lean_object* l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__30; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__46; extern lean_object* l_myMacro____x40_Init_Notation___hyg_521____closed__23; lean_object* l_Lean_Elab_Term_Quotation_elabMatchSyntax(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -580,9 +614,10 @@ lean_object* l_Lean_Elab_Term_Quotation_elabDoElemQuot(lean_object*, lean_object lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabDoElemQuot___closed__1; extern lean_object* l_myMacro____x40_Init_Notation___hyg_10790____closed__17; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__58; -lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax_match__3___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax_match__3___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabDoElemQuot___closed__2; +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepFromSplice___closed__2; lean_object* l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__3; lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__3___lambda__1___closed__3; lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__6; @@ -609,17 +644,20 @@ lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabLevelQuot(lean_object*) extern lean_object* l_myMacro____x40_Init_Notation___hyg_9474____closed__9; extern lean_object* l_Lean_List_format___rarg___closed__3; lean_object* l_Lean_Syntax_getAntiquotScopeContents(lean_object*); +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepFromSplice___boxed(lean_object*); lean_object* l_Lean_Syntax_getArg(lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__6; +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__33; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__33; +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepFromSplice___closed__1; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch_match__7(lean_object*); extern lean_object* l_Lean_mkOptionalNode___closed__2; extern lean_object* l_Lean_Format_paren___closed__3; lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__11___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_myMacro____x40_Init_Notation___hyg_267____closed__1; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__22; +extern lean_object* l_myMacro____x40_Init_Notation___hyg_521____closed__1; extern lean_object* l_Lean_Meta_mkPure___rarg___closed__4; -lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__3___closed__1; lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__11___closed__1; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms_match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_List_filterAux___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__4___boxed(lean_object*, lean_object*, lean_object*); @@ -627,36 +665,41 @@ lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lea extern lean_object* l_myMacro____x40_Init_Notation___hyg_376____closed__7; lean_object* l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__5; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__35; +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__46; lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__11(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_expandExplicitBindersAux_loop___closed__4; -lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__4; lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__12___closed__1; lean_object* l_Lean_Elab_Term_Quotation_mkTuple___closed__7; lean_object* l_unsafeCast(lean_object*, lean_object*, lean_object*); lean_object* l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___boxed(lean_object**); lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabfunBinderQuot___closed__3; +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__14; lean_object* l_List_lengthAux___rarg(lean_object*, lean_object*); extern lean_object* l_myMacro____x40_Init_Notation___hyg_11918____closed__13; extern lean_object* l_myMacro____x40_Init_Notation___hyg_10790____closed__7; lean_object* l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__8___closed__1; -lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__16; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__29; lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__12; +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepFromSplice___closed__4; extern lean_object* l_myMacro____x40_Init_Notation___hyg_9474____closed__3; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__9; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__3___closed__2; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__2___closed__2; extern lean_object* l_myMacro____x40_Init_Notation___hyg_5449____closed__4; +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__41; lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__13; lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__2; lean_object* l_Array_sequenceMap___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__1(lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__4___closed__2; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax_match__2(lean_object*); lean_object* l___private_Lean_Util_Trace_0__Lean_checkTraceOptionM___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___closed__9; extern lean_object* l_Array_myMacro____x40_Init_Data_Array_Subarray___hyg_905____closed__3; -lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax_match__1___rarg(lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax_match__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__25; extern lean_object* l_List_zip___rarg___closed__1; lean_object* l_Lean_throwError___at_Lean_Elab_Term_throwErrorIfErrors___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -676,20 +719,22 @@ lean_object* l_List_filterAux___at___private_Lean_Elab_Quotation_0__Lean_Elab_Te lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__3___boxed(lean_object**); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax_match__6(lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabTermQuot(lean_object*); +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__34; extern lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_891____closed__1; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_antiquotKind_x3f(lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__47; lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__3; -lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Elab_Term_Quotation_HeadInfo_generalizes(lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__1; lean_object* l_Lean_Syntax_formatStxAux(lean_object*, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_setOptionFromString___closed__3; +lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Syntax_SepArray_getElems___spec__1(lean_object*, size_t, size_t, lean_object*); lean_object* l_Lean_Elab_Term_Quotation_match__syntax_expand___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__6; -lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__5___closed__1; lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__4; lean_object* l_Std_Range_forIn_loop___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__14___boxed(lean_object**); lean_object* l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__11; @@ -699,13 +744,14 @@ lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lea lean_object* l_Lean_fmt___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__18(lean_object*); lean_object* l_Array_anyMUnsafe_any___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__10___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__1___closed__1; +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__38; lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__21; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__4; lean_object* l_List_foldl___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__3___boxed(lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_Quotation_elabDynamicQuot___closed__1; -lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__5___closed__2; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch_match__5(lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__43; +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo_match__1(lean_object*); lean_object* l_Array_sequenceMap___at_myMacro____x40_Init_NotationExtra___hyg_2962____spec__1(lean_object*, lean_object*); extern lean_object* l_Lean_expandExplicitBindersAux_loop___closed__3; lean_object* l_Lean_Elab_Term_Quotation_HeadInfo_generalizes___boxed(lean_object*, lean_object*); @@ -717,6 +763,7 @@ extern lean_object* l_myMacro____x40_Init_Notation___hyg_7710____closed__3; uint8_t lean_nat_dec_lt(lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__3___closed__1; lean_object* l_Lean_Elab_Term_Quotation_match__syntax_expand___closed__1; +lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__48; extern lean_object* l_myMacro____x40_Init_Notation___hyg_11918____closed__17; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_letBindRhss___closed__8; lean_object* l_Lean_Elab_Term_Quotation_elabMatchSyntax___closed__1; @@ -724,7 +771,6 @@ uint8_t l_Lean_Syntax_isIdent(lean_object*); lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__5; lean_object* l_Lean_Elab_Term_Quotation_mkTuple___closed__10; lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Term_Quotation_match__syntax_expand___spec__8___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -uint8_t l_Lean_Syntax_isAntiquotSplice(lean_object*); lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___closed__4; lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms_match__1___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: @@ -1496,70 +1542,222 @@ lean_dec(x_5); return x_12; } } -lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax_match__1___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepFromSplice_match__1___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +if (lean_obj_tag(x_1) == 2) +{ +lean_object* x_4; lean_object* x_5; lean_object* x_6; +lean_dec(x_3); +x_4 = lean_ctor_get(x_1, 0); +lean_inc(x_4); +x_5 = lean_ctor_get(x_1, 1); +lean_inc(x_5); +lean_dec(x_1); +x_6 = lean_apply_2(x_2, x_4, x_5); +return x_6; +} +else +{ +lean_object* x_7; +lean_dec(x_2); +x_7 = lean_apply_1(x_3, x_1); +return x_7; +} +} +} +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepFromSplice_match__1(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepFromSplice_match__1___rarg), 3, 0); +return x_2; +} +} +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepFromSplice___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Id_instMonadId; +x_2 = l_Lean_instInhabitedSyntax; +x_3 = l_instInhabited___rarg(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepFromSplice___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("Lean.Elab.Quotation"); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepFromSplice___closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("_private.Lean.Elab.Quotation.0.Lean.Elab.Term.Quotation.getSepFromSplice"); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepFromSplice___closed__4() { +_start: +{ +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 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepFromSplice___closed__2; +x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepFromSplice___closed__3; +x_3 = lean_unsigned_to_nat(33u); +x_4 = lean_unsigned_to_nat(59u); +x_5 = l_Lean_Syntax_strLitToAtom___closed__3; +x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); +return x_6; +} +} +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepFromSplice(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = l_Lean_Syntax_getAntiquotSpliceSuffix(x_1); +if (lean_obj_tag(x_2) == 2) +{ +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_2, 1); +lean_inc(x_3); +lean_dec(x_2); +x_4 = lean_unsigned_to_nat(1u); +x_5 = l_String_dropRight(x_3, x_4); +x_6 = l_Lean_instInhabitedSourceInfo___closed__1; +x_7 = l_Lean_Syntax_mkStrLit(x_5, x_6); +lean_dec(x_5); +return x_7; +} +else +{ +lean_object* x_8; lean_object* x_9; lean_object* x_10; +lean_dec(x_2); +x_8 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepFromSplice___closed__1; +x_9 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepFromSplice___closed__4; +x_10 = lean_panic_fn(x_8, x_9); +return x_10; +} +} +} +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepFromSplice___boxed(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepFromSplice(x_1); +lean_dec(x_1); +return x_2; +} +} +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax_match__1___rarg(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_1) == 0) { -lean_object* x_4; -lean_dec(x_2); -x_4 = lean_apply_1(x_3, x_1); -return x_4; -} -else -{ -lean_object* x_5; -x_5 = lean_ctor_get(x_1, 0); -lean_inc(x_5); -if (lean_obj_tag(x_5) == 1) -{ lean_object* x_6; -x_6 = lean_ctor_get(x_5, 0); -lean_inc(x_6); -if (lean_obj_tag(x_6) == 0) -{ -lean_object* x_7; size_t x_8; lean_object* x_9; uint8_t x_10; -x_7 = lean_ctor_get(x_5, 1); -lean_inc(x_7); -x_8 = lean_ctor_get_usize(x_5, 2); -lean_dec(x_5); -x_9 = l_myMacro____x40_Init_Notation___hyg_267____closed__1; -x_10 = lean_string_dec_eq(x_7, x_9); -lean_dec(x_7); -if (x_10 == 0) -{ -lean_object* x_11; +lean_dec(x_4); +lean_dec(x_3); lean_dec(x_2); -x_11 = lean_apply_1(x_3, x_1); -return x_11; +x_6 = lean_apply_1(x_5, x_1); +return x_6; } else { -lean_object* x_12; lean_object* x_13; +lean_object* x_7; +x_7 = lean_ctor_get(x_1, 0); +lean_inc(x_7); +if (lean_obj_tag(x_7) == 1) +{ +lean_object* x_8; +x_8 = lean_ctor_get(x_7, 0); +lean_inc(x_8); +if (lean_obj_tag(x_8) == 0) +{ +lean_object* x_9; size_t x_10; lean_object* x_11; uint8_t x_12; +x_9 = lean_ctor_get(x_7, 1); +lean_inc(x_9); +x_10 = lean_ctor_get_usize(x_7, 2); +lean_dec(x_7); +x_11 = l_myMacro____x40_Init_Notation___hyg_267____closed__1; +x_12 = lean_string_dec_eq(x_9, x_11); +if (x_12 == 0) +{ +lean_object* x_13; uint8_t x_14; +lean_dec(x_2); +x_13 = l_myMacro____x40_Init_Notation___hyg_158____closed__1; +x_14 = lean_string_dec_eq(x_9, x_13); +if (x_14 == 0) +{ +lean_object* x_15; uint8_t x_16; +lean_dec(x_3); +x_15 = l_myMacro____x40_Init_Notation___hyg_521____closed__1; +x_16 = lean_string_dec_eq(x_9, x_15); +lean_dec(x_9); +if (x_16 == 0) +{ +lean_object* x_17; +lean_dec(x_4); +x_17 = lean_apply_1(x_5, x_1); +return x_17; +} +else +{ +lean_object* x_18; lean_object* x_19; +lean_dec(x_5); +lean_dec(x_1); +x_18 = lean_box_usize(x_10); +x_19 = lean_apply_1(x_4, x_18); +return x_19; +} +} +else +{ +lean_object* x_20; lean_object* x_21; +lean_dec(x_9); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_20 = lean_box_usize(x_10); +x_21 = lean_apply_1(x_3, x_20); +return x_21; +} +} +else +{ +lean_object* x_22; lean_object* x_23; +lean_dec(x_9); +lean_dec(x_5); +lean_dec(x_4); lean_dec(x_3); lean_dec(x_1); -x_12 = lean_box_usize(x_8); -x_13 = lean_apply_1(x_2, x_12); -return x_13; +x_22 = lean_box_usize(x_10); +x_23 = lean_apply_1(x_2, x_22); +return x_23; } } else { -lean_object* x_14; -lean_dec(x_6); -lean_dec(x_5); +lean_object* x_24; +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_4); +lean_dec(x_3); lean_dec(x_2); -x_14 = lean_apply_1(x_3, x_1); -return x_14; +x_24 = lean_apply_1(x_5, x_1); +return x_24; } } else { -lean_object* x_15; -lean_dec(x_5); +lean_object* x_25; +lean_dec(x_7); +lean_dec(x_4); +lean_dec(x_3); lean_dec(x_2); -x_15 = lean_apply_1(x_3, x_1); -return x_15; +x_25 = lean_apply_1(x_5, x_1); +return x_25; } } } @@ -1568,7 +1766,7 @@ lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSy _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax_match__1___rarg), 3, 0); +x_2 = lean_alloc_closure((void*)(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax_match__1___rarg), 5, 0); return x_2; } } @@ -1648,7 +1846,83 @@ x_2 = lean_alloc_closure((void*)(l___private_Lean_Elab_Quotation_0__Lean_Elab_Te return x_2; } } -lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax_match__3___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax_match__3___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +if (lean_obj_tag(x_1) == 0) +{ +lean_object* x_4; +lean_dec(x_2); +x_4 = lean_apply_1(x_3, x_1); +return x_4; +} +else +{ +lean_object* x_5; +x_5 = lean_ctor_get(x_1, 0); +lean_inc(x_5); +if (lean_obj_tag(x_5) == 1) +{ +lean_object* x_6; +x_6 = lean_ctor_get(x_5, 0); +lean_inc(x_6); +if (lean_obj_tag(x_6) == 0) +{ +lean_object* x_7; size_t x_8; lean_object* x_9; uint8_t x_10; +x_7 = lean_ctor_get(x_5, 1); +lean_inc(x_7); +x_8 = lean_ctor_get_usize(x_5, 2); +lean_dec(x_5); +x_9 = l_myMacro____x40_Init_Notation___hyg_267____closed__1; +x_10 = lean_string_dec_eq(x_7, x_9); +lean_dec(x_7); +if (x_10 == 0) +{ +lean_object* x_11; +lean_dec(x_2); +x_11 = lean_apply_1(x_3, x_1); +return x_11; +} +else +{ +lean_object* x_12; lean_object* x_13; +lean_dec(x_3); +lean_dec(x_1); +x_12 = lean_box_usize(x_8); +x_13 = lean_apply_1(x_2, x_12); +return x_13; +} +} +else +{ +lean_object* x_14; +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_2); +x_14 = lean_apply_1(x_3, x_1); +return x_14; +} +} +else +{ +lean_object* x_15; +lean_dec(x_5); +lean_dec(x_2); +x_15 = lean_apply_1(x_3, x_1); +return x_15; +} +} +} +} +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax_match__3(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax_match__3___rarg), 3, 0); +return x_2; +} +} +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax_match__4___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; lean_object* x_7; uint8_t x_8; @@ -1712,43 +1986,11 @@ return x_20; } } } -lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax_match__3(lean_object* x_1) { -_start: -{ -lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax_match__3___rarg), 5, 0); -return x_2; -} -} -lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax_match__4___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { -_start: -{ -if (lean_obj_tag(x_1) == 2) -{ -lean_object* x_4; lean_object* x_5; lean_object* x_6; -lean_dec(x_3); -x_4 = lean_ctor_get(x_1, 0); -lean_inc(x_4); -x_5 = lean_ctor_get(x_1, 1); -lean_inc(x_5); -lean_dec(x_1); -x_6 = lean_apply_2(x_2, x_4, x_5); -return x_6; -} -else -{ -lean_object* x_7; -lean_dec(x_2); -x_7 = lean_apply_1(x_3, x_1); -return x_7; -} -} -} lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax_match__4(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax_match__4___rarg), 3, 0); +x_2 = lean_alloc_closure((void*)(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax_match__4___rarg), 5, 0); return x_2; } } @@ -2161,55 +2403,26 @@ static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quo _start: { lean_object* x_1; -x_1 = lean_mk_string("Lean.Elab.Quotation"); +x_1 = lean_mk_string("mkSepArray"); return x_1; } } static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__2() { _start: { -lean_object* x_1; -x_1 = lean_mk_string("_private.Lean.Elab.Quotation.0.Lean.Elab.Term.Quotation.quoteSyntax"); -return x_1; +lean_object* x_1; lean_object* x_2; +x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__1; +x_2 = lean_string_utf8_byte_size(x_1); +return x_2; } } static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__3() { _start: { -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 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__1; -x_2 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__2; -x_3 = lean_unsigned_to_nat(77u); -x_4 = lean_unsigned_to_nat(67u); -x_5 = l_Lean_Syntax_strLitToAtom___closed__3; -x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); -return x_6; -} -} -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__4() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("mkSepArray"); -return x_1; -} -} -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__4; -x_2 = lean_string_utf8_byte_size(x_1); -return x_2; -} -} -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__6() { -_start: -{ lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__4; +x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__1; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__5; +x_3 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___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); @@ -2217,27 +2430,27 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__7() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__4; +x_2 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__8() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_myMacro____x40_Init_Notation___hyg_49____closed__2; -x_2 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__4; +x_2 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__9() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__6() { _start: { lean_object* x_1; @@ -2245,22 +2458,22 @@ x_1 = lean_mk_string("mkAtom"); return x_1; } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__10() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__7() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__9; +x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__6; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__11() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__9; +x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__6; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__10; +x_3 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__7; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -2268,22 +2481,22 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__12() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__9; +x_2 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__6; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__13() { +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_myMacro____x40_Init_Notation___hyg_49____closed__2; -x_2 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__9; +x_2 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__6; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } @@ -2311,292 +2524,105 @@ return x_21; } else { -lean_object* x_22; lean_object* x_23; -x_22 = lean_unsigned_to_nat(5u); -x_23 = l_Lean_Syntax_getArg(x_8, x_22); -if (lean_obj_tag(x_23) == 2) -{ -uint8_t x_24; -x_24 = !lean_is_exclusive(x_23); -if (x_24 == 0) -{ -lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; -x_25 = lean_ctor_get(x_23, 1); -x_26 = lean_ctor_get(x_23, 0); -lean_dec(x_26); -x_27 = l_Lean_Elab_Term_getCurrMacroScope(x_10, x_11, x_12, x_13, x_14, x_15, x_16); -x_28 = lean_ctor_get(x_27, 0); -lean_inc(x_28); -x_29 = lean_ctor_get(x_27, 1); -lean_inc(x_29); -lean_dec(x_27); -x_30 = l_Lean_Elab_Term_getMainModule___rarg(x_15, x_29); -x_31 = lean_ctor_get(x_30, 0); -lean_inc(x_31); -x_32 = lean_ctor_get(x_30, 1); -lean_inc(x_32); -lean_dec(x_30); -x_33 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__7; -lean_inc(x_28); -lean_inc(x_31); -x_34 = l_Lean_addMacroScope(x_31, x_33, x_28); -x_35 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__8; +lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; +x_22 = l_Lean_Elab_Term_getCurrMacroScope(x_10, x_11, x_12, x_13, x_14, x_15, x_16); +x_23 = lean_ctor_get(x_22, 0); +lean_inc(x_23); +x_24 = lean_ctor_get(x_22, 1); +lean_inc(x_24); +lean_dec(x_22); +x_25 = l_Lean_Elab_Term_getMainModule___rarg(x_15, x_24); +x_26 = lean_ctor_get(x_25, 0); +lean_inc(x_26); +x_27 = lean_ctor_get(x_25, 1); +lean_inc(x_27); +lean_dec(x_25); +x_28 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__4; +lean_inc(x_23); +lean_inc(x_26); +x_29 = l_Lean_addMacroScope(x_26, x_28, x_23); +x_30 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__5; lean_inc(x_3); -x_36 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_36, 0, x_35); -lean_ctor_set(x_36, 1, x_3); +x_31 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_31, 0, x_30); +lean_ctor_set(x_31, 1, x_3); lean_inc(x_4); -x_37 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_37, 0, x_36); -lean_ctor_set(x_37, 1, x_4); -x_38 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__6; +x_32 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_32, 0, x_31); +lean_ctor_set(x_32, 1, x_4); +x_33 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__3; lean_inc(x_5); -x_39 = lean_alloc_ctor(3, 4, 0); +x_34 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_34, 0, x_5); +lean_ctor_set(x_34, 1, x_33); +lean_ctor_set(x_34, 2, x_29); +lean_ctor_set(x_34, 3, x_32); +x_35 = l_Array_empty___closed__1; +x_36 = lean_array_push(x_35, x_34); +x_37 = lean_array_push(x_35, x_9); +x_38 = l_myMacro____x40_Init_Notation___hyg_49____closed__13; +lean_inc(x_5); +x_39 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_39, 0, x_5); lean_ctor_set(x_39, 1, x_38); -lean_ctor_set(x_39, 2, x_34); -lean_ctor_set(x_39, 3, x_37); -x_40 = l_Array_empty___closed__1; -x_41 = lean_array_push(x_40, x_39); -x_42 = lean_array_push(x_40, x_9); -x_43 = l_myMacro____x40_Init_Notation___hyg_49____closed__13; -lean_inc(x_5); -lean_ctor_set(x_23, 1, x_43); -lean_ctor_set(x_23, 0, x_5); -x_44 = lean_array_push(x_40, x_23); -x_45 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__12; -x_46 = l_Lean_addMacroScope(x_31, x_45, x_28); -x_47 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__13; +x_40 = lean_array_push(x_35, x_39); +x_41 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__9; +x_42 = l_Lean_addMacroScope(x_26, x_41, x_23); +x_43 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__10; lean_inc(x_3); -x_48 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_48, 0, x_47); -lean_ctor_set(x_48, 1, x_3); +x_44 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_44, 0, x_43); +lean_ctor_set(x_44, 1, x_3); lean_inc(x_4); -x_49 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_49, 0, x_48); -lean_ctor_set(x_49, 1, x_4); -x_50 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__11; +x_45 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_45, 0, x_44); +lean_ctor_set(x_45, 1, x_4); +x_46 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__8; lean_inc(x_5); -x_51 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_51, 0, x_5); -lean_ctor_set(x_51, 1, x_50); -lean_ctor_set(x_51, 2, x_46); -lean_ctor_set(x_51, 3, x_49); -x_52 = lean_array_push(x_40, x_51); -x_53 = lean_unsigned_to_nat(1u); -x_54 = l_String_dropRight(x_25, x_53); +x_47 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_47, 0, x_5); +lean_ctor_set(x_47, 1, x_46); +lean_ctor_set(x_47, 2, x_42); +lean_ctor_set(x_47, 3, x_45); +x_48 = lean_array_push(x_35, x_47); +x_49 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepFromSplice(x_8); +x_50 = lean_array_push(x_35, x_49); +x_51 = l_Lean_nullKind___closed__2; +x_52 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_52, 0, x_51); +lean_ctor_set(x_52, 1, x_50); +x_53 = lean_array_push(x_48, x_52); +x_54 = l_myMacro____x40_Init_Notation___hyg_1625____closed__4; +x_55 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_55, 0, x_54); +lean_ctor_set(x_55, 1, x_53); +x_56 = lean_array_push(x_35, x_55); +x_57 = l_myMacro____x40_Init_Notation___hyg_521____closed__23; +x_58 = lean_array_push(x_56, x_57); +x_59 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_59, 0, x_51); +lean_ctor_set(x_59, 1, x_58); +x_60 = lean_array_push(x_40, x_59); +x_61 = l_myMacro____x40_Init_Notation___hyg_49____closed__15; lean_inc(x_5); -x_55 = l_Lean_Syntax_mkStrLit(x_54, x_5); -lean_dec(x_54); -x_56 = lean_array_push(x_40, x_55); -x_57 = l_Lean_nullKind___closed__2; -x_58 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_58, 0, x_57); -lean_ctor_set(x_58, 1, x_56); -x_59 = lean_array_push(x_52, x_58); -x_60 = l_myMacro____x40_Init_Notation___hyg_1625____closed__4; -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_40, x_61); -x_63 = l_myMacro____x40_Init_Notation___hyg_521____closed__23; -x_64 = lean_array_push(x_62, x_63); +x_62 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_62, 0, x_5); +lean_ctor_set(x_62, 1, x_61); +x_63 = lean_array_push(x_60, x_62); +x_64 = l_myMacro____x40_Init_Notation___hyg_10790____closed__8; x_65 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_65, 0, x_57); -lean_ctor_set(x_65, 1, x_64); -x_66 = lean_array_push(x_44, x_65); -x_67 = l_myMacro____x40_Init_Notation___hyg_49____closed__15; -lean_inc(x_5); -x_68 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_68, 0, x_5); -lean_ctor_set(x_68, 1, x_67); -x_69 = lean_array_push(x_66, x_68); -x_70 = l_myMacro____x40_Init_Notation___hyg_10790____closed__8; -x_71 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_71, 0, x_70); -lean_ctor_set(x_71, 1, x_69); -x_72 = lean_array_push(x_42, x_71); -x_73 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_73, 0, x_57); -lean_ctor_set(x_73, 1, x_72); -x_74 = lean_array_push(x_41, x_73); -x_75 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_75, 0, x_60); -lean_ctor_set(x_75, 1, x_74); -x_76 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_75, x_10, x_11, x_12, x_13, x_14, x_15, x_32); -return x_76; -} -else -{ -lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; 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; -x_77 = lean_ctor_get(x_23, 1); -lean_inc(x_77); -lean_dec(x_23); -x_78 = l_Lean_Elab_Term_getCurrMacroScope(x_10, x_11, x_12, x_13, x_14, x_15, x_16); -x_79 = lean_ctor_get(x_78, 0); -lean_inc(x_79); -x_80 = lean_ctor_get(x_78, 1); -lean_inc(x_80); -lean_dec(x_78); -x_81 = l_Lean_Elab_Term_getMainModule___rarg(x_15, x_80); -x_82 = lean_ctor_get(x_81, 0); -lean_inc(x_82); -x_83 = lean_ctor_get(x_81, 1); -lean_inc(x_83); -lean_dec(x_81); -x_84 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__7; -lean_inc(x_79); -lean_inc(x_82); -x_85 = l_Lean_addMacroScope(x_82, x_84, x_79); -x_86 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__8; -lean_inc(x_3); -x_87 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_87, 0, x_86); -lean_ctor_set(x_87, 1, x_3); -lean_inc(x_4); -x_88 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_88, 0, x_87); -lean_ctor_set(x_88, 1, x_4); -x_89 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__6; -lean_inc(x_5); -x_90 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_90, 0, x_5); -lean_ctor_set(x_90, 1, x_89); -lean_ctor_set(x_90, 2, x_85); -lean_ctor_set(x_90, 3, x_88); -x_91 = l_Array_empty___closed__1; -x_92 = lean_array_push(x_91, x_90); -x_93 = lean_array_push(x_91, x_9); -x_94 = l_myMacro____x40_Init_Notation___hyg_49____closed__13; -lean_inc(x_5); -x_95 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_95, 0, x_5); -lean_ctor_set(x_95, 1, x_94); -x_96 = lean_array_push(x_91, x_95); -x_97 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__12; -x_98 = l_Lean_addMacroScope(x_82, x_97, x_79); -x_99 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__13; -lean_inc(x_3); -x_100 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_100, 0, x_99); -lean_ctor_set(x_100, 1, x_3); -lean_inc(x_4); -x_101 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_101, 0, x_100); -lean_ctor_set(x_101, 1, x_4); -x_102 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__11; -lean_inc(x_5); -x_103 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_103, 0, x_5); -lean_ctor_set(x_103, 1, x_102); -lean_ctor_set(x_103, 2, x_98); -lean_ctor_set(x_103, 3, x_101); -x_104 = lean_array_push(x_91, x_103); -x_105 = lean_unsigned_to_nat(1u); -x_106 = l_String_dropRight(x_77, x_105); -lean_inc(x_5); -x_107 = l_Lean_Syntax_mkStrLit(x_106, x_5); -lean_dec(x_106); -x_108 = lean_array_push(x_91, x_107); -x_109 = l_Lean_nullKind___closed__2; -x_110 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_110, 0, x_109); -lean_ctor_set(x_110, 1, x_108); -x_111 = lean_array_push(x_104, x_110); -x_112 = l_myMacro____x40_Init_Notation___hyg_1625____closed__4; -x_113 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_113, 0, x_112); -lean_ctor_set(x_113, 1, x_111); -x_114 = lean_array_push(x_91, x_113); -x_115 = l_myMacro____x40_Init_Notation___hyg_521____closed__23; -x_116 = lean_array_push(x_114, x_115); -x_117 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_117, 0, x_109); -lean_ctor_set(x_117, 1, x_116); -x_118 = lean_array_push(x_96, x_117); -x_119 = l_myMacro____x40_Init_Notation___hyg_49____closed__15; -lean_inc(x_5); -x_120 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_120, 0, x_5); -lean_ctor_set(x_120, 1, x_119); -x_121 = lean_array_push(x_118, x_120); -x_122 = l_myMacro____x40_Init_Notation___hyg_10790____closed__8; -x_123 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_123, 0, x_122); -lean_ctor_set(x_123, 1, x_121); -x_124 = lean_array_push(x_93, x_123); -x_125 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_125, 0, x_109); -lean_ctor_set(x_125, 1, x_124); -x_126 = lean_array_push(x_92, x_125); -x_127 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_127, 0, x_112); -lean_ctor_set(x_127, 1, x_126); -x_128 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_127, x_10, x_11, x_12, x_13, x_14, x_15, x_83); -return x_128; -} -} -else -{ -lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; -lean_dec(x_23); -lean_dec(x_9); -x_129 = l_Lean_Elab_Term_getFVarLocalDecl_x21___closed__1; -x_130 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__3; -x_131 = lean_panic_fn(x_129, x_130); -lean_inc(x_15); -lean_inc(x_14); -lean_inc(x_13); -lean_inc(x_12); -lean_inc(x_11); -lean_inc(x_10); -x_132 = lean_apply_7(x_131, x_10, x_11, x_12, x_13, x_14, x_15, x_16); -if (lean_obj_tag(x_132) == 0) -{ -lean_object* x_133; lean_object* x_134; lean_object* x_135; -x_133 = lean_ctor_get(x_132, 0); -lean_inc(x_133); -x_134 = lean_ctor_get(x_132, 1); -lean_inc(x_134); -lean_dec(x_132); -x_135 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_133, x_10, x_11, x_12, x_13, x_14, x_15, x_134); -return x_135; -} -else -{ -uint8_t x_136; -lean_dec(x_15); -lean_dec(x_14); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -lean_dec(x_1); -x_136 = !lean_is_exclusive(x_132); -if (x_136 == 0) -{ -return x_132; -} -else -{ -lean_object* x_137; lean_object* x_138; lean_object* x_139; -x_137 = lean_ctor_get(x_132, 0); -x_138 = lean_ctor_get(x_132, 1); -lean_inc(x_138); -lean_inc(x_137); -lean_dec(x_132); -x_139 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_139, 0, x_137); -lean_ctor_set(x_139, 1, x_138); -return x_139; -} -} -} +lean_ctor_set(x_65, 0, x_64); +lean_ctor_set(x_65, 1, x_63); +x_66 = lean_array_push(x_37, x_65); +x_67 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_67, 0, x_51); +lean_ctor_set(x_67, 1, x_66); +x_68 = lean_array_push(x_36, x_67); +x_69 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_69, 0, x_54); +lean_ctor_set(x_69, 1, x_68); +x_70 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_69, x_10, x_11, x_12, x_13, x_14, x_15, x_27); +return x_70; } } } @@ -2888,6 +2914,196 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__30() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("invalid antiquotation suffix splice kind '"); +return x_1; +} +} +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__31() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__30; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__32() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__31; +x_2 = l_Lean_MessageData_instCoeOptionExprMessageData___closed__1; +x_3 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set(x_3, 1, x_2); +return x_3; +} +} +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__33() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__32; +x_2 = l_Lean_KernelException_toMessageData___closed__3; +x_3 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set(x_3, 1, x_2); +return x_3; +} +} +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__34() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("@"); +return x_1; +} +} +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__35() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("SepArray.elemsAndSeps"); +return x_1; +} +} +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__36() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__35; +x_2 = lean_string_utf8_byte_size(x_1); +return x_2; +} +} +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__37() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__35; +x_2 = lean_unsigned_to_nat(0u); +x_3 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__36; +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; +} +} +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__38() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("SepArray"); +return x_1; +} +} +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__39() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__38; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__40() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("elemsAndSeps"); +return x_1; +} +} +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__41() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__39; +x_2 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__40; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__42() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___private_Lean_Elab_Util_0__Lean_Elab_evalSyntaxConstantUnsafe___closed__1; +x_2 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__38; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__43() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__42; +x_2 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__40; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__44() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Meta_mkArrow___closed__1; +x_2 = lean_string_utf8_byte_size(x_1); +return x_2; +} +} +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__45() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Meta_mkArrow___closed__1; +x_2 = lean_unsigned_to_nat(0u); +x_3 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__44; +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; +} +} +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__46() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("Array.empty.push"); +return x_1; +} +} +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__47() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__46; +x_2 = lean_string_utf8_byte_size(x_1); +return x_2; +} +} +static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__48() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__46; +x_2 = lean_unsigned_to_nat(0u); +x_3 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___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; +} +} static lean_object* _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___boxed__const__1() { _start: { @@ -2918,7 +3134,7 @@ goto block_83; else { uint8_t x_87; -x_87 = l_Lean_Syntax_isAntiquotSplice(x_33); +x_87 = l_Lean_Syntax_isAntiquotSuffixSplice(x_33); if (x_87 == 0) { uint8_t x_88; @@ -5931,107 +6147,1009 @@ goto block_31; } else { -lean_object* x_1294; lean_object* x_1295; lean_object* x_1296; lean_object* x_1297; uint8_t x_1298; -x_1294 = l_Lean_Elab_Term_getCurrMacroScope(x_14, x_15, x_16, x_17, x_18, x_19, x_20); -x_1295 = lean_ctor_get(x_1294, 0); -lean_inc(x_1295); -x_1296 = lean_ctor_get(x_1294, 1); -lean_inc(x_1296); -lean_dec(x_1294); -x_1297 = l_Lean_Elab_Term_getMainModule___rarg(x_19, x_1296); -x_1298 = !lean_is_exclusive(x_1297); -if (x_1298 == 0) +lean_object* x_1294; lean_object* x_1295; lean_object* x_1296; +x_1294 = lean_unsigned_to_nat(0u); +x_1295 = l_Lean_Syntax_getArg(x_33, x_1294); +x_1296 = l_Lean_Syntax_antiquotSuffixSplice_x3f(x_33); +if (lean_obj_tag(x_1296) == 0) { -lean_object* x_1299; lean_object* x_1300; lean_object* x_1301; lean_object* x_1302; lean_object* x_1303; lean_object* x_1304; lean_object* x_1305; lean_object* x_1306; lean_object* x_1307; lean_object* x_1308; lean_object* x_1309; lean_object* x_1310; lean_object* x_1311; lean_object* x_1312; lean_object* x_1313; lean_object* x_1314; lean_object* x_1315; lean_object* x_1316; -x_1299 = lean_ctor_get(x_1297, 0); -x_1300 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__1___closed__4; -lean_inc(x_4); -x_1301 = lean_name_mk_string(x_4, x_1300); -lean_inc(x_1301); -x_1302 = l_Lean_addMacroScope(x_1299, x_1301, x_1295); -lean_inc(x_6); -x_1303 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1303, 0, x_1301); -lean_ctor_set(x_1303, 1, x_6); -lean_inc(x_7); -x_1304 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1304, 0, x_1303); -lean_ctor_set(x_1304, 1, x_7); -x_1305 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__1___closed__3; -lean_inc(x_2); -x_1306 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1306, 0, x_2); -lean_ctor_set(x_1306, 1, x_1305); -lean_ctor_set(x_1306, 2, x_1302); -lean_ctor_set(x_1306, 3, x_1304); -x_1307 = l_Array_empty___closed__1; -x_1308 = lean_array_push(x_1307, x_1306); -x_1309 = lean_array_push(x_1307, x_13); -x_1310 = l_Lean_Syntax_getAntiquotTerm(x_33); +lean_object* x_1297; lean_object* x_1298; +lean_dec(x_1295); +lean_dec(x_13); +x_1297 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__33; +lean_inc(x_18); +lean_inc(x_14); +x_1298 = l_Lean_throwErrorAt___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabTermAux___spec__1___rarg(x_33, x_1297, x_14, x_15, x_16, x_17, x_18, x_19, x_20); lean_dec(x_33); -x_1311 = lean_array_push(x_1309, x_1310); -x_1312 = l_Lean_nullKind___closed__2; -x_1313 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1313, 0, x_1312); -lean_ctor_set(x_1313, 1, x_1311); -x_1314 = lean_array_push(x_1308, x_1313); -x_1315 = l_myMacro____x40_Init_Notation___hyg_1625____closed__4; -x_1316 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1316, 0, x_1315); -lean_ctor_set(x_1316, 1, x_1314); -lean_ctor_set(x_1297, 0, x_1316); -x_21 = x_1297; +x_21 = x_1298; goto block_31; } else { -lean_object* x_1317; lean_object* x_1318; lean_object* x_1319; lean_object* x_1320; lean_object* x_1321; lean_object* x_1322; lean_object* x_1323; lean_object* x_1324; lean_object* x_1325; lean_object* x_1326; lean_object* x_1327; lean_object* x_1328; lean_object* x_1329; lean_object* x_1330; lean_object* x_1331; lean_object* x_1332; lean_object* x_1333; lean_object* x_1334; lean_object* x_1335; lean_object* x_1336; -x_1317 = lean_ctor_get(x_1297, 0); -x_1318 = lean_ctor_get(x_1297, 1); -lean_inc(x_1318); -lean_inc(x_1317); -lean_dec(x_1297); -x_1319 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__1___closed__4; -lean_inc(x_4); -x_1320 = lean_name_mk_string(x_4, x_1319); -lean_inc(x_1320); -x_1321 = l_Lean_addMacroScope(x_1317, x_1320, x_1295); -lean_inc(x_6); -x_1322 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1322, 0, x_1320); -lean_ctor_set(x_1322, 1, x_6); -lean_inc(x_7); -x_1323 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1323, 0, x_1322); -lean_ctor_set(x_1323, 1, x_7); -x_1324 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__1___closed__3; -lean_inc(x_2); -x_1325 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1325, 0, x_2); -lean_ctor_set(x_1325, 1, x_1324); -lean_ctor_set(x_1325, 2, x_1321); -lean_ctor_set(x_1325, 3, x_1323); -x_1326 = l_Array_empty___closed__1; -x_1327 = lean_array_push(x_1326, x_1325); -x_1328 = lean_array_push(x_1326, x_13); -x_1329 = l_Lean_Syntax_getAntiquotTerm(x_33); +lean_object* x_1299; +x_1299 = lean_ctor_get(x_1296, 0); +lean_inc(x_1299); +lean_dec(x_1296); +if (lean_obj_tag(x_1299) == 1) +{ +lean_object* x_1300; +x_1300 = lean_ctor_get(x_1299, 0); +lean_inc(x_1300); +if (lean_obj_tag(x_1300) == 0) +{ +lean_object* x_1301; lean_object* x_1302; uint8_t x_1303; +x_1301 = lean_ctor_get(x_1299, 1); +lean_inc(x_1301); +x_1302 = l_myMacro____x40_Init_Notation___hyg_267____closed__1; +x_1303 = lean_string_dec_eq(x_1301, x_1302); +if (x_1303 == 0) +{ +lean_object* x_1304; uint8_t x_1305; +x_1304 = l_myMacro____x40_Init_Notation___hyg_158____closed__1; +x_1305 = lean_string_dec_eq(x_1301, x_1304); +if (x_1305 == 0) +{ +lean_object* x_1306; uint8_t x_1307; +x_1306 = l_myMacro____x40_Init_Notation___hyg_521____closed__1; +x_1307 = lean_string_dec_eq(x_1301, x_1306); +lean_dec(x_1301); +if (x_1307 == 0) +{ +lean_object* x_1308; lean_object* x_1309; lean_object* x_1310; lean_object* x_1311; lean_object* x_1312; lean_object* x_1313; lean_object* x_1314; lean_object* x_1315; lean_object* x_1316; lean_object* x_1317; +lean_dec(x_1295); +lean_dec(x_13); +x_1308 = lean_alloc_ctor(4, 1, 0); +lean_ctor_set(x_1308, 0, x_1299); +x_1309 = l_Lean_instToMessageDataOption___rarg___closed__3; +x_1310 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_1310, 0, x_1309); +lean_ctor_set(x_1310, 1, x_1308); +x_1311 = l_Lean_instToMessageDataOption___rarg___closed__4; +x_1312 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_1312, 0, x_1310); +lean_ctor_set(x_1312, 1, x_1311); +x_1313 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__31; +x_1314 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_1314, 0, x_1313); +lean_ctor_set(x_1314, 1, x_1312); +x_1315 = l_Lean_KernelException_toMessageData___closed__3; +x_1316 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_1316, 0, x_1314); +lean_ctor_set(x_1316, 1, x_1315); +lean_inc(x_18); +lean_inc(x_14); +x_1317 = l_Lean_throwErrorAt___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabTermAux___spec__1___rarg(x_33, x_1316, x_14, x_15, x_16, x_17, x_18, x_19, x_20); lean_dec(x_33); -x_1330 = lean_array_push(x_1328, x_1329); -x_1331 = l_Lean_nullKind___closed__2; -x_1332 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1332, 0, x_1331); -lean_ctor_set(x_1332, 1, x_1330); -x_1333 = lean_array_push(x_1327, x_1332); -x_1334 = l_myMacro____x40_Init_Notation___hyg_1625____closed__4; -x_1335 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1335, 0, x_1334); -lean_ctor_set(x_1335, 1, x_1333); -x_1336 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1336, 0, x_1335); -lean_ctor_set(x_1336, 1, x_1318); -x_21 = x_1336; +x_21 = x_1317; goto block_31; } +else +{ +lean_object* x_1318; lean_object* x_1319; lean_object* x_1320; lean_object* x_1321; uint8_t x_1322; +lean_dec(x_1299); +x_1318 = l_Lean_Elab_Term_getCurrMacroScope(x_14, x_15, x_16, x_17, x_18, x_19, x_20); +x_1319 = lean_ctor_get(x_1318, 0); +lean_inc(x_1319); +x_1320 = lean_ctor_get(x_1318, 1); +lean_inc(x_1320); +lean_dec(x_1318); +x_1321 = l_Lean_Elab_Term_getMainModule___rarg(x_19, x_1320); +x_1322 = !lean_is_exclusive(x_1321); +if (x_1322 == 0) +{ +lean_object* x_1323; lean_object* x_1324; lean_object* x_1325; lean_object* x_1326; lean_object* x_1327; lean_object* x_1328; lean_object* x_1329; lean_object* x_1330; lean_object* x_1331; lean_object* x_1332; lean_object* x_1333; lean_object* x_1334; lean_object* x_1335; lean_object* x_1336; lean_object* x_1337; lean_object* x_1338; lean_object* x_1339; lean_object* x_1340; lean_object* x_1341; lean_object* x_1342; lean_object* x_1343; lean_object* x_1344; lean_object* x_1345; lean_object* x_1346; lean_object* x_1347; lean_object* x_1348; lean_object* x_1349; lean_object* x_1350; lean_object* x_1351; lean_object* x_1352; lean_object* x_1353; lean_object* x_1354; lean_object* x_1355; lean_object* x_1356; lean_object* x_1357; lean_object* x_1358; lean_object* x_1359; lean_object* x_1360; lean_object* x_1361; lean_object* x_1362; lean_object* x_1363; lean_object* x_1364; lean_object* x_1365; lean_object* x_1366; lean_object* x_1367; lean_object* x_1368; lean_object* x_1369; lean_object* x_1370; lean_object* x_1371; lean_object* x_1372; lean_object* x_1373; +x_1323 = lean_ctor_get(x_1321, 0); +x_1324 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__1___closed__4; +lean_inc(x_4); +x_1325 = lean_name_mk_string(x_4, x_1324); +lean_inc(x_1319); +lean_inc(x_1325); +lean_inc(x_1323); +x_1326 = l_Lean_addMacroScope(x_1323, x_1325, x_1319); +lean_inc(x_6); +x_1327 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1327, 0, x_1325); +lean_ctor_set(x_1327, 1, x_6); +lean_inc(x_7); +x_1328 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1328, 0, x_1327); +lean_ctor_set(x_1328, 1, x_7); +x_1329 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__1___closed__3; +lean_inc(x_2); +x_1330 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1330, 0, x_2); +lean_ctor_set(x_1330, 1, x_1329); +lean_ctor_set(x_1330, 2, x_1326); +lean_ctor_set(x_1330, 3, x_1328); +x_1331 = l_Array_empty___closed__1; +x_1332 = lean_array_push(x_1331, x_1330); +x_1333 = lean_array_push(x_1331, x_13); +x_1334 = l_myMacro____x40_Init_Notation___hyg_49____closed__13; +lean_inc(x_2); +x_1335 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1335, 0, x_2); +lean_ctor_set(x_1335, 1, x_1334); +x_1336 = lean_array_push(x_1331, x_1335); +x_1337 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__34; +lean_inc(x_2); +x_1338 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1338, 0, x_2); +lean_ctor_set(x_1338, 1, x_1337); +x_1339 = lean_array_push(x_1331, x_1338); +x_1340 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__41; +x_1341 = l_Lean_addMacroScope(x_1323, x_1340, x_1319); +x_1342 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__43; +lean_inc(x_6); +x_1343 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1343, 0, x_1342); +lean_ctor_set(x_1343, 1, x_6); +lean_inc(x_7); +x_1344 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1344, 0, x_1343); +lean_ctor_set(x_1344, 1, x_7); +x_1345 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__37; +lean_inc(x_2); +x_1346 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1346, 0, x_2); +lean_ctor_set(x_1346, 1, x_1345); +lean_ctor_set(x_1346, 2, x_1341); +lean_ctor_set(x_1346, 3, x_1344); +x_1347 = lean_array_push(x_1339, x_1346); +x_1348 = l___private_Lean_Elab_Term_0__Lean_Elab_Term_isExplicit___closed__1; +x_1349 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1349, 0, x_1348); +lean_ctor_set(x_1349, 1, x_1347); +x_1350 = lean_array_push(x_1331, x_1349); +x_1351 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepFromSplice(x_33); +lean_dec(x_33); +x_1352 = lean_array_push(x_1331, x_1351); +x_1353 = l_Lean_Syntax_getAntiquotTerm(x_1295); +lean_dec(x_1295); +x_1354 = lean_array_push(x_1352, x_1353); +x_1355 = l_Lean_nullKind___closed__2; +x_1356 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1356, 0, x_1355); +lean_ctor_set(x_1356, 1, x_1354); +x_1357 = lean_array_push(x_1350, x_1356); +x_1358 = l_myMacro____x40_Init_Notation___hyg_1625____closed__4; +x_1359 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1359, 0, x_1358); +lean_ctor_set(x_1359, 1, x_1357); +x_1360 = lean_array_push(x_1331, x_1359); +x_1361 = l_myMacro____x40_Init_Notation___hyg_521____closed__23; +x_1362 = lean_array_push(x_1360, x_1361); +x_1363 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1363, 0, x_1355); +lean_ctor_set(x_1363, 1, x_1362); +x_1364 = lean_array_push(x_1336, x_1363); +x_1365 = l_myMacro____x40_Init_Notation___hyg_49____closed__15; +lean_inc(x_2); +x_1366 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1366, 0, x_2); +lean_ctor_set(x_1366, 1, x_1365); +x_1367 = lean_array_push(x_1364, x_1366); +x_1368 = l_myMacro____x40_Init_Notation___hyg_10790____closed__8; +x_1369 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1369, 0, x_1368); +lean_ctor_set(x_1369, 1, x_1367); +x_1370 = lean_array_push(x_1333, x_1369); +x_1371 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1371, 0, x_1355); +lean_ctor_set(x_1371, 1, x_1370); +x_1372 = lean_array_push(x_1332, x_1371); +x_1373 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1373, 0, x_1358); +lean_ctor_set(x_1373, 1, x_1372); +lean_ctor_set(x_1321, 0, x_1373); +x_21 = x_1321; +goto block_31; +} +else +{ +lean_object* x_1374; lean_object* x_1375; lean_object* x_1376; lean_object* x_1377; lean_object* x_1378; lean_object* x_1379; lean_object* x_1380; lean_object* x_1381; lean_object* x_1382; lean_object* x_1383; lean_object* x_1384; lean_object* x_1385; lean_object* x_1386; lean_object* x_1387; lean_object* x_1388; lean_object* x_1389; lean_object* x_1390; lean_object* x_1391; lean_object* x_1392; lean_object* x_1393; lean_object* x_1394; lean_object* x_1395; lean_object* x_1396; lean_object* x_1397; lean_object* x_1398; lean_object* x_1399; lean_object* x_1400; lean_object* x_1401; lean_object* x_1402; lean_object* x_1403; lean_object* x_1404; lean_object* x_1405; lean_object* x_1406; lean_object* x_1407; lean_object* x_1408; lean_object* x_1409; lean_object* x_1410; lean_object* x_1411; lean_object* x_1412; lean_object* x_1413; lean_object* x_1414; lean_object* x_1415; lean_object* x_1416; lean_object* x_1417; lean_object* x_1418; lean_object* x_1419; lean_object* x_1420; lean_object* x_1421; lean_object* x_1422; lean_object* x_1423; lean_object* x_1424; lean_object* x_1425; lean_object* x_1426; +x_1374 = lean_ctor_get(x_1321, 0); +x_1375 = lean_ctor_get(x_1321, 1); +lean_inc(x_1375); +lean_inc(x_1374); +lean_dec(x_1321); +x_1376 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__1___closed__4; +lean_inc(x_4); +x_1377 = lean_name_mk_string(x_4, x_1376); +lean_inc(x_1319); +lean_inc(x_1377); +lean_inc(x_1374); +x_1378 = l_Lean_addMacroScope(x_1374, x_1377, x_1319); +lean_inc(x_6); +x_1379 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1379, 0, x_1377); +lean_ctor_set(x_1379, 1, x_6); +lean_inc(x_7); +x_1380 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1380, 0, x_1379); +lean_ctor_set(x_1380, 1, x_7); +x_1381 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__1___closed__3; +lean_inc(x_2); +x_1382 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1382, 0, x_2); +lean_ctor_set(x_1382, 1, x_1381); +lean_ctor_set(x_1382, 2, x_1378); +lean_ctor_set(x_1382, 3, x_1380); +x_1383 = l_Array_empty___closed__1; +x_1384 = lean_array_push(x_1383, x_1382); +x_1385 = lean_array_push(x_1383, x_13); +x_1386 = l_myMacro____x40_Init_Notation___hyg_49____closed__13; +lean_inc(x_2); +x_1387 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1387, 0, x_2); +lean_ctor_set(x_1387, 1, x_1386); +x_1388 = lean_array_push(x_1383, x_1387); +x_1389 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__34; +lean_inc(x_2); +x_1390 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1390, 0, x_2); +lean_ctor_set(x_1390, 1, x_1389); +x_1391 = lean_array_push(x_1383, x_1390); +x_1392 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__41; +x_1393 = l_Lean_addMacroScope(x_1374, x_1392, x_1319); +x_1394 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__43; +lean_inc(x_6); +x_1395 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1395, 0, x_1394); +lean_ctor_set(x_1395, 1, x_6); +lean_inc(x_7); +x_1396 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1396, 0, x_1395); +lean_ctor_set(x_1396, 1, x_7); +x_1397 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__37; +lean_inc(x_2); +x_1398 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1398, 0, x_2); +lean_ctor_set(x_1398, 1, x_1397); +lean_ctor_set(x_1398, 2, x_1393); +lean_ctor_set(x_1398, 3, x_1396); +x_1399 = lean_array_push(x_1391, x_1398); +x_1400 = l___private_Lean_Elab_Term_0__Lean_Elab_Term_isExplicit___closed__1; +x_1401 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1401, 0, x_1400); +lean_ctor_set(x_1401, 1, x_1399); +x_1402 = lean_array_push(x_1383, x_1401); +x_1403 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepFromSplice(x_33); +lean_dec(x_33); +x_1404 = lean_array_push(x_1383, x_1403); +x_1405 = l_Lean_Syntax_getAntiquotTerm(x_1295); +lean_dec(x_1295); +x_1406 = lean_array_push(x_1404, x_1405); +x_1407 = l_Lean_nullKind___closed__2; +x_1408 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1408, 0, x_1407); +lean_ctor_set(x_1408, 1, x_1406); +x_1409 = lean_array_push(x_1402, x_1408); +x_1410 = l_myMacro____x40_Init_Notation___hyg_1625____closed__4; +x_1411 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1411, 0, x_1410); +lean_ctor_set(x_1411, 1, x_1409); +x_1412 = lean_array_push(x_1383, x_1411); +x_1413 = l_myMacro____x40_Init_Notation___hyg_521____closed__23; +x_1414 = lean_array_push(x_1412, x_1413); +x_1415 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1415, 0, x_1407); +lean_ctor_set(x_1415, 1, x_1414); +x_1416 = lean_array_push(x_1388, x_1415); +x_1417 = l_myMacro____x40_Init_Notation___hyg_49____closed__15; +lean_inc(x_2); +x_1418 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1418, 0, x_2); +lean_ctor_set(x_1418, 1, x_1417); +x_1419 = lean_array_push(x_1416, x_1418); +x_1420 = l_myMacro____x40_Init_Notation___hyg_10790____closed__8; +x_1421 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1421, 0, x_1420); +lean_ctor_set(x_1421, 1, x_1419); +x_1422 = lean_array_push(x_1385, x_1421); +x_1423 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1423, 0, x_1407); +lean_ctor_set(x_1423, 1, x_1422); +x_1424 = lean_array_push(x_1384, x_1423); +x_1425 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1425, 0, x_1410); +lean_ctor_set(x_1425, 1, x_1424); +x_1426 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1426, 0, x_1425); +lean_ctor_set(x_1426, 1, x_1375); +x_21 = x_1426; +goto block_31; +} +} +} +else +{ +lean_object* x_1427; lean_object* x_1428; lean_object* x_1429; lean_object* x_1430; uint8_t x_1431; +lean_dec(x_1301); +lean_dec(x_1299); +lean_dec(x_33); +x_1427 = l_Lean_Elab_Term_getCurrMacroScope(x_14, x_15, x_16, x_17, x_18, x_19, x_20); +x_1428 = lean_ctor_get(x_1427, 0); +lean_inc(x_1428); +x_1429 = lean_ctor_get(x_1427, 1); +lean_inc(x_1429); +lean_dec(x_1427); +x_1430 = l_Lean_Elab_Term_getMainModule___rarg(x_19, x_1429); +x_1431 = !lean_is_exclusive(x_1430); +if (x_1431 == 0) +{ +lean_object* x_1432; lean_object* x_1433; lean_object* x_1434; lean_object* x_1435; lean_object* x_1436; lean_object* x_1437; lean_object* x_1438; lean_object* x_1439; lean_object* x_1440; lean_object* x_1441; lean_object* x_1442; lean_object* x_1443; lean_object* x_1444; lean_object* x_1445; lean_object* x_1446; lean_object* x_1447; lean_object* x_1448; lean_object* x_1449; +x_1432 = lean_ctor_get(x_1430, 0); +x_1433 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__1___closed__4; +lean_inc(x_4); +x_1434 = lean_name_mk_string(x_4, x_1433); +lean_inc(x_1434); +x_1435 = l_Lean_addMacroScope(x_1432, x_1434, x_1428); +lean_inc(x_6); +x_1436 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1436, 0, x_1434); +lean_ctor_set(x_1436, 1, x_6); +lean_inc(x_7); +x_1437 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1437, 0, x_1436); +lean_ctor_set(x_1437, 1, x_7); +x_1438 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__1___closed__3; +lean_inc(x_2); +x_1439 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1439, 0, x_2); +lean_ctor_set(x_1439, 1, x_1438); +lean_ctor_set(x_1439, 2, x_1435); +lean_ctor_set(x_1439, 3, x_1437); +x_1440 = l_Array_empty___closed__1; +x_1441 = lean_array_push(x_1440, x_1439); +x_1442 = lean_array_push(x_1440, x_13); +x_1443 = l_Lean_Syntax_getAntiquotTerm(x_1295); +lean_dec(x_1295); +x_1444 = lean_array_push(x_1442, x_1443); +x_1445 = l_Lean_nullKind___closed__2; +x_1446 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1446, 0, x_1445); +lean_ctor_set(x_1446, 1, x_1444); +x_1447 = lean_array_push(x_1441, x_1446); +x_1448 = l_myMacro____x40_Init_Notation___hyg_1625____closed__4; +x_1449 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1449, 0, x_1448); +lean_ctor_set(x_1449, 1, x_1447); +lean_ctor_set(x_1430, 0, x_1449); +x_21 = x_1430; +goto block_31; +} +else +{ +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; lean_object* x_1469; +x_1450 = lean_ctor_get(x_1430, 0); +x_1451 = lean_ctor_get(x_1430, 1); +lean_inc(x_1451); +lean_inc(x_1450); +lean_dec(x_1430); +x_1452 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__1___closed__4; +lean_inc(x_4); +x_1453 = lean_name_mk_string(x_4, x_1452); +lean_inc(x_1453); +x_1454 = l_Lean_addMacroScope(x_1450, x_1453, x_1428); +lean_inc(x_6); +x_1455 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1455, 0, x_1453); +lean_ctor_set(x_1455, 1, x_6); +lean_inc(x_7); +x_1456 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1456, 0, x_1455); +lean_ctor_set(x_1456, 1, x_7); +x_1457 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__1___closed__3; +lean_inc(x_2); +x_1458 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1458, 0, x_2); +lean_ctor_set(x_1458, 1, x_1457); +lean_ctor_set(x_1458, 2, x_1454); +lean_ctor_set(x_1458, 3, x_1456); +x_1459 = l_Array_empty___closed__1; +x_1460 = lean_array_push(x_1459, x_1458); +x_1461 = lean_array_push(x_1459, x_13); +x_1462 = l_Lean_Syntax_getAntiquotTerm(x_1295); +lean_dec(x_1295); +x_1463 = lean_array_push(x_1461, x_1462); +x_1464 = l_Lean_nullKind___closed__2; +x_1465 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1465, 0, x_1464); +lean_ctor_set(x_1465, 1, x_1463); +x_1466 = lean_array_push(x_1460, x_1465); +x_1467 = l_myMacro____x40_Init_Notation___hyg_1625____closed__4; +x_1468 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1468, 0, x_1467); +lean_ctor_set(x_1468, 1, x_1466); +x_1469 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1469, 0, x_1468); +lean_ctor_set(x_1469, 1, x_1451); +x_21 = x_1469; +goto block_31; +} +} +} +else +{ +lean_object* x_1470; lean_object* x_1471; lean_object* x_1472; lean_object* x_1473; uint8_t x_1474; +lean_dec(x_1301); +lean_dec(x_1299); +lean_dec(x_33); +x_1470 = l_Lean_Elab_Term_getCurrMacroScope(x_14, x_15, x_16, x_17, x_18, x_19, x_20); +x_1471 = lean_ctor_get(x_1470, 0); +lean_inc(x_1471); +x_1472 = lean_ctor_get(x_1470, 1); +lean_inc(x_1472); +lean_dec(x_1470); +x_1473 = l_Lean_Elab_Term_getMainModule___rarg(x_19, x_1472); +x_1474 = !lean_is_exclusive(x_1473); +if (x_1474 == 0) +{ +lean_object* x_1475; lean_object* x_1476; lean_object* x_1477; lean_object* x_1478; 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; lean_object* x_1487; lean_object* x_1488; lean_object* x_1489; lean_object* x_1490; lean_object* x_1491; lean_object* x_1492; lean_object* x_1493; lean_object* x_1494; lean_object* x_1495; lean_object* x_1496; lean_object* x_1497; lean_object* x_1498; lean_object* x_1499; lean_object* x_1500; lean_object* x_1501; lean_object* x_1502; lean_object* x_1503; lean_object* x_1504; lean_object* x_1505; lean_object* x_1506; lean_object* x_1507; lean_object* x_1508; lean_object* x_1509; lean_object* x_1510; lean_object* x_1511; lean_object* x_1512; lean_object* x_1513; lean_object* x_1514; lean_object* x_1515; lean_object* x_1516; lean_object* x_1517; lean_object* x_1518; lean_object* x_1519; lean_object* x_1520; lean_object* x_1521; lean_object* x_1522; lean_object* x_1523; lean_object* x_1524; lean_object* x_1525; lean_object* x_1526; lean_object* x_1527; lean_object* x_1528; lean_object* x_1529; lean_object* x_1530; lean_object* x_1531; lean_object* x_1532; lean_object* x_1533; lean_object* x_1534; lean_object* x_1535; lean_object* x_1536; lean_object* x_1537; lean_object* x_1538; lean_object* x_1539; lean_object* x_1540; lean_object* x_1541; lean_object* x_1542; lean_object* x_1543; lean_object* x_1544; lean_object* x_1545; lean_object* x_1546; lean_object* x_1547; lean_object* x_1548; lean_object* x_1549; lean_object* x_1550; lean_object* x_1551; lean_object* x_1552; lean_object* x_1553; lean_object* x_1554; lean_object* x_1555; lean_object* x_1556; lean_object* x_1557; lean_object* x_1558; lean_object* x_1559; lean_object* x_1560; lean_object* x_1561; lean_object* x_1562; lean_object* x_1563; lean_object* x_1564; lean_object* x_1565; lean_object* x_1566; lean_object* x_1567; lean_object* x_1568; lean_object* x_1569; lean_object* x_1570; lean_object* x_1571; lean_object* x_1572; lean_object* x_1573; lean_object* x_1574; lean_object* x_1575; lean_object* x_1576; lean_object* x_1577; lean_object* x_1578; lean_object* x_1579; lean_object* x_1580; lean_object* x_1581; lean_object* x_1582; lean_object* x_1583; lean_object* x_1584; lean_object* x_1585; +x_1475 = lean_ctor_get(x_1473, 0); +x_1476 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__1___closed__4; +lean_inc(x_4); +x_1477 = lean_name_mk_string(x_4, x_1476); +lean_inc(x_1471); +lean_inc(x_1477); +lean_inc(x_1475); +x_1478 = l_Lean_addMacroScope(x_1475, x_1477, x_1471); +lean_inc(x_6); +x_1479 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1479, 0, x_1477); +lean_ctor_set(x_1479, 1, x_6); +lean_inc(x_7); +x_1480 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1480, 0, x_1479); +lean_ctor_set(x_1480, 1, x_7); +x_1481 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__1___closed__3; +lean_inc(x_2); +x_1482 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1482, 0, x_2); +lean_ctor_set(x_1482, 1, x_1481); +lean_ctor_set(x_1482, 2, x_1478); +lean_ctor_set(x_1482, 3, x_1480); +x_1483 = l_Array_empty___closed__1; +x_1484 = lean_array_push(x_1483, x_1482); +x_1485 = lean_array_push(x_1483, x_13); +x_1486 = l_myMacro____x40_Init_Notation___hyg_49____closed__13; +lean_inc(x_2); +x_1487 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1487, 0, x_2); +lean_ctor_set(x_1487, 1, x_1486); +x_1488 = lean_array_push(x_1483, x_1487); +x_1489 = l_Lean_Parser_Tactic_match___closed__1; +lean_inc(x_2); +x_1490 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1490, 0, x_2); +lean_ctor_set(x_1490, 1, x_1489); +x_1491 = lean_array_push(x_1483, x_1490); +x_1492 = l_Lean_Syntax_getAntiquotTerm(x_1295); +lean_dec(x_1295); +x_1493 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_261____closed__19; +x_1494 = lean_array_push(x_1493, x_1492); +x_1495 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__14; +x_1496 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1496, 0, x_1495); +lean_ctor_set(x_1496, 1, x_1494); +x_1497 = lean_array_push(x_1483, x_1496); +x_1498 = l_Lean_nullKind___closed__2; +x_1499 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1499, 0, x_1498); +lean_ctor_set(x_1499, 1, x_1497); +x_1500 = lean_array_push(x_1491, x_1499); +x_1501 = l_myMacro____x40_Init_Notation___hyg_521____closed__23; +x_1502 = lean_array_push(x_1500, x_1501); +x_1503 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__15; +lean_inc(x_2); +x_1504 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1504, 0, x_2); +lean_ctor_set(x_1504, 1, x_1503); +x_1505 = lean_array_push(x_1502, x_1504); +x_1506 = l_term_x25_x5b___x7c___x5d___closed__6; +lean_inc(x_2); +x_1507 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1507, 0, x_2); +lean_ctor_set(x_1507, 1, x_1506); +lean_inc(x_1507); +x_1508 = lean_array_push(x_1483, x_1507); +x_1509 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1509, 0, x_1498); +lean_ctor_set(x_1509, 1, x_1508); +x_1510 = lean_array_push(x_1483, x_1509); +x_1511 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__20; +lean_inc(x_1471); +lean_inc(x_1475); +x_1512 = l_Lean_addMacroScope(x_1475, x_1511, x_1471); +x_1513 = l___private_Init_Meta_0__Lean_quoteOption___rarg___closed__6; +lean_inc(x_6); +x_1514 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1514, 0, x_1513); +lean_ctor_set(x_1514, 1, x_6); +lean_inc(x_7); +x_1515 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1515, 0, x_1514); +lean_ctor_set(x_1515, 1, x_7); +x_1516 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__19; +lean_inc(x_2); +x_1517 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1517, 0, x_2); +lean_ctor_set(x_1517, 1, x_1516); +lean_ctor_set(x_1517, 2, x_1512); +lean_ctor_set(x_1517, 3, x_1515); +x_1518 = lean_array_push(x_1483, x_1517); +x_1519 = l_Lean_Meta_mkArrow___closed__2; +lean_inc(x_1471); +lean_inc(x_1475); +x_1520 = l_Lean_addMacroScope(x_1475, x_1519, x_1471); +x_1521 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__45; +lean_inc(x_7); +lean_inc(x_2); +x_1522 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1522, 0, x_2); +lean_ctor_set(x_1522, 1, x_1521); +lean_ctor_set(x_1522, 2, x_1520); +lean_ctor_set(x_1522, 3, x_7); +x_1523 = lean_array_push(x_1483, x_1522); +x_1524 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1524, 0, x_1498); +lean_ctor_set(x_1524, 1, x_1523); +lean_inc(x_1524); +x_1525 = lean_array_push(x_1518, x_1524); +x_1526 = l_myMacro____x40_Init_Notation___hyg_1625____closed__4; +x_1527 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1527, 0, x_1526); +lean_ctor_set(x_1527, 1, x_1525); +x_1528 = lean_array_push(x_1483, x_1527); +x_1529 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1529, 0, x_1498); +lean_ctor_set(x_1529, 1, x_1528); +x_1530 = lean_array_push(x_1483, x_1529); +x_1531 = l_myMacro____x40_Init_Notation___hyg_10790____closed__16; +lean_inc(x_2); +x_1532 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1532, 0, x_2); +lean_ctor_set(x_1532, 1, x_1531); +lean_inc(x_1532); +x_1533 = lean_array_push(x_1530, x_1532); +x_1534 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__4; +lean_inc(x_5); +x_1535 = lean_name_mk_string(x_5, x_1534); +lean_inc(x_1471); +lean_inc(x_1475); +x_1536 = l_Lean_addMacroScope(x_1475, x_1535, x_1471); +lean_inc(x_6); +x_1537 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1537, 0, x_1534); +lean_ctor_set(x_1537, 1, x_6); +lean_inc(x_5); +x_1538 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1538, 0, x_5); +lean_ctor_set(x_1538, 1, x_1537); +lean_inc(x_7); +x_1539 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1539, 0, x_1538); +lean_ctor_set(x_1539, 1, x_7); +x_1540 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__48; +lean_inc(x_2); +x_1541 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1541, 0, x_2); +lean_ctor_set(x_1541, 1, x_1540); +lean_ctor_set(x_1541, 2, x_1536); +lean_ctor_set(x_1541, 3, x_1539); +x_1542 = lean_array_push(x_1483, x_1541); +x_1543 = lean_array_push(x_1542, x_1524); +x_1544 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1544, 0, x_1526); +lean_ctor_set(x_1544, 1, x_1543); +x_1545 = lean_array_push(x_1533, x_1544); +x_1546 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__17; +x_1547 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1547, 0, x_1546); +lean_ctor_set(x_1547, 1, x_1545); +x_1548 = lean_array_push(x_1483, x_1547); +x_1549 = lean_array_push(x_1548, x_1507); +x_1550 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__26; +lean_inc(x_1471); +lean_inc(x_1475); +x_1551 = l_Lean_addMacroScope(x_1475, x_1550, x_1471); +x_1552 = l___private_Init_Meta_0__Lean_quoteOption___rarg___closed__3; +lean_inc(x_6); +x_1553 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1553, 0, x_1552); +lean_ctor_set(x_1553, 1, x_6); +lean_inc(x_7); +x_1554 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1554, 0, x_1553); +lean_ctor_set(x_1554, 1, x_7); +x_1555 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__25; +lean_inc(x_2); +x_1556 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1556, 0, x_2); +lean_ctor_set(x_1556, 1, x_1555); +lean_ctor_set(x_1556, 2, x_1551); +lean_ctor_set(x_1556, 3, x_1554); +x_1557 = lean_array_push(x_1483, x_1556); +x_1558 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1558, 0, x_1498); +lean_ctor_set(x_1558, 1, x_1557); +x_1559 = lean_array_push(x_1483, x_1558); +x_1560 = lean_array_push(x_1559, x_1532); +lean_inc(x_5); +x_1561 = l_Lean_addMacroScope(x_1475, x_5, x_1471); +lean_inc(x_8); +lean_inc(x_3); +lean_inc(x_2); +x_1562 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1562, 0, x_2); +lean_ctor_set(x_1562, 1, x_3); +lean_ctor_set(x_1562, 2, x_1561); +lean_ctor_set(x_1562, 3, x_8); +x_1563 = lean_array_push(x_1560, x_1562); +x_1564 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1564, 0, x_1546); +lean_ctor_set(x_1564, 1, x_1563); +x_1565 = lean_array_push(x_1549, x_1564); +x_1566 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1566, 0, x_1498); +lean_ctor_set(x_1566, 1, x_1565); +x_1567 = lean_array_push(x_1510, x_1566); +x_1568 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__16; +x_1569 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1569, 0, x_1568); +lean_ctor_set(x_1569, 1, x_1567); +x_1570 = lean_array_push(x_1505, x_1569); +x_1571 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__13; +x_1572 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1572, 0, x_1571); +lean_ctor_set(x_1572, 1, x_1570); +x_1573 = lean_array_push(x_1483, x_1572); +x_1574 = lean_array_push(x_1573, x_1501); +x_1575 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1575, 0, x_1498); +lean_ctor_set(x_1575, 1, x_1574); +x_1576 = lean_array_push(x_1488, x_1575); +x_1577 = l_myMacro____x40_Init_Notation___hyg_49____closed__15; +lean_inc(x_2); +x_1578 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1578, 0, x_2); +lean_ctor_set(x_1578, 1, x_1577); +x_1579 = lean_array_push(x_1576, x_1578); +x_1580 = l_myMacro____x40_Init_Notation___hyg_10790____closed__8; +x_1581 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1581, 0, x_1580); +lean_ctor_set(x_1581, 1, x_1579); +x_1582 = lean_array_push(x_1485, x_1581); +x_1583 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1583, 0, x_1498); +lean_ctor_set(x_1583, 1, x_1582); +x_1584 = lean_array_push(x_1484, x_1583); +x_1585 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1585, 0, x_1526); +lean_ctor_set(x_1585, 1, x_1584); +lean_ctor_set(x_1473, 0, x_1585); +x_21 = x_1473; +goto block_31; +} +else +{ +lean_object* x_1586; lean_object* x_1587; lean_object* x_1588; lean_object* x_1589; lean_object* x_1590; lean_object* x_1591; lean_object* x_1592; lean_object* x_1593; lean_object* x_1594; lean_object* x_1595; lean_object* x_1596; lean_object* x_1597; lean_object* x_1598; lean_object* x_1599; lean_object* x_1600; lean_object* x_1601; lean_object* x_1602; lean_object* x_1603; lean_object* x_1604; lean_object* x_1605; lean_object* x_1606; lean_object* x_1607; lean_object* x_1608; lean_object* x_1609; lean_object* x_1610; lean_object* x_1611; lean_object* x_1612; lean_object* x_1613; lean_object* x_1614; lean_object* x_1615; lean_object* x_1616; lean_object* x_1617; lean_object* x_1618; lean_object* x_1619; lean_object* x_1620; lean_object* x_1621; lean_object* x_1622; lean_object* x_1623; lean_object* x_1624; lean_object* x_1625; lean_object* x_1626; lean_object* x_1627; lean_object* x_1628; lean_object* x_1629; lean_object* x_1630; lean_object* x_1631; lean_object* x_1632; lean_object* x_1633; lean_object* x_1634; lean_object* x_1635; lean_object* x_1636; lean_object* x_1637; lean_object* x_1638; lean_object* x_1639; lean_object* x_1640; lean_object* x_1641; lean_object* x_1642; lean_object* x_1643; lean_object* x_1644; lean_object* x_1645; lean_object* x_1646; lean_object* x_1647; lean_object* x_1648; lean_object* x_1649; lean_object* x_1650; lean_object* x_1651; lean_object* x_1652; lean_object* x_1653; lean_object* x_1654; lean_object* x_1655; lean_object* x_1656; lean_object* x_1657; lean_object* x_1658; lean_object* x_1659; lean_object* x_1660; lean_object* x_1661; lean_object* x_1662; lean_object* x_1663; lean_object* x_1664; lean_object* x_1665; lean_object* x_1666; lean_object* x_1667; lean_object* x_1668; lean_object* x_1669; lean_object* x_1670; lean_object* x_1671; lean_object* x_1672; lean_object* x_1673; lean_object* x_1674; lean_object* x_1675; lean_object* x_1676; lean_object* x_1677; lean_object* x_1678; lean_object* x_1679; lean_object* x_1680; lean_object* x_1681; lean_object* x_1682; lean_object* x_1683; lean_object* x_1684; lean_object* x_1685; lean_object* x_1686; lean_object* x_1687; lean_object* x_1688; lean_object* x_1689; lean_object* x_1690; lean_object* x_1691; lean_object* x_1692; lean_object* x_1693; lean_object* x_1694; lean_object* x_1695; lean_object* x_1696; lean_object* x_1697; lean_object* x_1698; +x_1586 = lean_ctor_get(x_1473, 0); +x_1587 = lean_ctor_get(x_1473, 1); +lean_inc(x_1587); +lean_inc(x_1586); +lean_dec(x_1473); +x_1588 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__1___closed__4; +lean_inc(x_4); +x_1589 = lean_name_mk_string(x_4, x_1588); +lean_inc(x_1471); +lean_inc(x_1589); +lean_inc(x_1586); +x_1590 = l_Lean_addMacroScope(x_1586, x_1589, x_1471); +lean_inc(x_6); +x_1591 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1591, 0, x_1589); +lean_ctor_set(x_1591, 1, x_6); +lean_inc(x_7); +x_1592 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1592, 0, x_1591); +lean_ctor_set(x_1592, 1, x_7); +x_1593 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__1___closed__3; +lean_inc(x_2); +x_1594 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1594, 0, x_2); +lean_ctor_set(x_1594, 1, x_1593); +lean_ctor_set(x_1594, 2, x_1590); +lean_ctor_set(x_1594, 3, x_1592); +x_1595 = l_Array_empty___closed__1; +x_1596 = lean_array_push(x_1595, x_1594); +x_1597 = lean_array_push(x_1595, x_13); +x_1598 = l_myMacro____x40_Init_Notation___hyg_49____closed__13; +lean_inc(x_2); +x_1599 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1599, 0, x_2); +lean_ctor_set(x_1599, 1, x_1598); +x_1600 = lean_array_push(x_1595, x_1599); +x_1601 = l_Lean_Parser_Tactic_match___closed__1; +lean_inc(x_2); +x_1602 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1602, 0, x_2); +lean_ctor_set(x_1602, 1, x_1601); +x_1603 = lean_array_push(x_1595, x_1602); +x_1604 = l_Lean_Syntax_getAntiquotTerm(x_1295); +lean_dec(x_1295); +x_1605 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_261____closed__19; +x_1606 = lean_array_push(x_1605, x_1604); +x_1607 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__14; +x_1608 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1608, 0, x_1607); +lean_ctor_set(x_1608, 1, x_1606); +x_1609 = lean_array_push(x_1595, x_1608); +x_1610 = l_Lean_nullKind___closed__2; +x_1611 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1611, 0, x_1610); +lean_ctor_set(x_1611, 1, x_1609); +x_1612 = lean_array_push(x_1603, x_1611); +x_1613 = l_myMacro____x40_Init_Notation___hyg_521____closed__23; +x_1614 = lean_array_push(x_1612, x_1613); +x_1615 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__15; +lean_inc(x_2); +x_1616 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1616, 0, x_2); +lean_ctor_set(x_1616, 1, x_1615); +x_1617 = lean_array_push(x_1614, x_1616); +x_1618 = l_term_x25_x5b___x7c___x5d___closed__6; +lean_inc(x_2); +x_1619 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1619, 0, x_2); +lean_ctor_set(x_1619, 1, x_1618); +lean_inc(x_1619); +x_1620 = lean_array_push(x_1595, x_1619); +x_1621 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1621, 0, x_1610); +lean_ctor_set(x_1621, 1, x_1620); +x_1622 = lean_array_push(x_1595, x_1621); +x_1623 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__20; +lean_inc(x_1471); +lean_inc(x_1586); +x_1624 = l_Lean_addMacroScope(x_1586, x_1623, x_1471); +x_1625 = l___private_Init_Meta_0__Lean_quoteOption___rarg___closed__6; +lean_inc(x_6); +x_1626 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1626, 0, x_1625); +lean_ctor_set(x_1626, 1, x_6); +lean_inc(x_7); +x_1627 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1627, 0, x_1626); +lean_ctor_set(x_1627, 1, x_7); +x_1628 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__19; +lean_inc(x_2); +x_1629 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1629, 0, x_2); +lean_ctor_set(x_1629, 1, x_1628); +lean_ctor_set(x_1629, 2, x_1624); +lean_ctor_set(x_1629, 3, x_1627); +x_1630 = lean_array_push(x_1595, x_1629); +x_1631 = l_Lean_Meta_mkArrow___closed__2; +lean_inc(x_1471); +lean_inc(x_1586); +x_1632 = l_Lean_addMacroScope(x_1586, x_1631, x_1471); +x_1633 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__45; +lean_inc(x_7); +lean_inc(x_2); +x_1634 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1634, 0, x_2); +lean_ctor_set(x_1634, 1, x_1633); +lean_ctor_set(x_1634, 2, x_1632); +lean_ctor_set(x_1634, 3, x_7); +x_1635 = lean_array_push(x_1595, x_1634); +x_1636 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1636, 0, x_1610); +lean_ctor_set(x_1636, 1, x_1635); +lean_inc(x_1636); +x_1637 = lean_array_push(x_1630, x_1636); +x_1638 = l_myMacro____x40_Init_Notation___hyg_1625____closed__4; +x_1639 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1639, 0, x_1638); +lean_ctor_set(x_1639, 1, x_1637); +x_1640 = lean_array_push(x_1595, x_1639); +x_1641 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1641, 0, x_1610); +lean_ctor_set(x_1641, 1, x_1640); +x_1642 = lean_array_push(x_1595, x_1641); +x_1643 = l_myMacro____x40_Init_Notation___hyg_10790____closed__16; +lean_inc(x_2); +x_1644 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1644, 0, x_2); +lean_ctor_set(x_1644, 1, x_1643); +lean_inc(x_1644); +x_1645 = lean_array_push(x_1642, x_1644); +x_1646 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__4; +lean_inc(x_5); +x_1647 = lean_name_mk_string(x_5, x_1646); +lean_inc(x_1471); +lean_inc(x_1586); +x_1648 = l_Lean_addMacroScope(x_1586, x_1647, x_1471); +lean_inc(x_6); +x_1649 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1649, 0, x_1646); +lean_ctor_set(x_1649, 1, x_6); +lean_inc(x_5); +x_1650 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1650, 0, x_5); +lean_ctor_set(x_1650, 1, x_1649); +lean_inc(x_7); +x_1651 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1651, 0, x_1650); +lean_ctor_set(x_1651, 1, x_7); +x_1652 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__48; +lean_inc(x_2); +x_1653 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1653, 0, x_2); +lean_ctor_set(x_1653, 1, x_1652); +lean_ctor_set(x_1653, 2, x_1648); +lean_ctor_set(x_1653, 3, x_1651); +x_1654 = lean_array_push(x_1595, x_1653); +x_1655 = lean_array_push(x_1654, x_1636); +x_1656 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1656, 0, x_1638); +lean_ctor_set(x_1656, 1, x_1655); +x_1657 = lean_array_push(x_1645, x_1656); +x_1658 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__17; +x_1659 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1659, 0, x_1658); +lean_ctor_set(x_1659, 1, x_1657); +x_1660 = lean_array_push(x_1595, x_1659); +x_1661 = lean_array_push(x_1660, x_1619); +x_1662 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__26; +lean_inc(x_1471); +lean_inc(x_1586); +x_1663 = l_Lean_addMacroScope(x_1586, x_1662, x_1471); +x_1664 = l___private_Init_Meta_0__Lean_quoteOption___rarg___closed__3; +lean_inc(x_6); +x_1665 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1665, 0, x_1664); +lean_ctor_set(x_1665, 1, x_6); +lean_inc(x_7); +x_1666 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1666, 0, x_1665); +lean_ctor_set(x_1666, 1, x_7); +x_1667 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__25; +lean_inc(x_2); +x_1668 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1668, 0, x_2); +lean_ctor_set(x_1668, 1, x_1667); +lean_ctor_set(x_1668, 2, x_1663); +lean_ctor_set(x_1668, 3, x_1666); +x_1669 = lean_array_push(x_1595, x_1668); +x_1670 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1670, 0, x_1610); +lean_ctor_set(x_1670, 1, x_1669); +x_1671 = lean_array_push(x_1595, x_1670); +x_1672 = lean_array_push(x_1671, x_1644); +lean_inc(x_5); +x_1673 = l_Lean_addMacroScope(x_1586, x_5, x_1471); +lean_inc(x_8); +lean_inc(x_3); +lean_inc(x_2); +x_1674 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1674, 0, x_2); +lean_ctor_set(x_1674, 1, x_3); +lean_ctor_set(x_1674, 2, x_1673); +lean_ctor_set(x_1674, 3, x_8); +x_1675 = lean_array_push(x_1672, x_1674); +x_1676 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1676, 0, x_1658); +lean_ctor_set(x_1676, 1, x_1675); +x_1677 = lean_array_push(x_1661, x_1676); +x_1678 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1678, 0, x_1610); +lean_ctor_set(x_1678, 1, x_1677); +x_1679 = lean_array_push(x_1622, x_1678); +x_1680 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__16; +x_1681 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1681, 0, x_1680); +lean_ctor_set(x_1681, 1, x_1679); +x_1682 = lean_array_push(x_1617, x_1681); +x_1683 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__13; +x_1684 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1684, 0, x_1683); +lean_ctor_set(x_1684, 1, x_1682); +x_1685 = lean_array_push(x_1595, x_1684); +x_1686 = lean_array_push(x_1685, x_1613); +x_1687 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1687, 0, x_1610); +lean_ctor_set(x_1687, 1, x_1686); +x_1688 = lean_array_push(x_1600, x_1687); +x_1689 = l_myMacro____x40_Init_Notation___hyg_49____closed__15; +lean_inc(x_2); +x_1690 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1690, 0, x_2); +lean_ctor_set(x_1690, 1, x_1689); +x_1691 = lean_array_push(x_1688, x_1690); +x_1692 = l_myMacro____x40_Init_Notation___hyg_10790____closed__8; +x_1693 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1693, 0, x_1692); +lean_ctor_set(x_1693, 1, x_1691); +x_1694 = lean_array_push(x_1597, x_1693); +x_1695 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1695, 0, x_1610); +lean_ctor_set(x_1695, 1, x_1694); +x_1696 = lean_array_push(x_1596, x_1695); +x_1697 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1697, 0, x_1638); +lean_ctor_set(x_1697, 1, x_1696); +x_1698 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1698, 0, x_1697); +lean_ctor_set(x_1698, 1, x_1587); +x_21 = x_1698; +goto block_31; +} +} +} +else +{ +lean_object* x_1699; lean_object* x_1700; lean_object* x_1701; lean_object* x_1702; lean_object* x_1703; lean_object* x_1704; lean_object* x_1705; lean_object* x_1706; lean_object* x_1707; lean_object* x_1708; +lean_dec(x_1300); +lean_dec(x_1295); +lean_dec(x_13); +x_1699 = lean_alloc_ctor(4, 1, 0); +lean_ctor_set(x_1699, 0, x_1299); +x_1700 = l_Lean_instToMessageDataOption___rarg___closed__3; +x_1701 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_1701, 0, x_1700); +lean_ctor_set(x_1701, 1, x_1699); +x_1702 = l_Lean_instToMessageDataOption___rarg___closed__4; +x_1703 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_1703, 0, x_1701); +lean_ctor_set(x_1703, 1, x_1702); +x_1704 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__31; +x_1705 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_1705, 0, x_1704); +lean_ctor_set(x_1705, 1, x_1703); +x_1706 = l_Lean_KernelException_toMessageData___closed__3; +x_1707 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_1707, 0, x_1705); +lean_ctor_set(x_1707, 1, x_1706); +lean_inc(x_18); +lean_inc(x_14); +x_1708 = l_Lean_throwErrorAt___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabTermAux___spec__1___rarg(x_33, x_1707, x_14, x_15, x_16, x_17, x_18, x_19, x_20); +lean_dec(x_33); +x_21 = x_1708; +goto block_31; +} +} +else +{ +lean_object* x_1709; lean_object* x_1710; lean_object* x_1711; lean_object* x_1712; lean_object* x_1713; lean_object* x_1714; lean_object* x_1715; lean_object* x_1716; lean_object* x_1717; lean_object* x_1718; +lean_dec(x_1295); +lean_dec(x_13); +x_1709 = lean_alloc_ctor(4, 1, 0); +lean_ctor_set(x_1709, 0, x_1299); +x_1710 = l_Lean_instToMessageDataOption___rarg___closed__3; +x_1711 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_1711, 0, x_1710); +lean_ctor_set(x_1711, 1, x_1709); +x_1712 = l_Lean_instToMessageDataOption___rarg___closed__4; +x_1713 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_1713, 0, x_1711); +lean_ctor_set(x_1713, 1, x_1712); +x_1714 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__31; +x_1715 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_1715, 0, x_1714); +lean_ctor_set(x_1715, 1, x_1713); +x_1716 = l_Lean_KernelException_toMessageData___closed__3; +x_1717 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_1717, 0, x_1715); +lean_ctor_set(x_1717, 1, x_1716); +lean_inc(x_18); +lean_inc(x_14); +x_1718 = l_Lean_throwErrorAt___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabTermAux___spec__1___rarg(x_33, x_1717, x_14, x_15, x_16, x_17, x_18, x_19, x_20); +lean_dec(x_33); +x_21 = x_1718; +goto block_31; +} +} } } block_83: @@ -6179,7 +7297,7 @@ goto block_31; } else { -lean_object* x_1337; +lean_object* x_1719; lean_dec(x_19); lean_dec(x_18); lean_dec(x_17); @@ -6193,10 +7311,10 @@ lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); -x_1337 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1337, 0, x_13); -lean_ctor_set(x_1337, 1, x_20); -return x_1337; +x_1719 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1719, 0, x_13); +lean_ctor_set(x_1719, 1, x_20); +return x_1719; } block_31: { @@ -6321,17 +7439,25 @@ return x_18; static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__1() { _start: { +lean_object* x_1; +x_1 = lean_mk_string("_private.Lean.Elab.Quotation.0.Lean.Elab.Term.Quotation.quoteSyntax"); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__2() { +_start: +{ 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 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__1; -x_2 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__2; -x_3 = lean_unsigned_to_nat(88u); +x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepFromSplice___closed__2; +x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__1; +x_3 = lean_unsigned_to_nat(98u); x_4 = lean_unsigned_to_nat(22u); x_5 = l_Lean_Syntax_strLitToAtom___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); return x_6; } } -static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__2() { +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__3() { _start: { lean_object* x_1; @@ -6339,22 +7465,22 @@ x_1 = lean_mk_string("Array.empty"); return x_1; } } -static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__3() { +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__4() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__2; +x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__3; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__4() { +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__2; +x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__3; x_2 = lean_unsigned_to_nat(0u); -x_3 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__3; +x_3 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__4; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -6362,7 +7488,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__5() { +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__6() { _start: { lean_object* x_1; @@ -6370,25 +7496,13 @@ x_1 = lean_mk_string("empty"); return x_1; } } -static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Array_term_____x5b___x3a___x5d___closed__2; -x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__5; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; -} -} static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); +x_1 = l_Array_term_____x5b___x3a___x5d___closed__2; x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___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); +x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } @@ -6398,7 +7512,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__7; -x_3 = lean_alloc_ctor(1, 2, 0); +x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; @@ -6407,27 +7521,39 @@ return x_3; static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__9() { _start: { -lean_object* x_1; -x_1 = lean_mk_string("Syntax.node"); -return x_1; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___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; } } static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__10() { _start: { -lean_object* x_1; lean_object* x_2; -x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__9; -x_2 = lean_string_utf8_byte_size(x_1); -return x_2; +lean_object* x_1; +x_1 = lean_mk_string("Syntax.node"); +return x_1; } } static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__11() { _start: { +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__10; +x_2 = lean_string_utf8_byte_size(x_1); +return x_2; +} +} +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__12() { +_start: +{ lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__9; +x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__10; x_2 = lean_unsigned_to_nat(0u); -x_3 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__10; +x_3 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___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); @@ -6435,7 +7561,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__12() { +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__13() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -6445,21 +7571,11 @@ x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__13() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__12; -x_2 = l_Lean_Meta_DiscrTree_Trie_format___rarg___closed__1; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; -} -} static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__14() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Elab_Util_0__Lean_Elab_evalSyntaxConstantUnsafe___closed__1; +x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__13; x_2 = l_Lean_Meta_DiscrTree_Trie_format___rarg___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -6469,11 +7585,9 @@ static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quot _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__14; -x_3 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_3, 0, x_2); -lean_ctor_set(x_3, 1, x_1); +x_1 = l___private_Lean_Elab_Util_0__Lean_Elab_evalSyntaxConstantUnsafe___closed__1; +x_2 = l_Lean_Meta_DiscrTree_Trie_format___rarg___closed__1; +x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } @@ -6483,7 +7597,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__15; -x_3 = lean_alloc_ctor(1, 2, 0); +x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; @@ -6492,19 +7606,21 @@ return x_3; static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__17() { _start: { -lean_object* x_1; -x_1 = lean_mk_string("unexpected antiquotation splice"); -return x_1; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___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; } } static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__18() { _start: { -lean_object* x_1; lean_object* x_2; -x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__17; -x_2 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_2, 0, x_1); -return x_2; +lean_object* x_1; +x_1 = lean_mk_string("unexpected antiquotation splice"); +return x_1; } } static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__19() { @@ -6512,7 +7628,7 @@ _start: { lean_object* x_1; lean_object* x_2; x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__18; -x_2 = lean_alloc_ctor(0, 1, 0); +x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } @@ -6520,27 +7636,37 @@ return x_2; static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__20() { _start: { -lean_object* x_1; -x_1 = lean_mk_string("Syntax.atom"); -return x_1; +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__19; +x_2 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; } } static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__21() { _start: { -lean_object* x_1; lean_object* x_2; -x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__20; -x_2 = lean_string_utf8_byte_size(x_1); -return x_2; +lean_object* x_1; +x_1 = lean_mk_string("Syntax.atom"); +return x_1; } } static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__22() { _start: { +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__21; +x_2 = lean_string_utf8_byte_size(x_1); +return x_2; +} +} +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__23() { +_start: +{ lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__20; +x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__21; x_2 = lean_unsigned_to_nat(0u); -x_3 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__21; +x_3 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__22; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -6548,21 +7674,11 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__23() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__12; -x_2 = l_myMacro____x40_Init_Notation___hyg_521____closed__11; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; -} -} static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__24() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Elab_Util_0__Lean_Elab_evalSyntaxConstantUnsafe___closed__1; +x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__13; x_2 = l_myMacro____x40_Init_Notation___hyg_521____closed__11; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -6572,11 +7688,9 @@ static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quot _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__24; -x_3 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_3, 0, x_2); -lean_ctor_set(x_3, 1, x_1); +x_1 = l___private_Lean_Elab_Util_0__Lean_Elab_evalSyntaxConstantUnsafe___closed__1; +x_2 = l_myMacro____x40_Init_Notation___hyg_521____closed__11; +x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } @@ -6586,7 +7700,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__25; -x_3 = lean_alloc_ctor(1, 2, 0); +x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; @@ -6595,27 +7709,39 @@ return x_3; static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__27() { _start: { -lean_object* x_1; -x_1 = lean_mk_string("SourceInfo.mk"); -return x_1; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__26; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; } } static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__28() { _start: { -lean_object* x_1; lean_object* x_2; -x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__27; -x_2 = lean_string_utf8_byte_size(x_1); -return x_2; +lean_object* x_1; +x_1 = lean_mk_string("SourceInfo.mk"); +return x_1; } } static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__29() { _start: { +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__28; +x_2 = lean_string_utf8_byte_size(x_1); +return x_2; +} +} +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__30() { +_start: +{ lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__27; +x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__28; x_2 = lean_unsigned_to_nat(0u); -x_3 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__28; +x_3 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___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); @@ -6623,7 +7749,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__30() { +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__31() { _start: { lean_object* x_1; @@ -6631,22 +7757,12 @@ x_1 = lean_mk_string("SourceInfo"); return x_1; } } -static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__31() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__30; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; -} -} static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__32() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__31; -x_2 = l_Lean_instQuoteProd___rarg___closed__1; +x_1 = lean_box(0); +x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__31; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } @@ -6655,8 +7771,8 @@ static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quot _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Notation___hyg_49____closed__2; -x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__30; +x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__32; +x_2 = l_Lean_instQuoteProd___rarg___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } @@ -6665,8 +7781,8 @@ static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quot _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__33; -x_2 = l_Lean_instQuoteProd___rarg___closed__1; +x_1 = l_myMacro____x40_Init_Notation___hyg_49____closed__2; +x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__31; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } @@ -6675,11 +7791,9 @@ static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quot _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___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); +x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__34; +x_2 = l_Lean_instQuoteProd___rarg___closed__1; +x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } @@ -6689,7 +7803,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__35; -x_3 = lean_alloc_ctor(1, 2, 0); +x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; @@ -6700,6 +7814,18 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); +x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__36; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; +} +} +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___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_Meta_0__Lean_quoteOption___rarg___closed__3; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); @@ -6707,19 +7833,19 @@ lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__38() { +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__39() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__37; +x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__38; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__39() { +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__40() { _start: { lean_object* x_1; @@ -6727,22 +7853,22 @@ x_1 = lean_mk_string("Syntax.ident"); return x_1; } } -static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__40() { +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__41() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__39; +x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__40; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__41() { +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__42() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__39; +x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__40; x_2 = lean_unsigned_to_nat(0u); -x_3 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__40; +x_3 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__41; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -6750,21 +7876,11 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__42() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__12; -x_2 = l_Lean_identKind___closed__1; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; -} -} static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__43() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Elab_Util_0__Lean_Elab_evalSyntaxConstantUnsafe___closed__1; +x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__13; x_2 = l_Lean_identKind___closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -6774,11 +7890,9 @@ static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quot _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___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); +x_1 = l___private_Lean_Elab_Util_0__Lean_Elab_evalSyntaxConstantUnsafe___closed__1; +x_2 = l_Lean_identKind___closed__1; +x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } @@ -6788,7 +7902,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__44; -x_3 = lean_alloc_ctor(1, 2, 0); +x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; @@ -6797,27 +7911,39 @@ return x_3; static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__46() { _start: { -lean_object* x_1; -x_1 = lean_mk_string("addMacroScope"); -return x_1; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__45; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; } } static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__47() { _start: { -lean_object* x_1; lean_object* x_2; -x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__46; -x_2 = lean_string_utf8_byte_size(x_1); -return x_2; +lean_object* x_1; +x_1 = lean_mk_string("addMacroScope"); +return x_1; } } static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__48() { _start: { +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__47; +x_2 = lean_string_utf8_byte_size(x_1); +return x_2; +} +} +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__49() { +_start: +{ lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__46; +x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__47; x_2 = lean_unsigned_to_nat(0u); -x_3 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__47; +x_3 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__48; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -6825,22 +7951,12 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__49() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__46; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; -} -} static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__50() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_myMacro____x40_Init_Notation___hyg_49____closed__2; -x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__46; +x_1 = lean_box(0); +x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__47; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } @@ -6849,11 +7965,9 @@ static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quot _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___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); +x_1 = l_myMacro____x40_Init_Notation___hyg_49____closed__2; +x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__47; +x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } @@ -6863,7 +7977,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__51; -x_3 = lean_alloc_ctor(1, 2, 0); +x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; @@ -6872,27 +7986,39 @@ return x_3; static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__53() { _start: { -lean_object* x_1; -x_1 = lean_mk_string("mainModule"); -return x_1; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__52; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; } } static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__54() { _start: { -lean_object* x_1; lean_object* x_2; -x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__53; -x_2 = lean_string_utf8_byte_size(x_1); -return x_2; +lean_object* x_1; +x_1 = lean_mk_string("mainModule"); +return x_1; } } static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__55() { _start: { +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__54; +x_2 = lean_string_utf8_byte_size(x_1); +return x_2; +} +} +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__56() { +_start: +{ lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__53; +x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__54; x_2 = lean_unsigned_to_nat(0u); -x_3 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__54; +x_3 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___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); @@ -6900,17 +8026,17 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__56() { +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__57() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__53; +x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__54; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__57() { +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__58() { _start: { lean_object* x_1; @@ -6918,22 +8044,22 @@ x_1 = lean_mk_string("scp"); return x_1; } } -static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__58() { +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__59() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__57; +x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__58; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__59() { +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__60() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__57; +x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__58; x_2 = lean_unsigned_to_nat(0u); -x_3 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__58; +x_3 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__59; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -6941,12 +8067,12 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__60() { +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__61() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__57; +x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__58; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } @@ -6959,98 +8085,51 @@ case 0: { lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; x_9 = l_Lean_Elab_Term_getFVarLocalDecl_x21___closed__1; -x_10 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__1; +x_10 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__2; x_11 = lean_panic_fn(x_9, x_10); x_12 = lean_apply_7(x_11, x_2, x_3, x_4, x_5, x_6, x_7, x_8); return x_12; } case 1: { -lean_object* x_13; lean_object* x_14; uint8_t x_87; +lean_object* x_13; lean_object* x_14; lean_object* x_87; uint8_t x_100; x_13 = lean_ctor_get(x_1, 0); lean_inc(x_13); -x_87 = l_Lean_Syntax_isAntiquot(x_1); -if (x_87 == 0) +x_100 = l_Lean_Syntax_isAntiquot(x_1); +if (x_100 == 0) { -uint8_t x_88; -x_88 = l_Lean_Syntax_isAntiquotScope(x_1); -if (x_88 == 0) -{ -lean_object* x_89; -x_89 = lean_box(0); -x_14 = x_89; -goto block_86; +lean_object* x_101; +x_101 = lean_box(0); +x_87 = x_101; +goto block_99; } else { -uint8_t x_90; -x_90 = l_Lean_Syntax_isEscapedAntiquot(x_1); -if (x_90 == 0) +uint8_t x_102; +x_102 = l_Lean_Syntax_isEscapedAntiquot(x_1); +if (x_102 == 0) { -lean_object* x_91; lean_object* x_92; +lean_object* x_103; lean_object* x_104; lean_dec(x_13); -x_91 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__19; -x_92 = l_Lean_throwErrorAt___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabTermAux___spec__1___rarg(x_1, x_91, x_2, x_3, x_4, x_5, x_6, x_7, x_8); -lean_dec(x_7); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_1); -return x_92; -} -else -{ -lean_object* x_93; -x_93 = lean_box(0); -x_14 = x_93; -goto block_86; -} -} -} -else -{ -uint8_t x_94; -x_94 = l_Lean_Syntax_isEscapedAntiquot(x_1); -if (x_94 == 0) -{ -uint8_t x_95; -lean_dec(x_13); -x_95 = l_Lean_Syntax_isAntiquotSplice(x_1); -if (x_95 == 0) -{ -lean_object* x_96; lean_object* x_97; lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); -x_96 = l_Lean_Syntax_getAntiquotTerm(x_1); +x_103 = l_Lean_Syntax_getAntiquotTerm(x_1); lean_dec(x_1); -x_97 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_97, 0, x_96); -lean_ctor_set(x_97, 1, x_8); -return x_97; +x_104 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_104, 0, x_103); +lean_ctor_set(x_104, 1, x_8); +return x_104; } else { -lean_object* x_98; lean_object* x_99; -x_98 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__19; -x_99 = l_Lean_throwErrorAt___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabTermAux___spec__1___rarg(x_1, x_98, x_2, x_3, x_4, x_5, x_6, x_7, x_8); -lean_dec(x_7); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_1); -return x_99; -} -} -else -{ -lean_object* x_100; -x_100 = lean_box(0); -x_14 = x_100; -goto block_86; +lean_object* x_105; +x_105 = lean_box(0); +x_87 = x_105; +goto block_99; } } block_86: @@ -7069,12 +8148,12 @@ lean_inc(x_19); x_20 = lean_ctor_get(x_18, 1); lean_inc(x_20); lean_dec(x_18); -x_21 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__6; +x_21 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__7; x_22 = l_Lean_addMacroScope(x_19, x_21, x_16); x_23 = lean_box(0); x_24 = l_Lean_instInhabitedSourceInfo___closed__1; -x_25 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__4; -x_26 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__8; +x_25 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__5; +x_26 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__9; x_27 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_27, 0, x_24); lean_ctor_set(x_27, 1, x_25); @@ -7187,10 +8266,10 @@ 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_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; x_35 = lean_ctor_get(x_33, 0); -x_36 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__13; +x_36 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__14; x_37 = l_Lean_addMacroScope(x_35, x_36, x_31); -x_38 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__11; -x_39 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__16; +x_38 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__12; +x_39 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__17; x_40 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_40, 0, x_24); lean_ctor_set(x_40, 1, x_38); @@ -7221,10 +8300,10 @@ x_52 = lean_ctor_get(x_33, 1); lean_inc(x_52); lean_inc(x_51); lean_dec(x_33); -x_53 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__13; +x_53 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__14; x_54 = l_Lean_addMacroScope(x_51, x_53, x_31); -x_55 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__11; -x_56 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__16; +x_55 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__12; +x_56 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__17; x_57 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_57, 0, x_24); lean_ctor_set(x_57, 1, x_55); @@ -7251,858 +8330,926 @@ return x_68; } } } +block_99: +{ +uint8_t x_88; +lean_dec(x_87); +x_88 = l_Lean_Syntax_isAntiquotSuffixSplice(x_1); +if (x_88 == 0) +{ +uint8_t x_89; +x_89 = l_Lean_Syntax_isAntiquotScope(x_1); +if (x_89 == 0) +{ +lean_object* x_90; +x_90 = lean_box(0); +x_14 = x_90; +goto block_86; +} +else +{ +uint8_t x_91; +x_91 = l_Lean_Syntax_isEscapedAntiquot(x_1); +if (x_91 == 0) +{ +lean_object* x_92; lean_object* x_93; +lean_dec(x_13); +x_92 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__20; +x_93 = l_Lean_throwErrorAt___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabTermAux___spec__1___rarg(x_1, x_92, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +lean_dec(x_7); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +return x_93; +} +else +{ +lean_object* x_94; +x_94 = lean_box(0); +x_14 = x_94; +goto block_86; +} +} +} +else +{ +uint8_t x_95; +x_95 = l_Lean_Syntax_isEscapedAntiquot(x_1); +if (x_95 == 0) +{ +lean_object* x_96; lean_object* x_97; +lean_dec(x_13); +x_96 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__20; +x_97 = l_Lean_throwErrorAt___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabTermAux___spec__1___rarg(x_1, x_96, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +lean_dec(x_7); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +return x_97; +} +else +{ +lean_object* x_98; +x_98 = lean_box(0); +x_14 = x_98; +goto block_86; +} +} +} } case 2: { -uint8_t x_101; -x_101 = !lean_is_exclusive(x_1); -if (x_101 == 0) +uint8_t x_106; +x_106 = !lean_is_exclusive(x_1); +if (x_106 == 0) { -lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; uint8_t x_108; -x_102 = lean_ctor_get(x_1, 1); -x_103 = lean_ctor_get(x_1, 0); -lean_dec(x_103); -x_104 = l_Lean_Elab_Term_getCurrMacroScope(x_2, x_3, x_4, x_5, x_6, x_7, x_8); +lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; uint8_t x_113; +x_107 = lean_ctor_get(x_1, 1); +x_108 = lean_ctor_get(x_1, 0); +lean_dec(x_108); +x_109 = l_Lean_Elab_Term_getCurrMacroScope(x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); -x_105 = lean_ctor_get(x_104, 0); -lean_inc(x_105); -x_106 = lean_ctor_get(x_104, 1); -lean_inc(x_106); -lean_dec(x_104); -x_107 = l_Lean_Elab_Term_getMainModule___rarg(x_7, x_106); +x_110 = lean_ctor_get(x_109, 0); +lean_inc(x_110); +x_111 = lean_ctor_get(x_109, 1); +lean_inc(x_111); +lean_dec(x_109); +x_112 = l_Lean_Elab_Term_getMainModule___rarg(x_7, x_111); lean_dec(x_7); -x_108 = !lean_is_exclusive(x_107); -if (x_108 == 0) +x_113 = !lean_is_exclusive(x_112); +if (x_113 == 0) { -lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; -x_109 = lean_ctor_get(x_107, 0); -x_110 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__23; -lean_inc(x_105); -lean_inc(x_109); -x_111 = l_Lean_addMacroScope(x_109, x_110, x_105); -x_112 = l_Lean_instInhabitedSourceInfo___closed__1; -x_113 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__22; -x_114 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__26; -x_115 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_115, 0, x_112); -lean_ctor_set(x_115, 1, x_113); -lean_ctor_set(x_115, 2, x_111); -lean_ctor_set(x_115, 3, x_114); -x_116 = l_Array_empty___closed__1; -x_117 = lean_array_push(x_116, x_115); -x_118 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__32; -lean_inc(x_105); -lean_inc(x_109); -x_119 = l_Lean_addMacroScope(x_109, x_118, x_105); -x_120 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__29; -x_121 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__36; -x_122 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_122, 0, x_112); -lean_ctor_set(x_122, 1, x_120); -lean_ctor_set(x_122, 2, x_119); -lean_ctor_set(x_122, 3, x_121); -x_123 = lean_array_push(x_116, x_122); -x_124 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__26; -x_125 = l_Lean_addMacroScope(x_109, x_124, x_105); -x_126 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__25; -x_127 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__38; -x_128 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_128, 0, x_112); -lean_ctor_set(x_128, 1, x_126); -lean_ctor_set(x_128, 2, x_125); -lean_ctor_set(x_128, 3, x_127); -lean_inc(x_128); -x_129 = lean_array_push(x_116, x_128); -lean_inc(x_128); -x_130 = lean_array_push(x_129, x_128); -x_131 = lean_array_push(x_130, x_128); -x_132 = l_Lean_nullKind___closed__2; +lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; 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; +x_114 = lean_ctor_get(x_112, 0); +x_115 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__24; +lean_inc(x_110); +lean_inc(x_114); +x_116 = l_Lean_addMacroScope(x_114, x_115, x_110); +x_117 = l_Lean_instInhabitedSourceInfo___closed__1; +x_118 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__23; +x_119 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__27; +x_120 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_120, 0, x_117); +lean_ctor_set(x_120, 1, x_118); +lean_ctor_set(x_120, 2, x_116); +lean_ctor_set(x_120, 3, x_119); +x_121 = l_Array_empty___closed__1; +x_122 = lean_array_push(x_121, x_120); +x_123 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__33; +lean_inc(x_110); +lean_inc(x_114); +x_124 = l_Lean_addMacroScope(x_114, x_123, x_110); +x_125 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__30; +x_126 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__37; +x_127 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_127, 0, x_117); +lean_ctor_set(x_127, 1, x_125); +lean_ctor_set(x_127, 2, x_124); +lean_ctor_set(x_127, 3, x_126); +x_128 = lean_array_push(x_121, x_127); +x_129 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__26; +x_130 = l_Lean_addMacroScope(x_114, x_129, x_110); +x_131 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__25; +x_132 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__39; +x_133 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_133, 0, x_117); +lean_ctor_set(x_133, 1, x_131); +lean_ctor_set(x_133, 2, x_130); +lean_ctor_set(x_133, 3, x_132); +lean_inc(x_133); +x_134 = lean_array_push(x_121, x_133); +lean_inc(x_133); +x_135 = lean_array_push(x_134, x_133); +x_136 = lean_array_push(x_135, x_133); +x_137 = l_Lean_nullKind___closed__2; lean_ctor_set_tag(x_1, 1); -lean_ctor_set(x_1, 1, x_131); -lean_ctor_set(x_1, 0, x_132); -x_133 = lean_array_push(x_123, x_1); -x_134 = l_myMacro____x40_Init_Notation___hyg_1625____closed__4; -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 = lean_array_push(x_116, x_135); -x_137 = l_myMacro____x40_Init_Notation___hyg_521____closed__23; -x_138 = lean_array_push(x_136, x_137); -x_139 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_139, 0, x_132); -lean_ctor_set(x_139, 1, x_138); -x_140 = l_myMacro____x40_Init_Notation___hyg_10790____closed__9; -x_141 = lean_array_push(x_140, x_139); -x_142 = l_myMacro____x40_Init_Notation___hyg_49____closed__16; +lean_ctor_set(x_1, 1, x_136); +lean_ctor_set(x_1, 0, x_137); +x_138 = lean_array_push(x_128, x_1); +x_139 = l_myMacro____x40_Init_Notation___hyg_1625____closed__4; +x_140 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_140, 0, x_139); +lean_ctor_set(x_140, 1, x_138); +x_141 = lean_array_push(x_121, x_140); +x_142 = l_myMacro____x40_Init_Notation___hyg_521____closed__23; x_143 = lean_array_push(x_141, x_142); -x_144 = l_myMacro____x40_Init_Notation___hyg_10790____closed__8; -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_116, x_145); -x_147 = l_Lean_Syntax_mkStrLit(x_102, x_112); -lean_dec(x_102); +x_144 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_144, 0, x_137); +lean_ctor_set(x_144, 1, x_143); +x_145 = l_myMacro____x40_Init_Notation___hyg_10790____closed__9; +x_146 = lean_array_push(x_145, x_144); +x_147 = l_myMacro____x40_Init_Notation___hyg_49____closed__16; x_148 = lean_array_push(x_146, x_147); -x_149 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_149, 0, x_132); -lean_ctor_set(x_149, 1, x_148); -x_150 = lean_array_push(x_117, x_149); -x_151 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_151, 0, x_134); -lean_ctor_set(x_151, 1, x_150); -lean_ctor_set(x_107, 0, x_151); -return x_107; -} -else -{ -lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; lean_object* x_169; lean_object* x_170; lean_object* x_171; lean_object* x_172; lean_object* x_173; lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; lean_object* x_178; lean_object* x_179; lean_object* x_180; lean_object* x_181; 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; -x_152 = lean_ctor_get(x_107, 0); -x_153 = lean_ctor_get(x_107, 1); -lean_inc(x_153); -lean_inc(x_152); +x_149 = l_myMacro____x40_Init_Notation___hyg_10790____closed__8; +x_150 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_150, 0, x_149); +lean_ctor_set(x_150, 1, x_148); +x_151 = lean_array_push(x_121, x_150); +x_152 = l_Lean_Syntax_mkStrLit(x_107, x_117); lean_dec(x_107); -x_154 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__23; -lean_inc(x_105); -lean_inc(x_152); -x_155 = l_Lean_addMacroScope(x_152, x_154, x_105); -x_156 = l_Lean_instInhabitedSourceInfo___closed__1; -x_157 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__22; -x_158 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__26; -x_159 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_159, 0, x_156); -lean_ctor_set(x_159, 1, x_157); -lean_ctor_set(x_159, 2, x_155); -lean_ctor_set(x_159, 3, x_158); -x_160 = l_Array_empty___closed__1; -x_161 = lean_array_push(x_160, x_159); -x_162 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__32; -lean_inc(x_105); -lean_inc(x_152); -x_163 = l_Lean_addMacroScope(x_152, x_162, x_105); -x_164 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__29; -x_165 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__36; -x_166 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_166, 0, x_156); -lean_ctor_set(x_166, 1, x_164); -lean_ctor_set(x_166, 2, x_163); -lean_ctor_set(x_166, 3, x_165); -x_167 = lean_array_push(x_160, x_166); -x_168 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__26; -x_169 = l_Lean_addMacroScope(x_152, x_168, x_105); -x_170 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__25; -x_171 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__38; -x_172 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_172, 0, x_156); -lean_ctor_set(x_172, 1, x_170); -lean_ctor_set(x_172, 2, x_169); -lean_ctor_set(x_172, 3, x_171); -lean_inc(x_172); -x_173 = lean_array_push(x_160, x_172); -lean_inc(x_172); -x_174 = lean_array_push(x_173, x_172); -x_175 = lean_array_push(x_174, x_172); -x_176 = l_Lean_nullKind___closed__2; +x_153 = lean_array_push(x_151, x_152); +x_154 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_154, 0, x_137); +lean_ctor_set(x_154, 1, x_153); +x_155 = lean_array_push(x_122, x_154); +x_156 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_156, 0, x_139); +lean_ctor_set(x_156, 1, x_155); +lean_ctor_set(x_112, 0, x_156); +return x_112; +} +else +{ +lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; lean_object* x_169; lean_object* x_170; lean_object* x_171; lean_object* x_172; lean_object* x_173; lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; lean_object* x_178; lean_object* x_179; lean_object* x_180; lean_object* x_181; lean_object* x_182; lean_object* x_183; lean_object* x_184; lean_object* x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; lean_object* x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; lean_object* x_200; lean_object* x_201; +x_157 = lean_ctor_get(x_112, 0); +x_158 = lean_ctor_get(x_112, 1); +lean_inc(x_158); +lean_inc(x_157); +lean_dec(x_112); +x_159 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__24; +lean_inc(x_110); +lean_inc(x_157); +x_160 = l_Lean_addMacroScope(x_157, x_159, x_110); +x_161 = l_Lean_instInhabitedSourceInfo___closed__1; +x_162 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__23; +x_163 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__27; +x_164 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_164, 0, x_161); +lean_ctor_set(x_164, 1, x_162); +lean_ctor_set(x_164, 2, x_160); +lean_ctor_set(x_164, 3, x_163); +x_165 = l_Array_empty___closed__1; +x_166 = lean_array_push(x_165, x_164); +x_167 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__33; +lean_inc(x_110); +lean_inc(x_157); +x_168 = l_Lean_addMacroScope(x_157, x_167, x_110); +x_169 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__30; +x_170 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__37; +x_171 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_171, 0, x_161); +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 = lean_array_push(x_165, x_171); +x_173 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__26; +x_174 = l_Lean_addMacroScope(x_157, x_173, x_110); +x_175 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__25; +x_176 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__39; +x_177 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_177, 0, x_161); +lean_ctor_set(x_177, 1, x_175); +lean_ctor_set(x_177, 2, x_174); +lean_ctor_set(x_177, 3, x_176); +lean_inc(x_177); +x_178 = lean_array_push(x_165, x_177); +lean_inc(x_177); +x_179 = lean_array_push(x_178, x_177); +x_180 = lean_array_push(x_179, x_177); +x_181 = l_Lean_nullKind___closed__2; lean_ctor_set_tag(x_1, 1); -lean_ctor_set(x_1, 1, x_175); -lean_ctor_set(x_1, 0, x_176); -x_177 = lean_array_push(x_167, x_1); -x_178 = l_myMacro____x40_Init_Notation___hyg_1625____closed__4; -x_179 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_179, 0, x_178); -lean_ctor_set(x_179, 1, x_177); -x_180 = lean_array_push(x_160, x_179); -x_181 = l_myMacro____x40_Init_Notation___hyg_521____closed__23; -x_182 = lean_array_push(x_180, x_181); -x_183 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_183, 0, x_176); -lean_ctor_set(x_183, 1, x_182); -x_184 = l_myMacro____x40_Init_Notation___hyg_10790____closed__9; -x_185 = lean_array_push(x_184, x_183); -x_186 = l_myMacro____x40_Init_Notation___hyg_49____closed__16; +lean_ctor_set(x_1, 1, x_180); +lean_ctor_set(x_1, 0, x_181); +x_182 = lean_array_push(x_172, x_1); +x_183 = l_myMacro____x40_Init_Notation___hyg_1625____closed__4; +x_184 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_184, 0, x_183); +lean_ctor_set(x_184, 1, x_182); +x_185 = lean_array_push(x_165, x_184); +x_186 = l_myMacro____x40_Init_Notation___hyg_521____closed__23; x_187 = lean_array_push(x_185, x_186); -x_188 = l_myMacro____x40_Init_Notation___hyg_10790____closed__8; -x_189 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_189, 0, x_188); -lean_ctor_set(x_189, 1, x_187); -x_190 = lean_array_push(x_160, x_189); -x_191 = l_Lean_Syntax_mkStrLit(x_102, x_156); -lean_dec(x_102); +x_188 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_188, 0, x_181); +lean_ctor_set(x_188, 1, x_187); +x_189 = l_myMacro____x40_Init_Notation___hyg_10790____closed__9; +x_190 = lean_array_push(x_189, x_188); +x_191 = l_myMacro____x40_Init_Notation___hyg_49____closed__16; x_192 = lean_array_push(x_190, x_191); -x_193 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_193, 0, x_176); -lean_ctor_set(x_193, 1, x_192); -x_194 = lean_array_push(x_161, x_193); -x_195 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_195, 0, x_178); -lean_ctor_set(x_195, 1, x_194); -x_196 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_196, 0, x_195); -lean_ctor_set(x_196, 1, x_153); -return x_196; +x_193 = l_myMacro____x40_Init_Notation___hyg_10790____closed__8; +x_194 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_194, 0, x_193); +lean_ctor_set(x_194, 1, x_192); +x_195 = lean_array_push(x_165, x_194); +x_196 = l_Lean_Syntax_mkStrLit(x_107, x_161); +lean_dec(x_107); +x_197 = lean_array_push(x_195, x_196); +x_198 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_198, 0, x_181); +lean_ctor_set(x_198, 1, x_197); +x_199 = lean_array_push(x_166, x_198); +x_200 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_200, 0, x_183); +lean_ctor_set(x_200, 1, x_199); +x_201 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_201, 0, x_200); +lean_ctor_set(x_201, 1, x_158); +return x_201; } } else { -lean_object* x_197; lean_object* x_198; lean_object* x_199; lean_object* x_200; lean_object* x_201; lean_object* x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; lean_object* x_206; lean_object* x_207; lean_object* x_208; lean_object* x_209; lean_object* x_210; lean_object* x_211; lean_object* x_212; lean_object* x_213; lean_object* x_214; lean_object* x_215; lean_object* x_216; lean_object* x_217; lean_object* x_218; lean_object* x_219; lean_object* x_220; lean_object* x_221; lean_object* x_222; lean_object* x_223; lean_object* x_224; lean_object* x_225; lean_object* x_226; lean_object* x_227; lean_object* x_228; lean_object* x_229; lean_object* x_230; lean_object* x_231; lean_object* x_232; lean_object* x_233; lean_object* x_234; lean_object* x_235; lean_object* x_236; lean_object* x_237; lean_object* x_238; lean_object* x_239; lean_object* x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; lean_object* x_247; lean_object* x_248; -x_197 = lean_ctor_get(x_1, 1); -lean_inc(x_197); +lean_object* x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; lean_object* x_206; lean_object* x_207; lean_object* x_208; lean_object* x_209; lean_object* x_210; lean_object* x_211; lean_object* x_212; lean_object* x_213; lean_object* x_214; lean_object* x_215; lean_object* x_216; lean_object* x_217; lean_object* x_218; lean_object* x_219; lean_object* x_220; lean_object* x_221; lean_object* x_222; lean_object* x_223; lean_object* x_224; lean_object* x_225; lean_object* x_226; lean_object* x_227; lean_object* x_228; lean_object* x_229; lean_object* x_230; lean_object* x_231; lean_object* x_232; lean_object* x_233; lean_object* x_234; lean_object* x_235; lean_object* x_236; lean_object* x_237; lean_object* x_238; lean_object* x_239; lean_object* x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; lean_object* x_247; lean_object* x_248; lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; +x_202 = lean_ctor_get(x_1, 1); +lean_inc(x_202); lean_dec(x_1); -x_198 = l_Lean_Elab_Term_getCurrMacroScope(x_2, x_3, x_4, x_5, x_6, x_7, x_8); +x_203 = l_Lean_Elab_Term_getCurrMacroScope(x_2, x_3, x_4, x_5, x_6, x_7, x_8); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); -x_199 = lean_ctor_get(x_198, 0); -lean_inc(x_199); -x_200 = lean_ctor_get(x_198, 1); -lean_inc(x_200); -lean_dec(x_198); -x_201 = l_Lean_Elab_Term_getMainModule___rarg(x_7, x_200); +x_204 = lean_ctor_get(x_203, 0); +lean_inc(x_204); +x_205 = lean_ctor_get(x_203, 1); +lean_inc(x_205); +lean_dec(x_203); +x_206 = l_Lean_Elab_Term_getMainModule___rarg(x_7, x_205); lean_dec(x_7); -x_202 = lean_ctor_get(x_201, 0); -lean_inc(x_202); -x_203 = lean_ctor_get(x_201, 1); -lean_inc(x_203); -if (lean_is_exclusive(x_201)) { - lean_ctor_release(x_201, 0); - lean_ctor_release(x_201, 1); - x_204 = x_201; +x_207 = lean_ctor_get(x_206, 0); +lean_inc(x_207); +x_208 = lean_ctor_get(x_206, 1); +lean_inc(x_208); +if (lean_is_exclusive(x_206)) { + lean_ctor_release(x_206, 0); + lean_ctor_release(x_206, 1); + x_209 = x_206; } else { - lean_dec_ref(x_201); - x_204 = lean_box(0); + lean_dec_ref(x_206); + x_209 = lean_box(0); } -x_205 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__23; -lean_inc(x_199); -lean_inc(x_202); -x_206 = l_Lean_addMacroScope(x_202, x_205, x_199); -x_207 = l_Lean_instInhabitedSourceInfo___closed__1; -x_208 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__22; -x_209 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__26; -x_210 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_210, 0, x_207); -lean_ctor_set(x_210, 1, x_208); -lean_ctor_set(x_210, 2, x_206); -lean_ctor_set(x_210, 3, x_209); -x_211 = l_Array_empty___closed__1; -x_212 = lean_array_push(x_211, x_210); -x_213 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__32; -lean_inc(x_199); -lean_inc(x_202); -x_214 = l_Lean_addMacroScope(x_202, x_213, x_199); -x_215 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__29; -x_216 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__36; -x_217 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_217, 0, x_207); -lean_ctor_set(x_217, 1, x_215); -lean_ctor_set(x_217, 2, x_214); -lean_ctor_set(x_217, 3, x_216); -x_218 = lean_array_push(x_211, x_217); -x_219 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__26; -x_220 = l_Lean_addMacroScope(x_202, x_219, x_199); -x_221 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__25; -x_222 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__38; -x_223 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_223, 0, x_207); -lean_ctor_set(x_223, 1, x_221); -lean_ctor_set(x_223, 2, x_220); -lean_ctor_set(x_223, 3, x_222); -lean_inc(x_223); -x_224 = lean_array_push(x_211, x_223); -lean_inc(x_223); -x_225 = lean_array_push(x_224, x_223); -x_226 = lean_array_push(x_225, x_223); -x_227 = l_Lean_nullKind___closed__2; -x_228 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_228, 0, x_227); +x_210 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__24; +lean_inc(x_204); +lean_inc(x_207); +x_211 = l_Lean_addMacroScope(x_207, x_210, x_204); +x_212 = l_Lean_instInhabitedSourceInfo___closed__1; +x_213 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__23; +x_214 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__27; +x_215 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_215, 0, x_212); +lean_ctor_set(x_215, 1, x_213); +lean_ctor_set(x_215, 2, x_211); +lean_ctor_set(x_215, 3, x_214); +x_216 = l_Array_empty___closed__1; +x_217 = lean_array_push(x_216, x_215); +x_218 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__33; +lean_inc(x_204); +lean_inc(x_207); +x_219 = l_Lean_addMacroScope(x_207, x_218, x_204); +x_220 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__30; +x_221 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__37; +x_222 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_222, 0, x_212); +lean_ctor_set(x_222, 1, x_220); +lean_ctor_set(x_222, 2, x_219); +lean_ctor_set(x_222, 3, x_221); +x_223 = lean_array_push(x_216, x_222); +x_224 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__26; +x_225 = l_Lean_addMacroScope(x_207, x_224, x_204); +x_226 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__25; +x_227 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__39; +x_228 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_228, 0, x_212); lean_ctor_set(x_228, 1, x_226); -x_229 = lean_array_push(x_218, x_228); -x_230 = l_myMacro____x40_Init_Notation___hyg_1625____closed__4; -x_231 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_231, 0, x_230); -lean_ctor_set(x_231, 1, x_229); -x_232 = lean_array_push(x_211, x_231); -x_233 = l_myMacro____x40_Init_Notation___hyg_521____closed__23; -x_234 = lean_array_push(x_232, x_233); -x_235 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_235, 0, x_227); -lean_ctor_set(x_235, 1, x_234); -x_236 = l_myMacro____x40_Init_Notation___hyg_10790____closed__9; -x_237 = lean_array_push(x_236, x_235); -x_238 = l_myMacro____x40_Init_Notation___hyg_49____closed__16; +lean_ctor_set(x_228, 2, x_225); +lean_ctor_set(x_228, 3, x_227); +lean_inc(x_228); +x_229 = lean_array_push(x_216, x_228); +lean_inc(x_228); +x_230 = lean_array_push(x_229, x_228); +x_231 = lean_array_push(x_230, x_228); +x_232 = l_Lean_nullKind___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_223, x_233); +x_235 = l_myMacro____x40_Init_Notation___hyg_1625____closed__4; +x_236 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_236, 0, x_235); +lean_ctor_set(x_236, 1, x_234); +x_237 = lean_array_push(x_216, x_236); +x_238 = l_myMacro____x40_Init_Notation___hyg_521____closed__23; x_239 = lean_array_push(x_237, x_238); -x_240 = l_myMacro____x40_Init_Notation___hyg_10790____closed__8; -x_241 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_241, 0, x_240); -lean_ctor_set(x_241, 1, x_239); -x_242 = lean_array_push(x_211, x_241); -x_243 = l_Lean_Syntax_mkStrLit(x_197, x_207); -lean_dec(x_197); +x_240 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_240, 0, x_232); +lean_ctor_set(x_240, 1, x_239); +x_241 = l_myMacro____x40_Init_Notation___hyg_10790____closed__9; +x_242 = lean_array_push(x_241, x_240); +x_243 = l_myMacro____x40_Init_Notation___hyg_49____closed__16; x_244 = lean_array_push(x_242, x_243); -x_245 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_245, 0, x_227); -lean_ctor_set(x_245, 1, x_244); -x_246 = lean_array_push(x_212, x_245); -x_247 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_247, 0, x_230); -lean_ctor_set(x_247, 1, x_246); -if (lean_is_scalar(x_204)) { - x_248 = lean_alloc_ctor(0, 2, 0); +x_245 = l_myMacro____x40_Init_Notation___hyg_10790____closed__8; +x_246 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_246, 0, x_245); +lean_ctor_set(x_246, 1, x_244); +x_247 = lean_array_push(x_216, x_246); +x_248 = l_Lean_Syntax_mkStrLit(x_202, x_212); +lean_dec(x_202); +x_249 = lean_array_push(x_247, x_248); +x_250 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_250, 0, x_232); +lean_ctor_set(x_250, 1, x_249); +x_251 = lean_array_push(x_217, x_250); +x_252 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_252, 0, x_235); +lean_ctor_set(x_252, 1, x_251); +if (lean_is_scalar(x_209)) { + x_253 = lean_alloc_ctor(0, 2, 0); } else { - x_248 = x_204; + x_253 = x_209; } -lean_ctor_set(x_248, 0, x_247); -lean_ctor_set(x_248, 1, x_203); -return x_248; +lean_ctor_set(x_253, 0, x_252); +lean_ctor_set(x_253, 1, x_208); +return x_253; } } default: { -uint8_t x_249; -x_249 = !lean_is_exclusive(x_1); -if (x_249 == 0) +uint8_t x_254; +x_254 = !lean_is_exclusive(x_1); +if (x_254 == 0) { -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; uint8_t x_263; -x_250 = lean_ctor_get(x_1, 1); -x_251 = lean_ctor_get(x_1, 2); -x_252 = lean_ctor_get(x_1, 3); -x_253 = lean_ctor_get(x_1, 0); -lean_dec(x_253); +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; uint8_t x_268; +x_255 = lean_ctor_get(x_1, 1); +x_256 = lean_ctor_get(x_1, 2); +x_257 = lean_ctor_get(x_1, 3); +x_258 = lean_ctor_get(x_1, 0); +lean_dec(x_258); lean_inc(x_6); -lean_inc(x_251); -x_254 = l_Lean_resolveGlobalName___at_Lean_Elab_Term_resolveName___spec__1(x_251, x_2, x_3, x_4, x_5, x_6, x_7, x_8); -x_255 = lean_ctor_get(x_254, 0); -lean_inc(x_255); -x_256 = lean_ctor_get(x_254, 1); lean_inc(x_256); -lean_dec(x_254); -x_257 = l_List_append___rarg(x_255, x_252); -x_258 = l___private_Init_Meta_0__Lean_quoteName(x_251); -x_259 = l_Lean_Elab_Term_getCurrMacroScope(x_2, x_3, x_4, x_5, x_6, x_7, x_256); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); +x_259 = l_Lean_resolveGlobalName___at_Lean_Elab_Term_resolveName___spec__1(x_256, x_2, x_3, x_4, x_5, x_6, x_7, x_8); x_260 = lean_ctor_get(x_259, 0); lean_inc(x_260); x_261 = lean_ctor_get(x_259, 1); lean_inc(x_261); lean_dec(x_259); -x_262 = l_Lean_Elab_Term_getMainModule___rarg(x_7, x_261); -lean_dec(x_7); -x_263 = !lean_is_exclusive(x_262); -if (x_263 == 0) -{ -lean_object* x_264; lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; lean_object* x_269; lean_object* x_270; lean_object* x_271; lean_object* x_272; lean_object* x_273; lean_object* x_274; lean_object* x_275; lean_object* x_276; lean_object* x_277; lean_object* x_278; lean_object* x_279; lean_object* x_280; lean_object* x_281; lean_object* x_282; lean_object* x_283; lean_object* x_284; lean_object* x_285; lean_object* x_286; lean_object* x_287; lean_object* x_288; lean_object* x_289; lean_object* x_290; lean_object* x_291; lean_object* x_292; lean_object* x_293; lean_object* x_294; lean_object* x_295; lean_object* x_296; lean_object* x_297; lean_object* x_298; lean_object* x_299; lean_object* x_300; lean_object* x_301; lean_object* x_302; lean_object* x_303; lean_object* x_304; lean_object* x_305; lean_object* x_306; lean_object* x_307; lean_object* x_308; lean_object* x_309; lean_object* x_310; lean_object* x_311; lean_object* x_312; lean_object* x_313; lean_object* x_314; lean_object* x_315; lean_object* x_316; lean_object* x_317; lean_object* x_318; lean_object* x_319; lean_object* x_320; lean_object* x_321; lean_object* x_322; lean_object* x_323; lean_object* x_324; lean_object* x_325; lean_object* x_326; lean_object* x_327; lean_object* x_328; lean_object* x_329; lean_object* x_330; lean_object* x_331; lean_object* x_332; lean_object* x_333; lean_object* x_334; lean_object* x_335; lean_object* x_336; lean_object* x_337; lean_object* x_338; lean_object* x_339; lean_object* x_340; lean_object* x_341; lean_object* x_342; lean_object* x_343; lean_object* x_344; -x_264 = lean_ctor_get(x_262, 0); -x_265 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__42; -lean_inc(x_260); -lean_inc(x_264); -x_266 = l_Lean_addMacroScope(x_264, x_265, x_260); -x_267 = lean_box(0); -x_268 = l_Lean_instInhabitedSourceInfo___closed__1; -x_269 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__41; -x_270 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__45; -lean_ctor_set(x_1, 3, x_270); -lean_ctor_set(x_1, 2, x_266); -lean_ctor_set(x_1, 1, x_269); -lean_ctor_set(x_1, 0, x_268); -x_271 = l_Array_empty___closed__1; -x_272 = lean_array_push(x_271, x_1); -x_273 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__32; -lean_inc(x_260); -lean_inc(x_264); -x_274 = l_Lean_addMacroScope(x_264, x_273, x_260); -x_275 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__29; -x_276 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__36; -x_277 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_277, 0, x_268); -lean_ctor_set(x_277, 1, x_275); -lean_ctor_set(x_277, 2, x_274); -lean_ctor_set(x_277, 3, x_276); -x_278 = lean_array_push(x_271, x_277); -x_279 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__26; -lean_inc(x_260); -lean_inc(x_264); -x_280 = l_Lean_addMacroScope(x_264, x_279, x_260); -x_281 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__25; -x_282 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__38; -x_283 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_283, 0, x_268); -lean_ctor_set(x_283, 1, x_281); -lean_ctor_set(x_283, 2, x_280); -lean_ctor_set(x_283, 3, x_282); -lean_inc(x_283); -x_284 = lean_array_push(x_271, x_283); -lean_inc(x_283); -x_285 = lean_array_push(x_284, x_283); -x_286 = lean_array_push(x_285, x_283); -x_287 = l_Lean_nullKind___closed__2; -x_288 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_288, 0, x_287); -lean_ctor_set(x_288, 1, x_286); -x_289 = lean_array_push(x_278, x_288); -x_290 = l_myMacro____x40_Init_Notation___hyg_1625____closed__4; -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_271, x_291); -x_293 = l_myMacro____x40_Init_Notation___hyg_521____closed__23; -x_294 = lean_array_push(x_292, x_293); -x_295 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_295, 0, x_287); -lean_ctor_set(x_295, 1, x_294); -x_296 = l_myMacro____x40_Init_Notation___hyg_10790____closed__9; -x_297 = lean_array_push(x_296, x_295); -x_298 = l_myMacro____x40_Init_Notation___hyg_49____closed__16; -x_299 = lean_array_push(x_297, x_298); -x_300 = l_myMacro____x40_Init_Notation___hyg_10790____closed__8; -x_301 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_301, 0, x_300); -lean_ctor_set(x_301, 1, x_299); -x_302 = lean_array_push(x_271, x_301); -x_303 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__49; -lean_inc(x_260); -lean_inc(x_264); -x_304 = l_Lean_addMacroScope(x_264, x_303, x_260); -x_305 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__48; -x_306 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__52; -x_307 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_307, 0, x_268); -lean_ctor_set(x_307, 1, x_305); -lean_ctor_set(x_307, 2, x_304); -lean_ctor_set(x_307, 3, x_306); -x_308 = lean_array_push(x_271, x_307); -x_309 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__56; -lean_inc(x_260); -lean_inc(x_264); -x_310 = l_Lean_addMacroScope(x_264, x_309, x_260); -x_311 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__55; -x_312 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_312, 0, x_268); -lean_ctor_set(x_312, 1, x_311); -lean_ctor_set(x_312, 2, x_310); -lean_ctor_set(x_312, 3, x_267); -x_313 = lean_array_push(x_271, x_312); -x_314 = lean_array_push(x_313, x_258); -x_315 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__60; -x_316 = l_Lean_addMacroScope(x_264, x_315, x_260); -x_317 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__59; -x_318 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_318, 0, x_268); -lean_ctor_set(x_318, 1, x_317); -lean_ctor_set(x_318, 2, x_316); -lean_ctor_set(x_318, 3, x_267); -x_319 = lean_array_push(x_314, x_318); -x_320 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_320, 0, x_287); -lean_ctor_set(x_320, 1, x_319); -x_321 = lean_array_push(x_308, x_320); -x_322 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_322, 0, x_290); -lean_ctor_set(x_322, 1, x_321); -x_323 = lean_array_push(x_271, x_322); -x_324 = lean_array_push(x_323, x_293); -x_325 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_325, 0, x_287); -lean_ctor_set(x_325, 1, x_324); -x_326 = lean_array_push(x_296, x_325); -x_327 = lean_array_push(x_326, x_298); -x_328 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_328, 0, x_300); -lean_ctor_set(x_328, 1, x_327); -x_329 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5(x_257); -x_330 = lean_ctor_get(x_250, 0); -lean_inc(x_330); -x_331 = lean_ctor_get(x_250, 1); -lean_inc(x_331); -x_332 = lean_ctor_get(x_250, 2); -lean_inc(x_332); -lean_dec(x_250); -x_333 = lean_string_utf8_extract(x_330, x_331, x_332); -lean_dec(x_332); -lean_dec(x_331); -lean_dec(x_330); -x_334 = l_Lean_Syntax_mkStrLit(x_333, x_268); -lean_dec(x_333); -x_335 = l_Lean_mkOptionalNode___closed__2; -x_336 = lean_array_push(x_335, x_334); -x_337 = l_Lean_instQuoteSubstring___closed__4; -x_338 = l_Lean_Syntax_mkCApp(x_337, x_336); -x_339 = lean_array_push(x_302, x_338); -x_340 = lean_array_push(x_339, x_328); -x_341 = lean_array_push(x_340, x_329); -x_342 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_342, 0, x_287); -lean_ctor_set(x_342, 1, x_341); -x_343 = lean_array_push(x_272, x_342); -x_344 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_344, 0, x_290); -lean_ctor_set(x_344, 1, x_343); -lean_ctor_set(x_262, 0, x_344); -return x_262; -} -else -{ -lean_object* x_345; lean_object* x_346; lean_object* x_347; lean_object* x_348; lean_object* x_349; lean_object* x_350; lean_object* x_351; lean_object* x_352; lean_object* x_353; lean_object* x_354; lean_object* x_355; lean_object* x_356; lean_object* x_357; lean_object* x_358; lean_object* x_359; lean_object* x_360; lean_object* x_361; lean_object* x_362; lean_object* x_363; lean_object* x_364; lean_object* x_365; lean_object* x_366; lean_object* x_367; lean_object* x_368; lean_object* x_369; lean_object* x_370; lean_object* x_371; lean_object* x_372; lean_object* x_373; lean_object* x_374; lean_object* x_375; lean_object* x_376; lean_object* x_377; lean_object* x_378; lean_object* x_379; lean_object* x_380; lean_object* x_381; lean_object* x_382; lean_object* x_383; lean_object* x_384; lean_object* x_385; lean_object* x_386; lean_object* x_387; lean_object* x_388; lean_object* x_389; lean_object* x_390; lean_object* x_391; lean_object* x_392; lean_object* x_393; lean_object* x_394; lean_object* x_395; lean_object* x_396; lean_object* x_397; lean_object* x_398; lean_object* x_399; lean_object* x_400; lean_object* x_401; lean_object* x_402; lean_object* x_403; lean_object* x_404; 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; -x_345 = lean_ctor_get(x_262, 0); -x_346 = lean_ctor_get(x_262, 1); -lean_inc(x_346); -lean_inc(x_345); -lean_dec(x_262); -x_347 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__42; -lean_inc(x_260); -lean_inc(x_345); -x_348 = l_Lean_addMacroScope(x_345, x_347, x_260); -x_349 = lean_box(0); -x_350 = l_Lean_instInhabitedSourceInfo___closed__1; -x_351 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__41; -x_352 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__45; -lean_ctor_set(x_1, 3, x_352); -lean_ctor_set(x_1, 2, x_348); -lean_ctor_set(x_1, 1, x_351); -lean_ctor_set(x_1, 0, x_350); -x_353 = l_Array_empty___closed__1; -x_354 = lean_array_push(x_353, x_1); -x_355 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__32; -lean_inc(x_260); -lean_inc(x_345); -x_356 = l_Lean_addMacroScope(x_345, x_355, x_260); -x_357 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__29; -x_358 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__36; -x_359 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_359, 0, x_350); -lean_ctor_set(x_359, 1, x_357); -lean_ctor_set(x_359, 2, x_356); -lean_ctor_set(x_359, 3, x_358); -x_360 = lean_array_push(x_353, x_359); -x_361 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__26; -lean_inc(x_260); -lean_inc(x_345); -x_362 = l_Lean_addMacroScope(x_345, x_361, x_260); -x_363 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__25; -x_364 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__38; -x_365 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_365, 0, x_350); -lean_ctor_set(x_365, 1, x_363); -lean_ctor_set(x_365, 2, x_362); -lean_ctor_set(x_365, 3, x_364); -lean_inc(x_365); -x_366 = lean_array_push(x_353, x_365); -lean_inc(x_365); -x_367 = lean_array_push(x_366, x_365); -x_368 = lean_array_push(x_367, x_365); -x_369 = l_Lean_nullKind___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_array_push(x_360, x_370); -x_372 = l_myMacro____x40_Init_Notation___hyg_1625____closed__4; -x_373 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_373, 0, x_372); -lean_ctor_set(x_373, 1, x_371); -x_374 = lean_array_push(x_353, x_373); -x_375 = l_myMacro____x40_Init_Notation___hyg_521____closed__23; -x_376 = lean_array_push(x_374, x_375); -x_377 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_377, 0, x_369); -lean_ctor_set(x_377, 1, x_376); -x_378 = l_myMacro____x40_Init_Notation___hyg_10790____closed__9; -x_379 = lean_array_push(x_378, x_377); -x_380 = l_myMacro____x40_Init_Notation___hyg_49____closed__16; -x_381 = lean_array_push(x_379, x_380); -x_382 = l_myMacro____x40_Init_Notation___hyg_10790____closed__8; -x_383 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_383, 0, x_382); -lean_ctor_set(x_383, 1, x_381); -x_384 = lean_array_push(x_353, x_383); -x_385 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__49; -lean_inc(x_260); -lean_inc(x_345); -x_386 = l_Lean_addMacroScope(x_345, x_385, x_260); -x_387 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__48; -x_388 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__52; -x_389 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_389, 0, x_350); -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 = lean_array_push(x_353, x_389); -x_391 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__56; -lean_inc(x_260); -lean_inc(x_345); -x_392 = l_Lean_addMacroScope(x_345, x_391, x_260); -x_393 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__55; -x_394 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_394, 0, x_350); -lean_ctor_set(x_394, 1, x_393); -lean_ctor_set(x_394, 2, x_392); -lean_ctor_set(x_394, 3, x_349); -x_395 = lean_array_push(x_353, x_394); -x_396 = lean_array_push(x_395, x_258); -x_397 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__60; -x_398 = l_Lean_addMacroScope(x_345, x_397, x_260); -x_399 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__59; -x_400 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_400, 0, x_350); -lean_ctor_set(x_400, 1, x_399); -lean_ctor_set(x_400, 2, x_398); -lean_ctor_set(x_400, 3, x_349); -x_401 = lean_array_push(x_396, x_400); -x_402 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_402, 0, x_369); -lean_ctor_set(x_402, 1, x_401); -x_403 = lean_array_push(x_390, x_402); -x_404 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_404, 0, x_372); -lean_ctor_set(x_404, 1, x_403); -x_405 = lean_array_push(x_353, x_404); -x_406 = lean_array_push(x_405, x_375); -x_407 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_407, 0, x_369); -lean_ctor_set(x_407, 1, x_406); -x_408 = lean_array_push(x_378, x_407); -x_409 = lean_array_push(x_408, x_380); -x_410 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_410, 0, x_382); -lean_ctor_set(x_410, 1, x_409); -x_411 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5(x_257); -x_412 = lean_ctor_get(x_250, 0); -lean_inc(x_412); -x_413 = lean_ctor_get(x_250, 1); -lean_inc(x_413); -x_414 = lean_ctor_get(x_250, 2); -lean_inc(x_414); -lean_dec(x_250); -x_415 = lean_string_utf8_extract(x_412, x_413, x_414); -lean_dec(x_414); -lean_dec(x_413); -lean_dec(x_412); -x_416 = l_Lean_Syntax_mkStrLit(x_415, x_350); -lean_dec(x_415); -x_417 = l_Lean_mkOptionalNode___closed__2; -x_418 = lean_array_push(x_417, x_416); -x_419 = l_Lean_instQuoteSubstring___closed__4; -x_420 = l_Lean_Syntax_mkCApp(x_419, x_418); -x_421 = lean_array_push(x_384, x_420); -x_422 = lean_array_push(x_421, x_410); -x_423 = lean_array_push(x_422, x_411); -x_424 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_424, 0, x_369); -lean_ctor_set(x_424, 1, x_423); -x_425 = lean_array_push(x_354, x_424); -x_426 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_426, 0, x_372); -lean_ctor_set(x_426, 1, x_425); -x_427 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_427, 0, x_426); -lean_ctor_set(x_427, 1, x_346); -return x_427; -} -} -else -{ -lean_object* x_428; lean_object* x_429; lean_object* x_430; lean_object* x_431; lean_object* x_432; lean_object* x_433; lean_object* x_434; lean_object* x_435; lean_object* x_436; lean_object* x_437; lean_object* x_438; lean_object* x_439; lean_object* x_440; lean_object* x_441; lean_object* x_442; lean_object* x_443; lean_object* x_444; lean_object* x_445; lean_object* x_446; lean_object* x_447; lean_object* x_448; lean_object* x_449; lean_object* x_450; lean_object* x_451; lean_object* x_452; lean_object* x_453; lean_object* x_454; lean_object* x_455; lean_object* x_456; lean_object* x_457; lean_object* x_458; lean_object* x_459; lean_object* x_460; lean_object* x_461; lean_object* x_462; lean_object* x_463; lean_object* x_464; lean_object* x_465; lean_object* x_466; lean_object* x_467; lean_object* x_468; lean_object* x_469; lean_object* x_470; lean_object* x_471; lean_object* x_472; lean_object* x_473; lean_object* x_474; lean_object* x_475; lean_object* x_476; lean_object* x_477; lean_object* x_478; lean_object* x_479; lean_object* x_480; lean_object* x_481; lean_object* x_482; lean_object* x_483; lean_object* x_484; lean_object* x_485; lean_object* x_486; lean_object* x_487; lean_object* x_488; lean_object* x_489; lean_object* x_490; lean_object* x_491; lean_object* x_492; lean_object* x_493; lean_object* x_494; lean_object* x_495; lean_object* x_496; lean_object* x_497; lean_object* x_498; lean_object* x_499; lean_object* x_500; lean_object* x_501; lean_object* x_502; lean_object* x_503; lean_object* x_504; lean_object* x_505; lean_object* x_506; lean_object* x_507; lean_object* x_508; lean_object* x_509; lean_object* x_510; lean_object* x_511; lean_object* x_512; lean_object* x_513; lean_object* x_514; lean_object* x_515; lean_object* x_516; lean_object* x_517; lean_object* x_518; lean_object* x_519; lean_object* x_520; lean_object* x_521; lean_object* x_522; lean_object* x_523; lean_object* x_524; -x_428 = lean_ctor_get(x_1, 1); -x_429 = lean_ctor_get(x_1, 2); -x_430 = lean_ctor_get(x_1, 3); -lean_inc(x_430); -lean_inc(x_429); -lean_inc(x_428); -lean_dec(x_1); -lean_inc(x_6); -lean_inc(x_429); -x_431 = l_Lean_resolveGlobalName___at_Lean_Elab_Term_resolveName___spec__1(x_429, x_2, x_3, x_4, x_5, x_6, x_7, x_8); -x_432 = lean_ctor_get(x_431, 0); -lean_inc(x_432); -x_433 = lean_ctor_get(x_431, 1); -lean_inc(x_433); -lean_dec(x_431); -x_434 = l_List_append___rarg(x_432, x_430); -x_435 = l___private_Init_Meta_0__Lean_quoteName(x_429); -x_436 = l_Lean_Elab_Term_getCurrMacroScope(x_2, x_3, x_4, x_5, x_6, x_7, x_433); +x_262 = l_List_append___rarg(x_260, x_257); +x_263 = l___private_Init_Meta_0__Lean_quoteName(x_256); +x_264 = l_Lean_Elab_Term_getCurrMacroScope(x_2, x_3, x_4, x_5, x_6, x_7, x_261); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); +x_265 = lean_ctor_get(x_264, 0); +lean_inc(x_265); +x_266 = lean_ctor_get(x_264, 1); +lean_inc(x_266); +lean_dec(x_264); +x_267 = l_Lean_Elab_Term_getMainModule___rarg(x_7, x_266); +lean_dec(x_7); +x_268 = !lean_is_exclusive(x_267); +if (x_268 == 0) +{ +lean_object* x_269; lean_object* x_270; lean_object* x_271; lean_object* x_272; lean_object* x_273; lean_object* x_274; lean_object* x_275; lean_object* x_276; lean_object* x_277; lean_object* x_278; lean_object* x_279; lean_object* x_280; lean_object* x_281; lean_object* x_282; lean_object* x_283; lean_object* x_284; lean_object* x_285; lean_object* x_286; lean_object* x_287; lean_object* x_288; lean_object* x_289; lean_object* x_290; lean_object* x_291; lean_object* x_292; lean_object* x_293; lean_object* x_294; lean_object* x_295; lean_object* x_296; lean_object* x_297; lean_object* x_298; lean_object* x_299; lean_object* x_300; lean_object* x_301; lean_object* x_302; lean_object* x_303; lean_object* x_304; lean_object* x_305; lean_object* x_306; lean_object* x_307; lean_object* x_308; lean_object* x_309; lean_object* x_310; lean_object* x_311; lean_object* x_312; lean_object* x_313; lean_object* x_314; lean_object* x_315; lean_object* x_316; lean_object* x_317; lean_object* x_318; lean_object* x_319; lean_object* x_320; lean_object* x_321; lean_object* x_322; lean_object* x_323; lean_object* x_324; lean_object* x_325; lean_object* x_326; lean_object* x_327; lean_object* x_328; lean_object* x_329; lean_object* x_330; lean_object* x_331; lean_object* x_332; lean_object* x_333; lean_object* x_334; lean_object* x_335; lean_object* x_336; lean_object* x_337; lean_object* x_338; lean_object* x_339; lean_object* x_340; lean_object* x_341; lean_object* x_342; lean_object* x_343; lean_object* x_344; lean_object* x_345; lean_object* x_346; lean_object* x_347; lean_object* x_348; lean_object* x_349; +x_269 = lean_ctor_get(x_267, 0); +x_270 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__43; +lean_inc(x_265); +lean_inc(x_269); +x_271 = l_Lean_addMacroScope(x_269, x_270, x_265); +x_272 = lean_box(0); +x_273 = l_Lean_instInhabitedSourceInfo___closed__1; +x_274 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__42; +x_275 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__46; +lean_ctor_set(x_1, 3, x_275); +lean_ctor_set(x_1, 2, x_271); +lean_ctor_set(x_1, 1, x_274); +lean_ctor_set(x_1, 0, x_273); +x_276 = l_Array_empty___closed__1; +x_277 = lean_array_push(x_276, x_1); +x_278 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__33; +lean_inc(x_265); +lean_inc(x_269); +x_279 = l_Lean_addMacroScope(x_269, x_278, x_265); +x_280 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__30; +x_281 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__37; +x_282 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_282, 0, x_273); +lean_ctor_set(x_282, 1, x_280); +lean_ctor_set(x_282, 2, x_279); +lean_ctor_set(x_282, 3, x_281); +x_283 = lean_array_push(x_276, x_282); +x_284 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__26; +lean_inc(x_265); +lean_inc(x_269); +x_285 = l_Lean_addMacroScope(x_269, x_284, x_265); +x_286 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__25; +x_287 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__39; +x_288 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_288, 0, x_273); +lean_ctor_set(x_288, 1, x_286); +lean_ctor_set(x_288, 2, x_285); +lean_ctor_set(x_288, 3, x_287); +lean_inc(x_288); +x_289 = lean_array_push(x_276, x_288); +lean_inc(x_288); +x_290 = lean_array_push(x_289, x_288); +x_291 = lean_array_push(x_290, x_288); +x_292 = l_Lean_nullKind___closed__2; +x_293 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_293, 0, x_292); +lean_ctor_set(x_293, 1, x_291); +x_294 = lean_array_push(x_283, x_293); +x_295 = l_myMacro____x40_Init_Notation___hyg_1625____closed__4; +x_296 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_296, 0, x_295); +lean_ctor_set(x_296, 1, x_294); +x_297 = lean_array_push(x_276, x_296); +x_298 = l_myMacro____x40_Init_Notation___hyg_521____closed__23; +x_299 = lean_array_push(x_297, x_298); +x_300 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_300, 0, x_292); +lean_ctor_set(x_300, 1, x_299); +x_301 = l_myMacro____x40_Init_Notation___hyg_10790____closed__9; +x_302 = lean_array_push(x_301, x_300); +x_303 = l_myMacro____x40_Init_Notation___hyg_49____closed__16; +x_304 = lean_array_push(x_302, x_303); +x_305 = l_myMacro____x40_Init_Notation___hyg_10790____closed__8; +x_306 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_306, 0, x_305); +lean_ctor_set(x_306, 1, x_304); +x_307 = lean_array_push(x_276, x_306); +x_308 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__50; +lean_inc(x_265); +lean_inc(x_269); +x_309 = l_Lean_addMacroScope(x_269, x_308, x_265); +x_310 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__49; +x_311 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__53; +x_312 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_312, 0, x_273); +lean_ctor_set(x_312, 1, x_310); +lean_ctor_set(x_312, 2, x_309); +lean_ctor_set(x_312, 3, x_311); +x_313 = lean_array_push(x_276, x_312); +x_314 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__57; +lean_inc(x_265); +lean_inc(x_269); +x_315 = l_Lean_addMacroScope(x_269, x_314, x_265); +x_316 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__56; +x_317 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_317, 0, x_273); +lean_ctor_set(x_317, 1, x_316); +lean_ctor_set(x_317, 2, x_315); +lean_ctor_set(x_317, 3, x_272); +x_318 = lean_array_push(x_276, x_317); +x_319 = lean_array_push(x_318, x_263); +x_320 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__61; +x_321 = l_Lean_addMacroScope(x_269, x_320, x_265); +x_322 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__60; +x_323 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_323, 0, x_273); +lean_ctor_set(x_323, 1, x_322); +lean_ctor_set(x_323, 2, x_321); +lean_ctor_set(x_323, 3, x_272); +x_324 = lean_array_push(x_319, x_323); +x_325 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_325, 0, x_292); +lean_ctor_set(x_325, 1, x_324); +x_326 = lean_array_push(x_313, x_325); +x_327 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_327, 0, x_295); +lean_ctor_set(x_327, 1, x_326); +x_328 = lean_array_push(x_276, x_327); +x_329 = lean_array_push(x_328, x_298); +x_330 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_330, 0, x_292); +lean_ctor_set(x_330, 1, x_329); +x_331 = lean_array_push(x_301, x_330); +x_332 = lean_array_push(x_331, x_303); +x_333 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_333, 0, x_305); +lean_ctor_set(x_333, 1, x_332); +x_334 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5(x_262); +x_335 = lean_ctor_get(x_255, 0); +lean_inc(x_335); +x_336 = lean_ctor_get(x_255, 1); +lean_inc(x_336); +x_337 = lean_ctor_get(x_255, 2); +lean_inc(x_337); +lean_dec(x_255); +x_338 = lean_string_utf8_extract(x_335, x_336, x_337); +lean_dec(x_337); +lean_dec(x_336); +lean_dec(x_335); +x_339 = l_Lean_Syntax_mkStrLit(x_338, x_273); +lean_dec(x_338); +x_340 = l_Lean_mkOptionalNode___closed__2; +x_341 = lean_array_push(x_340, x_339); +x_342 = l_Lean_instQuoteSubstring___closed__4; +x_343 = l_Lean_Syntax_mkCApp(x_342, x_341); +x_344 = lean_array_push(x_307, x_343); +x_345 = lean_array_push(x_344, x_333); +x_346 = lean_array_push(x_345, x_334); +x_347 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_347, 0, x_292); +lean_ctor_set(x_347, 1, x_346); +x_348 = lean_array_push(x_277, x_347); +x_349 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_349, 0, x_295); +lean_ctor_set(x_349, 1, x_348); +lean_ctor_set(x_267, 0, x_349); +return x_267; +} +else +{ +lean_object* x_350; lean_object* x_351; lean_object* x_352; lean_object* x_353; lean_object* x_354; lean_object* x_355; lean_object* x_356; lean_object* x_357; lean_object* x_358; lean_object* x_359; lean_object* x_360; lean_object* x_361; lean_object* x_362; lean_object* x_363; lean_object* x_364; lean_object* x_365; lean_object* x_366; lean_object* x_367; lean_object* x_368; lean_object* x_369; lean_object* x_370; lean_object* x_371; lean_object* x_372; lean_object* x_373; lean_object* x_374; lean_object* x_375; lean_object* x_376; lean_object* x_377; lean_object* x_378; lean_object* x_379; lean_object* x_380; lean_object* x_381; lean_object* x_382; lean_object* x_383; lean_object* x_384; lean_object* x_385; lean_object* x_386; lean_object* x_387; lean_object* x_388; lean_object* x_389; lean_object* x_390; lean_object* x_391; lean_object* x_392; lean_object* x_393; lean_object* x_394; lean_object* x_395; lean_object* x_396; lean_object* x_397; lean_object* x_398; lean_object* x_399; lean_object* x_400; lean_object* x_401; lean_object* x_402; lean_object* x_403; lean_object* x_404; 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; +x_350 = lean_ctor_get(x_267, 0); +x_351 = lean_ctor_get(x_267, 1); +lean_inc(x_351); +lean_inc(x_350); +lean_dec(x_267); +x_352 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__43; +lean_inc(x_265); +lean_inc(x_350); +x_353 = l_Lean_addMacroScope(x_350, x_352, x_265); +x_354 = lean_box(0); +x_355 = l_Lean_instInhabitedSourceInfo___closed__1; +x_356 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__42; +x_357 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__46; +lean_ctor_set(x_1, 3, x_357); +lean_ctor_set(x_1, 2, x_353); +lean_ctor_set(x_1, 1, x_356); +lean_ctor_set(x_1, 0, x_355); +x_358 = l_Array_empty___closed__1; +x_359 = lean_array_push(x_358, x_1); +x_360 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__33; +lean_inc(x_265); +lean_inc(x_350); +x_361 = l_Lean_addMacroScope(x_350, x_360, x_265); +x_362 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__30; +x_363 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__37; +x_364 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_364, 0, x_355); +lean_ctor_set(x_364, 1, x_362); +lean_ctor_set(x_364, 2, x_361); +lean_ctor_set(x_364, 3, x_363); +x_365 = lean_array_push(x_358, x_364); +x_366 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__26; +lean_inc(x_265); +lean_inc(x_350); +x_367 = l_Lean_addMacroScope(x_350, x_366, x_265); +x_368 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__25; +x_369 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__39; +x_370 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_370, 0, x_355); +lean_ctor_set(x_370, 1, x_368); +lean_ctor_set(x_370, 2, x_367); +lean_ctor_set(x_370, 3, x_369); +lean_inc(x_370); +x_371 = lean_array_push(x_358, x_370); +lean_inc(x_370); +x_372 = lean_array_push(x_371, x_370); +x_373 = lean_array_push(x_372, x_370); +x_374 = l_Lean_nullKind___closed__2; +x_375 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_375, 0, x_374); +lean_ctor_set(x_375, 1, x_373); +x_376 = lean_array_push(x_365, x_375); +x_377 = l_myMacro____x40_Init_Notation___hyg_1625____closed__4; +x_378 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_378, 0, x_377); +lean_ctor_set(x_378, 1, x_376); +x_379 = lean_array_push(x_358, x_378); +x_380 = l_myMacro____x40_Init_Notation___hyg_521____closed__23; +x_381 = lean_array_push(x_379, x_380); +x_382 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_382, 0, x_374); +lean_ctor_set(x_382, 1, x_381); +x_383 = l_myMacro____x40_Init_Notation___hyg_10790____closed__9; +x_384 = lean_array_push(x_383, x_382); +x_385 = l_myMacro____x40_Init_Notation___hyg_49____closed__16; +x_386 = lean_array_push(x_384, x_385); +x_387 = l_myMacro____x40_Init_Notation___hyg_10790____closed__8; +x_388 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_388, 0, x_387); +lean_ctor_set(x_388, 1, x_386); +x_389 = lean_array_push(x_358, x_388); +x_390 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__50; +lean_inc(x_265); +lean_inc(x_350); +x_391 = l_Lean_addMacroScope(x_350, x_390, x_265); +x_392 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__49; +x_393 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__53; +x_394 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_394, 0, x_355); +lean_ctor_set(x_394, 1, x_392); +lean_ctor_set(x_394, 2, x_391); +lean_ctor_set(x_394, 3, x_393); +x_395 = lean_array_push(x_358, x_394); +x_396 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__57; +lean_inc(x_265); +lean_inc(x_350); +x_397 = l_Lean_addMacroScope(x_350, x_396, x_265); +x_398 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__56; +x_399 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_399, 0, x_355); +lean_ctor_set(x_399, 1, x_398); +lean_ctor_set(x_399, 2, x_397); +lean_ctor_set(x_399, 3, x_354); +x_400 = lean_array_push(x_358, x_399); +x_401 = lean_array_push(x_400, x_263); +x_402 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__61; +x_403 = l_Lean_addMacroScope(x_350, x_402, x_265); +x_404 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__60; +x_405 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_405, 0, x_355); +lean_ctor_set(x_405, 1, x_404); +lean_ctor_set(x_405, 2, x_403); +lean_ctor_set(x_405, 3, x_354); +x_406 = lean_array_push(x_401, x_405); +x_407 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_407, 0, x_374); +lean_ctor_set(x_407, 1, x_406); +x_408 = lean_array_push(x_395, x_407); +x_409 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_409, 0, x_377); +lean_ctor_set(x_409, 1, x_408); +x_410 = lean_array_push(x_358, x_409); +x_411 = lean_array_push(x_410, x_380); +x_412 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_412, 0, x_374); +lean_ctor_set(x_412, 1, x_411); +x_413 = lean_array_push(x_383, x_412); +x_414 = lean_array_push(x_413, x_385); +x_415 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_415, 0, x_387); +lean_ctor_set(x_415, 1, x_414); +x_416 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5(x_262); +x_417 = lean_ctor_get(x_255, 0); +lean_inc(x_417); +x_418 = lean_ctor_get(x_255, 1); +lean_inc(x_418); +x_419 = lean_ctor_get(x_255, 2); +lean_inc(x_419); +lean_dec(x_255); +x_420 = lean_string_utf8_extract(x_417, x_418, x_419); +lean_dec(x_419); +lean_dec(x_418); +lean_dec(x_417); +x_421 = l_Lean_Syntax_mkStrLit(x_420, x_355); +lean_dec(x_420); +x_422 = l_Lean_mkOptionalNode___closed__2; +x_423 = lean_array_push(x_422, x_421); +x_424 = l_Lean_instQuoteSubstring___closed__4; +x_425 = l_Lean_Syntax_mkCApp(x_424, x_423); +x_426 = lean_array_push(x_389, x_425); +x_427 = lean_array_push(x_426, x_415); +x_428 = lean_array_push(x_427, x_416); +x_429 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_429, 0, x_374); +lean_ctor_set(x_429, 1, x_428); +x_430 = lean_array_push(x_359, x_429); +x_431 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_431, 0, x_377); +lean_ctor_set(x_431, 1, x_430); +x_432 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_432, 0, x_431); +lean_ctor_set(x_432, 1, x_351); +return x_432; +} +} +else +{ +lean_object* x_433; lean_object* x_434; lean_object* x_435; lean_object* x_436; lean_object* x_437; lean_object* x_438; lean_object* x_439; lean_object* x_440; lean_object* x_441; lean_object* x_442; lean_object* x_443; lean_object* x_444; lean_object* x_445; lean_object* x_446; lean_object* x_447; lean_object* x_448; lean_object* x_449; lean_object* x_450; lean_object* x_451; lean_object* x_452; lean_object* x_453; lean_object* x_454; lean_object* x_455; lean_object* x_456; lean_object* x_457; lean_object* x_458; lean_object* x_459; lean_object* x_460; lean_object* x_461; lean_object* x_462; lean_object* x_463; lean_object* x_464; lean_object* x_465; lean_object* x_466; lean_object* x_467; lean_object* x_468; lean_object* x_469; lean_object* x_470; lean_object* x_471; lean_object* x_472; lean_object* x_473; lean_object* x_474; lean_object* x_475; lean_object* x_476; lean_object* x_477; lean_object* x_478; lean_object* x_479; lean_object* x_480; lean_object* x_481; lean_object* x_482; lean_object* x_483; lean_object* x_484; lean_object* x_485; lean_object* x_486; lean_object* x_487; lean_object* x_488; lean_object* x_489; lean_object* x_490; lean_object* x_491; lean_object* x_492; lean_object* x_493; lean_object* x_494; lean_object* x_495; lean_object* x_496; lean_object* x_497; lean_object* x_498; lean_object* x_499; lean_object* x_500; lean_object* x_501; lean_object* x_502; lean_object* x_503; lean_object* x_504; lean_object* x_505; lean_object* x_506; lean_object* x_507; lean_object* x_508; lean_object* x_509; lean_object* x_510; lean_object* x_511; lean_object* x_512; lean_object* x_513; lean_object* x_514; lean_object* x_515; lean_object* x_516; lean_object* x_517; lean_object* x_518; lean_object* x_519; lean_object* x_520; lean_object* x_521; lean_object* x_522; lean_object* x_523; lean_object* x_524; lean_object* x_525; lean_object* x_526; lean_object* x_527; lean_object* x_528; lean_object* x_529; +x_433 = lean_ctor_get(x_1, 1); +x_434 = lean_ctor_get(x_1, 2); +x_435 = lean_ctor_get(x_1, 3); +lean_inc(x_435); +lean_inc(x_434); +lean_inc(x_433); +lean_dec(x_1); +lean_inc(x_6); +lean_inc(x_434); +x_436 = l_Lean_resolveGlobalName___at_Lean_Elab_Term_resolveName___spec__1(x_434, x_2, x_3, x_4, x_5, x_6, x_7, x_8); x_437 = lean_ctor_get(x_436, 0); lean_inc(x_437); x_438 = lean_ctor_get(x_436, 1); lean_inc(x_438); lean_dec(x_436); -x_439 = l_Lean_Elab_Term_getMainModule___rarg(x_7, x_438); +x_439 = l_List_append___rarg(x_437, x_435); +x_440 = l___private_Init_Meta_0__Lean_quoteName(x_434); +x_441 = l_Lean_Elab_Term_getCurrMacroScope(x_2, x_3, x_4, x_5, x_6, x_7, x_438); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_442 = lean_ctor_get(x_441, 0); +lean_inc(x_442); +x_443 = lean_ctor_get(x_441, 1); +lean_inc(x_443); +lean_dec(x_441); +x_444 = l_Lean_Elab_Term_getMainModule___rarg(x_7, x_443); lean_dec(x_7); -x_440 = lean_ctor_get(x_439, 0); -lean_inc(x_440); -x_441 = lean_ctor_get(x_439, 1); -lean_inc(x_441); -if (lean_is_exclusive(x_439)) { - lean_ctor_release(x_439, 0); - lean_ctor_release(x_439, 1); - x_442 = x_439; +x_445 = lean_ctor_get(x_444, 0); +lean_inc(x_445); +x_446 = lean_ctor_get(x_444, 1); +lean_inc(x_446); +if (lean_is_exclusive(x_444)) { + lean_ctor_release(x_444, 0); + lean_ctor_release(x_444, 1); + x_447 = x_444; } else { - lean_dec_ref(x_439); - x_442 = lean_box(0); + lean_dec_ref(x_444); + x_447 = lean_box(0); } -x_443 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__42; -lean_inc(x_437); -lean_inc(x_440); -x_444 = l_Lean_addMacroScope(x_440, x_443, x_437); -x_445 = lean_box(0); -x_446 = l_Lean_instInhabitedSourceInfo___closed__1; -x_447 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__41; -x_448 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__45; -x_449 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_449, 0, x_446); -lean_ctor_set(x_449, 1, x_447); -lean_ctor_set(x_449, 2, x_444); -lean_ctor_set(x_449, 3, x_448); -x_450 = l_Array_empty___closed__1; -x_451 = lean_array_push(x_450, x_449); -x_452 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__32; -lean_inc(x_437); -lean_inc(x_440); -x_453 = l_Lean_addMacroScope(x_440, x_452, x_437); -x_454 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__29; -x_455 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__36; -x_456 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_456, 0, x_446); -lean_ctor_set(x_456, 1, x_454); -lean_ctor_set(x_456, 2, x_453); -lean_ctor_set(x_456, 3, x_455); -x_457 = lean_array_push(x_450, x_456); -x_458 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__26; -lean_inc(x_437); -lean_inc(x_440); -x_459 = l_Lean_addMacroScope(x_440, x_458, x_437); -x_460 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__25; -x_461 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__38; -x_462 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_462, 0, x_446); -lean_ctor_set(x_462, 1, x_460); -lean_ctor_set(x_462, 2, x_459); -lean_ctor_set(x_462, 3, x_461); -lean_inc(x_462); -x_463 = lean_array_push(x_450, x_462); -lean_inc(x_462); -x_464 = lean_array_push(x_463, x_462); -x_465 = lean_array_push(x_464, x_462); -x_466 = l_Lean_nullKind___closed__2; -x_467 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_467, 0, x_466); +x_448 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__43; +lean_inc(x_442); +lean_inc(x_445); +x_449 = l_Lean_addMacroScope(x_445, x_448, x_442); +x_450 = lean_box(0); +x_451 = l_Lean_instInhabitedSourceInfo___closed__1; +x_452 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__42; +x_453 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__46; +x_454 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_454, 0, x_451); +lean_ctor_set(x_454, 1, x_452); +lean_ctor_set(x_454, 2, x_449); +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_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__33; +lean_inc(x_442); +lean_inc(x_445); +x_458 = l_Lean_addMacroScope(x_445, x_457, x_442); +x_459 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__30; +x_460 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__37; +x_461 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_461, 0, x_451); +lean_ctor_set(x_461, 1, x_459); +lean_ctor_set(x_461, 2, x_458); +lean_ctor_set(x_461, 3, x_460); +x_462 = lean_array_push(x_455, x_461); +x_463 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__26; +lean_inc(x_442); +lean_inc(x_445); +x_464 = l_Lean_addMacroScope(x_445, x_463, x_442); +x_465 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__25; +x_466 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__39; +x_467 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_467, 0, x_451); lean_ctor_set(x_467, 1, x_465); -x_468 = lean_array_push(x_457, x_467); -x_469 = l_myMacro____x40_Init_Notation___hyg_1625____closed__4; -x_470 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_470, 0, x_469); -lean_ctor_set(x_470, 1, x_468); -x_471 = lean_array_push(x_450, x_470); -x_472 = l_myMacro____x40_Init_Notation___hyg_521____closed__23; -x_473 = lean_array_push(x_471, x_472); -x_474 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_474, 0, x_466); -lean_ctor_set(x_474, 1, x_473); -x_475 = l_myMacro____x40_Init_Notation___hyg_10790____closed__9; -x_476 = lean_array_push(x_475, x_474); -x_477 = l_myMacro____x40_Init_Notation___hyg_49____closed__16; +lean_ctor_set(x_467, 2, x_464); +lean_ctor_set(x_467, 3, x_466); +lean_inc(x_467); +x_468 = lean_array_push(x_455, x_467); +lean_inc(x_467); +x_469 = lean_array_push(x_468, x_467); +x_470 = lean_array_push(x_469, x_467); +x_471 = l_Lean_nullKind___closed__2; +x_472 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_472, 0, x_471); +lean_ctor_set(x_472, 1, x_470); +x_473 = lean_array_push(x_462, x_472); +x_474 = l_myMacro____x40_Init_Notation___hyg_1625____closed__4; +x_475 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_475, 0, x_474); +lean_ctor_set(x_475, 1, x_473); +x_476 = lean_array_push(x_455, x_475); +x_477 = l_myMacro____x40_Init_Notation___hyg_521____closed__23; x_478 = lean_array_push(x_476, x_477); -x_479 = l_myMacro____x40_Init_Notation___hyg_10790____closed__8; -x_480 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_480, 0, x_479); -lean_ctor_set(x_480, 1, x_478); -x_481 = lean_array_push(x_450, x_480); -x_482 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__49; -lean_inc(x_437); -lean_inc(x_440); -x_483 = l_Lean_addMacroScope(x_440, x_482, x_437); -x_484 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__48; -x_485 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__52; -x_486 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_486, 0, x_446); -lean_ctor_set(x_486, 1, x_484); -lean_ctor_set(x_486, 2, x_483); -lean_ctor_set(x_486, 3, x_485); -x_487 = lean_array_push(x_450, x_486); -x_488 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__56; -lean_inc(x_437); -lean_inc(x_440); -x_489 = l_Lean_addMacroScope(x_440, x_488, x_437); -x_490 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__55; +x_479 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_479, 0, x_471); +lean_ctor_set(x_479, 1, x_478); +x_480 = l_myMacro____x40_Init_Notation___hyg_10790____closed__9; +x_481 = lean_array_push(x_480, x_479); +x_482 = l_myMacro____x40_Init_Notation___hyg_49____closed__16; +x_483 = lean_array_push(x_481, x_482); +x_484 = l_myMacro____x40_Init_Notation___hyg_10790____closed__8; +x_485 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_485, 0, x_484); +lean_ctor_set(x_485, 1, x_483); +x_486 = lean_array_push(x_455, x_485); +x_487 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__50; +lean_inc(x_442); +lean_inc(x_445); +x_488 = l_Lean_addMacroScope(x_445, x_487, x_442); +x_489 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__49; +x_490 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__53; x_491 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_491, 0, x_446); -lean_ctor_set(x_491, 1, x_490); -lean_ctor_set(x_491, 2, x_489); -lean_ctor_set(x_491, 3, x_445); -x_492 = lean_array_push(x_450, x_491); -x_493 = lean_array_push(x_492, x_435); -x_494 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__60; -x_495 = l_Lean_addMacroScope(x_440, x_494, x_437); -x_496 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__59; -x_497 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_497, 0, x_446); -lean_ctor_set(x_497, 1, x_496); -lean_ctor_set(x_497, 2, x_495); -lean_ctor_set(x_497, 3, x_445); -x_498 = lean_array_push(x_493, x_497); -x_499 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_499, 0, x_466); -lean_ctor_set(x_499, 1, x_498); -x_500 = lean_array_push(x_487, x_499); -x_501 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_501, 0, x_469); -lean_ctor_set(x_501, 1, x_500); -x_502 = lean_array_push(x_450, x_501); -x_503 = lean_array_push(x_502, x_472); +lean_ctor_set(x_491, 0, x_451); +lean_ctor_set(x_491, 1, x_489); +lean_ctor_set(x_491, 2, x_488); +lean_ctor_set(x_491, 3, x_490); +x_492 = lean_array_push(x_455, x_491); +x_493 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__57; +lean_inc(x_442); +lean_inc(x_445); +x_494 = l_Lean_addMacroScope(x_445, x_493, x_442); +x_495 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__56; +x_496 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_496, 0, x_451); +lean_ctor_set(x_496, 1, x_495); +lean_ctor_set(x_496, 2, x_494); +lean_ctor_set(x_496, 3, x_450); +x_497 = lean_array_push(x_455, x_496); +x_498 = lean_array_push(x_497, x_440); +x_499 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__61; +x_500 = l_Lean_addMacroScope(x_445, x_499, x_442); +x_501 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__60; +x_502 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_502, 0, x_451); +lean_ctor_set(x_502, 1, x_501); +lean_ctor_set(x_502, 2, x_500); +lean_ctor_set(x_502, 3, x_450); +x_503 = lean_array_push(x_498, x_502); x_504 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_504, 0, x_466); +lean_ctor_set(x_504, 0, x_471); lean_ctor_set(x_504, 1, x_503); -x_505 = lean_array_push(x_475, x_504); -x_506 = lean_array_push(x_505, x_477); -x_507 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_507, 0, x_479); -lean_ctor_set(x_507, 1, x_506); -x_508 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5(x_434); -x_509 = lean_ctor_get(x_428, 0); -lean_inc(x_509); -x_510 = lean_ctor_get(x_428, 1); -lean_inc(x_510); -x_511 = lean_ctor_get(x_428, 2); -lean_inc(x_511); -lean_dec(x_428); -x_512 = lean_string_utf8_extract(x_509, x_510, x_511); -lean_dec(x_511); -lean_dec(x_510); -lean_dec(x_509); -x_513 = l_Lean_Syntax_mkStrLit(x_512, x_446); -lean_dec(x_512); -x_514 = l_Lean_mkOptionalNode___closed__2; -x_515 = lean_array_push(x_514, x_513); -x_516 = l_Lean_instQuoteSubstring___closed__4; -x_517 = l_Lean_Syntax_mkCApp(x_516, x_515); -x_518 = lean_array_push(x_481, x_517); -x_519 = lean_array_push(x_518, x_507); -x_520 = lean_array_push(x_519, x_508); -x_521 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_521, 0, x_466); -lean_ctor_set(x_521, 1, x_520); -x_522 = lean_array_push(x_451, x_521); -x_523 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_523, 0, x_469); -lean_ctor_set(x_523, 1, x_522); -if (lean_is_scalar(x_442)) { - x_524 = lean_alloc_ctor(0, 2, 0); +x_505 = lean_array_push(x_492, x_504); +x_506 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_506, 0, x_474); +lean_ctor_set(x_506, 1, x_505); +x_507 = lean_array_push(x_455, x_506); +x_508 = lean_array_push(x_507, x_477); +x_509 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_509, 0, x_471); +lean_ctor_set(x_509, 1, x_508); +x_510 = lean_array_push(x_480, x_509); +x_511 = lean_array_push(x_510, x_482); +x_512 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_512, 0, x_484); +lean_ctor_set(x_512, 1, x_511); +x_513 = l___private_Init_Meta_0__Lean_quoteList___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__5(x_439); +x_514 = lean_ctor_get(x_433, 0); +lean_inc(x_514); +x_515 = lean_ctor_get(x_433, 1); +lean_inc(x_515); +x_516 = lean_ctor_get(x_433, 2); +lean_inc(x_516); +lean_dec(x_433); +x_517 = lean_string_utf8_extract(x_514, x_515, x_516); +lean_dec(x_516); +lean_dec(x_515); +lean_dec(x_514); +x_518 = l_Lean_Syntax_mkStrLit(x_517, x_451); +lean_dec(x_517); +x_519 = l_Lean_mkOptionalNode___closed__2; +x_520 = lean_array_push(x_519, x_518); +x_521 = l_Lean_instQuoteSubstring___closed__4; +x_522 = l_Lean_Syntax_mkCApp(x_521, x_520); +x_523 = lean_array_push(x_486, x_522); +x_524 = lean_array_push(x_523, x_512); +x_525 = lean_array_push(x_524, x_513); +x_526 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_526, 0, x_471); +lean_ctor_set(x_526, 1, x_525); +x_527 = lean_array_push(x_456, x_526); +x_528 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_528, 0, x_474); +lean_ctor_set(x_528, 1, x_527); +if (lean_is_scalar(x_447)) { + x_529 = lean_alloc_ctor(0, 2, 0); } else { - x_524 = x_442; + x_529 = x_447; } -lean_ctor_set(x_524, 0, x_523); -lean_ctor_set(x_524, 1, x_441); -return x_524; +lean_ctor_set(x_529, 0, x_528); +lean_ctor_set(x_529, 1, x_446); +return x_529; } } } @@ -8476,11 +9623,11 @@ lean_ctor_set(x_32, 1, x_30); lean_ctor_set(x_32, 2, x_29); lean_ctor_set(x_32, 3, x_31); x_33 = lean_array_push(x_26, x_32); -x_34 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__60; +x_34 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__61; lean_inc(x_14); lean_inc(x_18); x_35 = l_Lean_addMacroScope(x_18, x_34, x_14); -x_36 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__59; +x_36 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__60; x_37 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_37, 0, x_22); lean_ctor_set(x_37, 1, x_36); @@ -8506,11 +9653,11 @@ lean_ctor_set(x_48, 1, x_46); lean_ctor_set(x_48, 2, x_45); lean_ctor_set(x_48, 3, x_47); x_49 = lean_array_push(x_26, x_48); -x_50 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__56; +x_50 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__57; lean_inc(x_14); lean_inc(x_18); x_51 = l_Lean_addMacroScope(x_18, x_50, x_14); -x_52 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__55; +x_52 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__56; x_53 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_53, 0, x_22); lean_ctor_set(x_53, 1, x_52); @@ -8639,11 +9786,11 @@ lean_ctor_set(x_119, 1, x_117); lean_ctor_set(x_119, 2, x_116); lean_ctor_set(x_119, 3, x_118); x_120 = lean_array_push(x_113, x_119); -x_121 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__60; +x_121 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__61; lean_inc(x_14); lean_inc(x_104); x_122 = l_Lean_addMacroScope(x_104, x_121, x_14); -x_123 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__59; +x_123 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__60; x_124 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_124, 0, x_109); lean_ctor_set(x_124, 1, x_123); @@ -8669,11 +9816,11 @@ lean_ctor_set(x_135, 1, x_133); lean_ctor_set(x_135, 2, x_132); lean_ctor_set(x_135, 3, x_134); x_136 = lean_array_push(x_113, x_135); -x_137 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__56; +x_137 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__57; lean_inc(x_14); lean_inc(x_104); x_138 = l_Lean_addMacroScope(x_104, x_137, x_14); -x_139 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__55; +x_139 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__56; x_140 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_140, 0, x_109); lean_ctor_set(x_140, 1, x_139); @@ -9921,6 +11068,125 @@ lean_dec(x_2); return x_9; } } +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo_match__1___rarg(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_1) == 0) +{ +lean_object* x_6; +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_6 = lean_apply_1(x_5, x_1); +return x_6; +} +else +{ +lean_object* x_7; +x_7 = lean_ctor_get(x_1, 0); +lean_inc(x_7); +if (lean_obj_tag(x_7) == 1) +{ +lean_object* x_8; +x_8 = lean_ctor_get(x_7, 0); +lean_inc(x_8); +if (lean_obj_tag(x_8) == 0) +{ +lean_object* x_9; size_t x_10; lean_object* x_11; uint8_t x_12; +x_9 = lean_ctor_get(x_7, 1); +lean_inc(x_9); +x_10 = lean_ctor_get_usize(x_7, 2); +lean_dec(x_7); +x_11 = l_myMacro____x40_Init_Notation___hyg_267____closed__1; +x_12 = lean_string_dec_eq(x_9, x_11); +if (x_12 == 0) +{ +lean_object* x_13; uint8_t x_14; +lean_dec(x_2); +x_13 = l_myMacro____x40_Init_Notation___hyg_158____closed__1; +x_14 = lean_string_dec_eq(x_9, x_13); +if (x_14 == 0) +{ +lean_object* x_15; uint8_t x_16; +lean_dec(x_3); +x_15 = l_myMacro____x40_Init_Notation___hyg_521____closed__1; +x_16 = lean_string_dec_eq(x_9, x_15); +lean_dec(x_9); +if (x_16 == 0) +{ +lean_object* x_17; +lean_dec(x_4); +x_17 = lean_apply_1(x_5, x_1); +return x_17; +} +else +{ +lean_object* x_18; lean_object* x_19; +lean_dec(x_5); +lean_dec(x_1); +x_18 = lean_box_usize(x_10); +x_19 = lean_apply_1(x_4, x_18); +return x_19; +} +} +else +{ +lean_object* x_20; lean_object* x_21; +lean_dec(x_9); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +x_20 = lean_box_usize(x_10); +x_21 = lean_apply_1(x_3, x_20); +return x_21; +} +} +else +{ +lean_object* x_22; lean_object* x_23; +lean_dec(x_9); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_1); +x_22 = lean_box_usize(x_10); +x_23 = lean_apply_1(x_2, x_22); +return x_23; +} +} +else +{ +lean_object* x_24; +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_24 = lean_apply_1(x_5, x_1); +return x_24; +} +} +else +{ +lean_object* x_25; +lean_dec(x_7); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_25 = lean_apply_1(x_5, x_1); +return x_25; +} +} +} +} +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo_match__1(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo_match__1___rarg), 5, 0); +return x_2; +} +} lean_object* l_List_head_x21___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___spec__1(lean_object* x_1) { _start: { @@ -10091,27 +11357,49 @@ return x_15; static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__1() { _start: { -lean_object* x_1; -x_1 = lean_mk_string("Syntax.getArgs"); -return x_1; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_instInhabitedSourceInfo___closed__1; +x_2 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__34; +x_3 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set(x_3, 1, x_2); +return x_3; } } static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__2() { _start: { -lean_object* x_1; lean_object* x_2; -x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__1; -x_2 = lean_string_utf8_byte_size(x_1); -return x_2; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Array_empty___closed__1; +x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__1; +x_3 = lean_array_push(x_1, x_2); +return x_3; } } static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__3() { _start: { +lean_object* x_1; +x_1 = lean_mk_string("SepArray.mk"); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__3; +x_2 = lean_string_utf8_byte_size(x_1); +return x_2; +} +} +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__5() { +_start: +{ lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__1; +x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__3; x_2 = lean_unsigned_to_nat(0u); -x_3 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__2; +x_3 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__4; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -10119,7 +11407,48 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__4() { +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__39; +x_2 = l_Lean_instQuoteProd___rarg___closed__1; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__7() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("Syntax.getArgs"); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__8() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__7; +x_2 = lean_string_utf8_byte_size(x_1); +return x_2; +} +} +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__9() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__7; +x_2 = lean_unsigned_to_nat(0u); +x_3 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__8; +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; +} +} +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__10() { _start: { lean_object* x_1; @@ -10127,17 +11456,17 @@ x_1 = lean_mk_string("getArgs"); return x_1; } } -static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__5() { +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__12; -x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__4; +x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__13; +x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__10; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__6() { +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__12() { _start: { lean_object* x_1; @@ -10145,22 +11474,22 @@ x_1 = lean_mk_string("discr"); return x_1; } } -static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__7() { +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__13() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__6; +x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__12; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__8() { +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__14() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__6; +x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__12; x_2 = lean_unsigned_to_nat(0u); -x_3 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__7; +x_3 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__13; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -10168,199 +11497,875 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__9() { +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__15() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__6; +x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__12; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_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* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__16() { _start: { -lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; uint8_t x_16; -x_12 = l_Lean_Elab_Term_getCurrMacroScope(x_5, x_6, x_7, x_8, x_9, x_10, x_11); -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_Term_getMainModule___rarg(x_10, x_14); -x_16 = !lean_is_exclusive(x_15); -if (x_16 == 0) +lean_object* x_1; +x_1 = lean_mk_string("Syntax.getOptional?"); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__17() { +_start: { -lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; -x_17 = lean_ctor_get(x_15, 0); -x_18 = l_myMacro____x40_Init_Notation___hyg_12545____closed__1; -lean_inc(x_1); -x_19 = lean_name_mk_string(x_1, x_18); -x_20 = l_myMacro____x40_Init_Notation___hyg_12545____closed__5; -lean_inc(x_1); -x_21 = lean_name_mk_string(x_1, x_20); -x_22 = l_myMacro____x40_Init_Notation___hyg_12545____closed__7; -lean_inc(x_1); -x_23 = lean_name_mk_string(x_1, x_22); -x_24 = l_Array_empty___closed__1; -x_25 = lean_array_push(x_24, x_2); -x_26 = l_myMacro____x40_Init_Notation___hyg_521____closed__23; -x_27 = lean_array_push(x_25, x_26); -x_28 = lean_array_push(x_27, x_26); -x_29 = l_myMacro____x40_Init_Notation___hyg_12545____closed__14; -x_30 = lean_array_push(x_28, x_29); -x_31 = l_myMacro____x40_Init_Notation___hyg_1625____closed__3; -x_32 = lean_name_mk_string(x_1, x_31); -x_33 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__5; -lean_inc(x_13); -lean_inc(x_17); -x_34 = l_Lean_addMacroScope(x_17, x_33, x_13); -x_35 = l_myMacro____x40_Init_Notation___hyg_49____closed__5; -x_36 = lean_name_mk_string(x_3, x_35); -x_37 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__4; -x_38 = lean_name_mk_string(x_36, x_37); -x_39 = lean_box(0); -x_40 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_40, 0, x_38); -lean_ctor_set(x_40, 1, 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 = l_Lean_instInhabitedSourceInfo___closed__1; -x_43 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__3; -x_44 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_44, 0, x_42); -lean_ctor_set(x_44, 1, x_43); -lean_ctor_set(x_44, 2, x_34); -lean_ctor_set(x_44, 3, x_41); -x_45 = lean_array_push(x_24, x_44); -x_46 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__9; -x_47 = l_Lean_addMacroScope(x_17, x_46, x_13); -x_48 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__8; -x_49 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_49, 0, x_42); -lean_ctor_set(x_49, 1, x_48); -lean_ctor_set(x_49, 2, x_47); -lean_ctor_set(x_49, 3, x_39); -x_50 = lean_array_push(x_24, x_49); -x_51 = l_Lean_nullKind___closed__2; -x_52 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_52, 0, x_51); -lean_ctor_set(x_52, 1, x_50); -x_53 = lean_array_push(x_45, x_52); -x_54 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_54, 0, x_32); -lean_ctor_set(x_54, 1, x_53); -x_55 = lean_array_push(x_30, x_54); -x_56 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_56, 0, x_23); -lean_ctor_set(x_56, 1, x_55); -x_57 = lean_array_push(x_24, x_56); -x_58 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_58, 0, x_21); -lean_ctor_set(x_58, 1, x_57); -x_59 = l_myMacro____x40_Init_Notation___hyg_12545____closed__4; -x_60 = lean_array_push(x_59, x_58); -x_61 = l_myMacro____x40_Init_Notation___hyg_12545____closed__18; -x_62 = lean_array_push(x_60, x_61); -x_63 = lean_array_push(x_62, x_4); -x_64 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_64, 0, x_19); -lean_ctor_set(x_64, 1, x_63); -lean_ctor_set(x_15, 0, x_64); -return x_15; +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__16; +x_2 = lean_string_utf8_byte_size(x_1); +return x_2; +} +} +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__18() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__16; +x_2 = lean_unsigned_to_nat(0u); +x_3 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__17; +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; +} +} +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__19() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("getOptional?"); +return x_1; +} +} +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__20() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__13; +x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__19; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_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* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { +_start: +{ +lean_object* x_14; +x_14 = l_Lean_Syntax_antiquotSuffixSplice_x3f(x_1); +if (lean_obj_tag(x_14) == 0) +{ +lean_object* x_15; lean_object* x_16; +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +x_15 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__33; +x_16 = l_Lean_throwErrorAt___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabTermAux___spec__1___rarg(x_2, x_15, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +return x_16; } else { -lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; -x_65 = lean_ctor_get(x_15, 0); -x_66 = lean_ctor_get(x_15, 1); -lean_inc(x_66); -lean_inc(x_65); -lean_dec(x_15); -x_67 = l_myMacro____x40_Init_Notation___hyg_12545____closed__1; -lean_inc(x_1); -x_68 = lean_name_mk_string(x_1, x_67); -x_69 = l_myMacro____x40_Init_Notation___hyg_12545____closed__5; -lean_inc(x_1); -x_70 = lean_name_mk_string(x_1, x_69); -x_71 = l_myMacro____x40_Init_Notation___hyg_12545____closed__7; -lean_inc(x_1); -x_72 = lean_name_mk_string(x_1, x_71); -x_73 = l_Array_empty___closed__1; -x_74 = lean_array_push(x_73, x_2); -x_75 = l_myMacro____x40_Init_Notation___hyg_521____closed__23; -x_76 = lean_array_push(x_74, x_75); -x_77 = lean_array_push(x_76, x_75); -x_78 = l_myMacro____x40_Init_Notation___hyg_12545____closed__14; -x_79 = lean_array_push(x_77, x_78); -x_80 = l_myMacro____x40_Init_Notation___hyg_1625____closed__3; -x_81 = lean_name_mk_string(x_1, x_80); -x_82 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__5; -lean_inc(x_13); -lean_inc(x_65); -x_83 = l_Lean_addMacroScope(x_65, x_82, x_13); -x_84 = l_myMacro____x40_Init_Notation___hyg_49____closed__5; -x_85 = lean_name_mk_string(x_3, x_84); -x_86 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__4; -x_87 = lean_name_mk_string(x_85, x_86); -x_88 = lean_box(0); -x_89 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_89, 0, x_87); -lean_ctor_set(x_89, 1, x_88); -x_90 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_90, 0, x_89); -lean_ctor_set(x_90, 1, x_88); -x_91 = l_Lean_instInhabitedSourceInfo___closed__1; -x_92 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__3; +lean_object* x_17; +x_17 = lean_ctor_get(x_14, 0); +lean_inc(x_17); +lean_dec(x_14); +if (lean_obj_tag(x_17) == 1) +{ +lean_object* x_18; +x_18 = lean_ctor_get(x_17, 0); +lean_inc(x_18); +if (lean_obj_tag(x_18) == 0) +{ +lean_object* x_19; lean_object* x_20; uint8_t x_21; +x_19 = lean_ctor_get(x_17, 1); +lean_inc(x_19); +x_20 = l_myMacro____x40_Init_Notation___hyg_267____closed__1; +x_21 = lean_string_dec_eq(x_19, x_20); +if (x_21 == 0) +{ +lean_object* x_22; uint8_t x_23; +x_22 = l_myMacro____x40_Init_Notation___hyg_158____closed__1; +x_23 = lean_string_dec_eq(x_19, x_22); +if (x_23 == 0) +{ +lean_object* x_24; uint8_t x_25; +x_24 = l_myMacro____x40_Init_Notation___hyg_521____closed__1; +x_25 = lean_string_dec_eq(x_19, x_24); +lean_dec(x_19); +if (x_25 == 0) +{ +lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +x_26 = lean_alloc_ctor(4, 1, 0); +lean_ctor_set(x_26, 0, x_17); +x_27 = l_Lean_instToMessageDataOption___rarg___closed__3; +x_28 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_28, 0, x_27); +lean_ctor_set(x_28, 1, x_26); +x_29 = l_Lean_instToMessageDataOption___rarg___closed__4; +x_30 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_30, 0, x_28); +lean_ctor_set(x_30, 1, x_29); +x_31 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__31; +x_32 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_32, 0, x_31); +lean_ctor_set(x_32, 1, x_30); +x_33 = l_Lean_KernelException_toMessageData___closed__3; +x_34 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_34, 0, x_32); +lean_ctor_set(x_34, 1, x_33); +x_35 = l_Lean_throwErrorAt___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabTermAux___spec__1___rarg(x_2, x_34, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +return x_35; +} +else +{ +lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; uint8_t x_40; +lean_dec(x_17); +x_36 = l_Lean_Elab_Term_getCurrMacroScope(x_7, x_8, x_9, x_10, x_11, x_12, x_13); +lean_dec(x_11); +lean_dec(x_7); +x_37 = lean_ctor_get(x_36, 0); +lean_inc(x_37); +x_38 = lean_ctor_get(x_36, 1); +lean_inc(x_38); +lean_dec(x_36); +x_39 = l_Lean_Elab_Term_getMainModule___rarg(x_12, x_38); +x_40 = !lean_is_exclusive(x_39); +if (x_40 == 0) +{ +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; lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; +x_41 = lean_ctor_get(x_39, 0); +x_42 = l_myMacro____x40_Init_Notation___hyg_12545____closed__1; +lean_inc(x_3); +x_43 = lean_name_mk_string(x_3, x_42); +x_44 = l_myMacro____x40_Init_Notation___hyg_12545____closed__5; +lean_inc(x_3); +x_45 = lean_name_mk_string(x_3, x_44); +x_46 = l_myMacro____x40_Init_Notation___hyg_12545____closed__7; +lean_inc(x_3); +x_47 = lean_name_mk_string(x_3, x_46); +x_48 = l_Array_empty___closed__1; +x_49 = lean_array_push(x_48, x_4); +x_50 = l_myMacro____x40_Init_Notation___hyg_521____closed__23; +x_51 = lean_array_push(x_49, x_50); +x_52 = lean_array_push(x_51, x_50); +x_53 = l_myMacro____x40_Init_Notation___hyg_12545____closed__14; +x_54 = lean_array_push(x_52, x_53); +x_55 = l_myMacro____x40_Init_Notation___hyg_1625____closed__3; +lean_inc(x_3); +x_56 = lean_name_mk_string(x_3, x_55); +x_57 = l_Lean_Expr_setPPExplicit___closed__3; +lean_inc(x_3); +x_58 = lean_name_mk_string(x_3, x_57); +x_59 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__6; +lean_inc(x_37); +lean_inc(x_41); +x_60 = l_Lean_addMacroScope(x_41, x_59, x_37); +x_61 = l_myMacro____x40_Init_Notation___hyg_49____closed__5; +x_62 = lean_name_mk_string(x_5, x_61); +x_63 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__38; +lean_inc(x_62); +x_64 = lean_name_mk_string(x_62, x_63); +x_65 = l_Lean_instQuoteProd___rarg___closed__1; +x_66 = lean_name_mk_string(x_64, x_65); +x_67 = lean_box(0); +x_68 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_68, 0, x_66); +lean_ctor_set(x_68, 1, x_67); +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_Lean_instInhabitedSourceInfo___closed__1; +x_71 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__5; +x_72 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_72, 0, x_70); +lean_ctor_set(x_72, 1, x_71); +lean_ctor_set(x_72, 2, x_60); +lean_ctor_set(x_72, 3, x_69); +x_73 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__2; +x_74 = lean_array_push(x_73, x_72); +x_75 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_75, 0, x_58); +lean_ctor_set(x_75, 1, x_74); +x_76 = lean_array_push(x_48, x_75); +x_77 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepFromSplice(x_1); +x_78 = lean_array_push(x_48, x_77); +x_79 = l_myMacro____x40_Init_Notation___hyg_10790____closed__7; +x_80 = lean_name_mk_string(x_3, x_79); +x_81 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__11; +lean_inc(x_37); +lean_inc(x_41); +x_82 = l_Lean_addMacroScope(x_41, x_81, x_37); +x_83 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__10; +x_84 = lean_name_mk_string(x_62, x_83); +x_85 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_85, 0, x_84); +lean_ctor_set(x_85, 1, x_67); +x_86 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_86, 0, x_85); +lean_ctor_set(x_86, 1, x_67); +x_87 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__9; +x_88 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_88, 0, x_70); +lean_ctor_set(x_88, 1, x_87); +lean_ctor_set(x_88, 2, x_82); +lean_ctor_set(x_88, 3, x_86); +x_89 = lean_array_push(x_48, x_88); +x_90 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__15; +x_91 = l_Lean_addMacroScope(x_41, x_90, x_37); +x_92 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__14; x_93 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_93, 0, x_91); +lean_ctor_set(x_93, 0, x_70); lean_ctor_set(x_93, 1, x_92); -lean_ctor_set(x_93, 2, x_83); -lean_ctor_set(x_93, 3, x_90); -x_94 = lean_array_push(x_73, x_93); -x_95 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__9; -x_96 = l_Lean_addMacroScope(x_65, x_95, x_13); -x_97 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__8; -x_98 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_98, 0, x_91); +lean_ctor_set(x_93, 2, x_91); +lean_ctor_set(x_93, 3, x_67); +x_94 = lean_array_push(x_48, x_93); +x_95 = l_Lean_nullKind___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_89, x_96); +lean_inc(x_56); +x_98 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_98, 0, x_56); lean_ctor_set(x_98, 1, x_97); -lean_ctor_set(x_98, 2, x_96); -lean_ctor_set(x_98, 3, x_88); -x_99 = lean_array_push(x_73, x_98); -x_100 = l_Lean_nullKind___closed__2; +x_99 = lean_array_push(x_48, x_98); +x_100 = lean_array_push(x_99, x_50); x_101 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_101, 0, x_100); -lean_ctor_set(x_101, 1, x_99); -x_102 = lean_array_push(x_94, x_101); -x_103 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_103, 0, x_81); -lean_ctor_set(x_103, 1, x_102); -x_104 = lean_array_push(x_79, x_103); -x_105 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_105, 0, x_72); -lean_ctor_set(x_105, 1, x_104); -x_106 = lean_array_push(x_73, x_105); -x_107 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_107, 0, x_70); -lean_ctor_set(x_107, 1, x_106); -x_108 = l_myMacro____x40_Init_Notation___hyg_12545____closed__4; -x_109 = lean_array_push(x_108, x_107); -x_110 = l_myMacro____x40_Init_Notation___hyg_12545____closed__18; -x_111 = lean_array_push(x_109, x_110); -x_112 = lean_array_push(x_111, x_4); -x_113 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_113, 0, x_68); -lean_ctor_set(x_113, 1, x_112); -x_114 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_114, 0, x_113); -lean_ctor_set(x_114, 1, x_66); -return x_114; +lean_ctor_set(x_101, 0, x_95); +lean_ctor_set(x_101, 1, x_100); +x_102 = l_myMacro____x40_Init_Notation___hyg_10790____closed__9; +x_103 = lean_array_push(x_102, x_101); +x_104 = l_myMacro____x40_Init_Notation___hyg_49____closed__16; +x_105 = lean_array_push(x_103, x_104); +x_106 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_106, 0, x_80); +lean_ctor_set(x_106, 1, x_105); +x_107 = lean_array_push(x_78, x_106); +x_108 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_108, 0, x_95); +lean_ctor_set(x_108, 1, x_107); +x_109 = lean_array_push(x_76, x_108); +x_110 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_110, 0, x_56); +lean_ctor_set(x_110, 1, x_109); +x_111 = lean_array_push(x_54, x_110); +x_112 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_112, 0, x_47); +lean_ctor_set(x_112, 1, x_111); +x_113 = lean_array_push(x_48, x_112); +x_114 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_114, 0, x_45); +lean_ctor_set(x_114, 1, x_113); +x_115 = l_myMacro____x40_Init_Notation___hyg_12545____closed__4; +x_116 = lean_array_push(x_115, x_114); +x_117 = l_myMacro____x40_Init_Notation___hyg_12545____closed__18; +x_118 = lean_array_push(x_116, x_117); +x_119 = lean_array_push(x_118, x_6); +x_120 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_120, 0, x_43); +lean_ctor_set(x_120, 1, x_119); +lean_ctor_set(x_39, 0, x_120); +return x_39; +} +else +{ +lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; lean_object* x_169; lean_object* x_170; lean_object* x_171; lean_object* x_172; lean_object* x_173; lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; lean_object* x_178; lean_object* x_179; lean_object* x_180; lean_object* x_181; lean_object* x_182; lean_object* x_183; lean_object* x_184; lean_object* x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; lean_object* x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; lean_object* x_200; lean_object* x_201; lean_object* x_202; +x_121 = lean_ctor_get(x_39, 0); +x_122 = lean_ctor_get(x_39, 1); +lean_inc(x_122); +lean_inc(x_121); +lean_dec(x_39); +x_123 = l_myMacro____x40_Init_Notation___hyg_12545____closed__1; +lean_inc(x_3); +x_124 = lean_name_mk_string(x_3, x_123); +x_125 = l_myMacro____x40_Init_Notation___hyg_12545____closed__5; +lean_inc(x_3); +x_126 = lean_name_mk_string(x_3, x_125); +x_127 = l_myMacro____x40_Init_Notation___hyg_12545____closed__7; +lean_inc(x_3); +x_128 = lean_name_mk_string(x_3, x_127); +x_129 = l_Array_empty___closed__1; +x_130 = lean_array_push(x_129, x_4); +x_131 = l_myMacro____x40_Init_Notation___hyg_521____closed__23; +x_132 = lean_array_push(x_130, x_131); +x_133 = lean_array_push(x_132, x_131); +x_134 = l_myMacro____x40_Init_Notation___hyg_12545____closed__14; +x_135 = lean_array_push(x_133, x_134); +x_136 = l_myMacro____x40_Init_Notation___hyg_1625____closed__3; +lean_inc(x_3); +x_137 = lean_name_mk_string(x_3, x_136); +x_138 = l_Lean_Expr_setPPExplicit___closed__3; +lean_inc(x_3); +x_139 = lean_name_mk_string(x_3, x_138); +x_140 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__6; +lean_inc(x_37); +lean_inc(x_121); +x_141 = l_Lean_addMacroScope(x_121, x_140, x_37); +x_142 = l_myMacro____x40_Init_Notation___hyg_49____closed__5; +x_143 = lean_name_mk_string(x_5, x_142); +x_144 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__38; +lean_inc(x_143); +x_145 = lean_name_mk_string(x_143, x_144); +x_146 = l_Lean_instQuoteProd___rarg___closed__1; +x_147 = lean_name_mk_string(x_145, x_146); +x_148 = lean_box(0); +x_149 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_149, 0, x_147); +lean_ctor_set(x_149, 1, x_148); +x_150 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_150, 0, x_149); +lean_ctor_set(x_150, 1, x_148); +x_151 = l_Lean_instInhabitedSourceInfo___closed__1; +x_152 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__5; +x_153 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_153, 0, x_151); +lean_ctor_set(x_153, 1, x_152); +lean_ctor_set(x_153, 2, x_141); +lean_ctor_set(x_153, 3, x_150); +x_154 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__2; +x_155 = lean_array_push(x_154, x_153); +x_156 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_156, 0, x_139); +lean_ctor_set(x_156, 1, x_155); +x_157 = lean_array_push(x_129, x_156); +x_158 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepFromSplice(x_1); +x_159 = lean_array_push(x_129, x_158); +x_160 = l_myMacro____x40_Init_Notation___hyg_10790____closed__7; +x_161 = lean_name_mk_string(x_3, x_160); +x_162 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__11; +lean_inc(x_37); +lean_inc(x_121); +x_163 = l_Lean_addMacroScope(x_121, x_162, x_37); +x_164 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__10; +x_165 = lean_name_mk_string(x_143, x_164); +x_166 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_166, 0, x_165); +lean_ctor_set(x_166, 1, x_148); +x_167 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_167, 0, x_166); +lean_ctor_set(x_167, 1, x_148); +x_168 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__9; +x_169 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_169, 0, x_151); +lean_ctor_set(x_169, 1, x_168); +lean_ctor_set(x_169, 2, x_163); +lean_ctor_set(x_169, 3, x_167); +x_170 = lean_array_push(x_129, x_169); +x_171 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__15; +x_172 = l_Lean_addMacroScope(x_121, x_171, x_37); +x_173 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__14; +x_174 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_174, 0, x_151); +lean_ctor_set(x_174, 1, x_173); +lean_ctor_set(x_174, 2, x_172); +lean_ctor_set(x_174, 3, x_148); +x_175 = lean_array_push(x_129, x_174); +x_176 = l_Lean_nullKind___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_170, x_177); +lean_inc(x_137); +x_179 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_179, 0, x_137); +lean_ctor_set(x_179, 1, x_178); +x_180 = lean_array_push(x_129, x_179); +x_181 = lean_array_push(x_180, x_131); +x_182 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_182, 0, x_176); +lean_ctor_set(x_182, 1, x_181); +x_183 = l_myMacro____x40_Init_Notation___hyg_10790____closed__9; +x_184 = lean_array_push(x_183, x_182); +x_185 = l_myMacro____x40_Init_Notation___hyg_49____closed__16; +x_186 = lean_array_push(x_184, x_185); +x_187 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_187, 0, x_161); +lean_ctor_set(x_187, 1, x_186); +x_188 = lean_array_push(x_159, x_187); +x_189 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_189, 0, x_176); +lean_ctor_set(x_189, 1, x_188); +x_190 = lean_array_push(x_157, x_189); +x_191 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_191, 0, x_137); +lean_ctor_set(x_191, 1, x_190); +x_192 = lean_array_push(x_135, x_191); +x_193 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_193, 0, x_128); +lean_ctor_set(x_193, 1, x_192); +x_194 = lean_array_push(x_129, x_193); +x_195 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_195, 0, x_126); +lean_ctor_set(x_195, 1, x_194); +x_196 = l_myMacro____x40_Init_Notation___hyg_12545____closed__4; +x_197 = lean_array_push(x_196, x_195); +x_198 = l_myMacro____x40_Init_Notation___hyg_12545____closed__18; +x_199 = lean_array_push(x_197, x_198); +x_200 = lean_array_push(x_199, x_6); +x_201 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_201, 0, x_124); +lean_ctor_set(x_201, 1, x_200); +x_202 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_202, 0, x_201); +lean_ctor_set(x_202, 1, x_122); +return x_202; } } } -static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__3___closed__1() { +else +{ +lean_object* x_203; lean_object* x_204; lean_object* x_205; lean_object* x_206; uint8_t x_207; +lean_dec(x_19); +lean_dec(x_17); +x_203 = l_Lean_Elab_Term_getCurrMacroScope(x_7, x_8, x_9, x_10, x_11, x_12, x_13); +lean_dec(x_11); +lean_dec(x_7); +x_204 = lean_ctor_get(x_203, 0); +lean_inc(x_204); +x_205 = lean_ctor_get(x_203, 1); +lean_inc(x_205); +lean_dec(x_203); +x_206 = l_Lean_Elab_Term_getMainModule___rarg(x_12, x_205); +x_207 = !lean_is_exclusive(x_206); +if (x_207 == 0) +{ +lean_object* x_208; lean_object* x_209; lean_object* x_210; lean_object* x_211; lean_object* x_212; lean_object* x_213; lean_object* x_214; lean_object* x_215; lean_object* x_216; lean_object* x_217; lean_object* x_218; lean_object* x_219; lean_object* x_220; lean_object* x_221; lean_object* x_222; lean_object* x_223; lean_object* x_224; lean_object* x_225; lean_object* x_226; lean_object* x_227; lean_object* x_228; lean_object* x_229; lean_object* x_230; lean_object* x_231; lean_object* x_232; lean_object* x_233; lean_object* x_234; lean_object* x_235; lean_object* x_236; lean_object* x_237; lean_object* x_238; lean_object* x_239; lean_object* x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; lean_object* x_247; lean_object* x_248; lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; lean_object* x_255; +x_208 = lean_ctor_get(x_206, 0); +x_209 = l_myMacro____x40_Init_Notation___hyg_12545____closed__1; +lean_inc(x_3); +x_210 = lean_name_mk_string(x_3, x_209); +x_211 = l_myMacro____x40_Init_Notation___hyg_12545____closed__5; +lean_inc(x_3); +x_212 = lean_name_mk_string(x_3, x_211); +x_213 = l_myMacro____x40_Init_Notation___hyg_12545____closed__7; +lean_inc(x_3); +x_214 = lean_name_mk_string(x_3, x_213); +x_215 = l_Array_empty___closed__1; +x_216 = lean_array_push(x_215, x_4); +x_217 = l_myMacro____x40_Init_Notation___hyg_521____closed__23; +x_218 = lean_array_push(x_216, x_217); +x_219 = lean_array_push(x_218, x_217); +x_220 = l_myMacro____x40_Init_Notation___hyg_12545____closed__14; +x_221 = lean_array_push(x_219, x_220); +x_222 = l_myMacro____x40_Init_Notation___hyg_1625____closed__3; +x_223 = lean_name_mk_string(x_3, x_222); +x_224 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__11; +lean_inc(x_204); +lean_inc(x_208); +x_225 = l_Lean_addMacroScope(x_208, x_224, x_204); +x_226 = l_myMacro____x40_Init_Notation___hyg_49____closed__5; +x_227 = lean_name_mk_string(x_5, x_226); +x_228 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__10; +x_229 = lean_name_mk_string(x_227, x_228); +x_230 = lean_box(0); +x_231 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_231, 0, x_229); +lean_ctor_set(x_231, 1, x_230); +x_232 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_232, 0, x_231); +lean_ctor_set(x_232, 1, x_230); +x_233 = l_Lean_instInhabitedSourceInfo___closed__1; +x_234 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__9; +x_235 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_235, 0, x_233); +lean_ctor_set(x_235, 1, x_234); +lean_ctor_set(x_235, 2, x_225); +lean_ctor_set(x_235, 3, x_232); +x_236 = lean_array_push(x_215, x_235); +x_237 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__15; +x_238 = l_Lean_addMacroScope(x_208, x_237, x_204); +x_239 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__14; +x_240 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_240, 0, x_233); +lean_ctor_set(x_240, 1, x_239); +lean_ctor_set(x_240, 2, x_238); +lean_ctor_set(x_240, 3, x_230); +x_241 = lean_array_push(x_215, x_240); +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 = lean_array_push(x_236, x_243); +x_245 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_245, 0, x_223); +lean_ctor_set(x_245, 1, x_244); +x_246 = lean_array_push(x_221, x_245); +x_247 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_247, 0, x_214); +lean_ctor_set(x_247, 1, x_246); +x_248 = lean_array_push(x_215, x_247); +x_249 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_249, 0, x_212); +lean_ctor_set(x_249, 1, x_248); +x_250 = l_myMacro____x40_Init_Notation___hyg_12545____closed__4; +x_251 = lean_array_push(x_250, x_249); +x_252 = l_myMacro____x40_Init_Notation___hyg_12545____closed__18; +x_253 = lean_array_push(x_251, x_252); +x_254 = lean_array_push(x_253, x_6); +x_255 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_255, 0, x_210); +lean_ctor_set(x_255, 1, x_254); +lean_ctor_set(x_206, 0, x_255); +return x_206; +} +else +{ +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; +x_256 = lean_ctor_get(x_206, 0); +x_257 = lean_ctor_get(x_206, 1); +lean_inc(x_257); +lean_inc(x_256); +lean_dec(x_206); +x_258 = l_myMacro____x40_Init_Notation___hyg_12545____closed__1; +lean_inc(x_3); +x_259 = lean_name_mk_string(x_3, x_258); +x_260 = l_myMacro____x40_Init_Notation___hyg_12545____closed__5; +lean_inc(x_3); +x_261 = lean_name_mk_string(x_3, x_260); +x_262 = l_myMacro____x40_Init_Notation___hyg_12545____closed__7; +lean_inc(x_3); +x_263 = lean_name_mk_string(x_3, x_262); +x_264 = l_Array_empty___closed__1; +x_265 = lean_array_push(x_264, x_4); +x_266 = l_myMacro____x40_Init_Notation___hyg_521____closed__23; +x_267 = lean_array_push(x_265, x_266); +x_268 = lean_array_push(x_267, x_266); +x_269 = l_myMacro____x40_Init_Notation___hyg_12545____closed__14; +x_270 = lean_array_push(x_268, x_269); +x_271 = l_myMacro____x40_Init_Notation___hyg_1625____closed__3; +x_272 = lean_name_mk_string(x_3, x_271); +x_273 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__11; +lean_inc(x_204); +lean_inc(x_256); +x_274 = l_Lean_addMacroScope(x_256, x_273, x_204); +x_275 = l_myMacro____x40_Init_Notation___hyg_49____closed__5; +x_276 = lean_name_mk_string(x_5, x_275); +x_277 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__10; +x_278 = lean_name_mk_string(x_276, x_277); +x_279 = lean_box(0); +x_280 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_280, 0, x_278); +lean_ctor_set(x_280, 1, x_279); +x_281 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_281, 0, x_280); +lean_ctor_set(x_281, 1, x_279); +x_282 = l_Lean_instInhabitedSourceInfo___closed__1; +x_283 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__9; +x_284 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_284, 0, x_282); +lean_ctor_set(x_284, 1, x_283); +lean_ctor_set(x_284, 2, x_274); +lean_ctor_set(x_284, 3, x_281); +x_285 = lean_array_push(x_264, x_284); +x_286 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__15; +x_287 = l_Lean_addMacroScope(x_256, x_286, x_204); +x_288 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__14; +x_289 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_289, 0, x_282); +lean_ctor_set(x_289, 1, x_288); +lean_ctor_set(x_289, 2, x_287); +lean_ctor_set(x_289, 3, x_279); +x_290 = lean_array_push(x_264, x_289); +x_291 = l_Lean_nullKind___closed__2; +x_292 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_292, 0, x_291); +lean_ctor_set(x_292, 1, x_290); +x_293 = lean_array_push(x_285, x_292); +x_294 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_294, 0, x_272); +lean_ctor_set(x_294, 1, x_293); +x_295 = lean_array_push(x_270, x_294); +x_296 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_296, 0, x_263); +lean_ctor_set(x_296, 1, x_295); +x_297 = lean_array_push(x_264, x_296); +x_298 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_298, 0, x_261); +lean_ctor_set(x_298, 1, x_297); +x_299 = l_myMacro____x40_Init_Notation___hyg_12545____closed__4; +x_300 = lean_array_push(x_299, x_298); +x_301 = l_myMacro____x40_Init_Notation___hyg_12545____closed__18; +x_302 = lean_array_push(x_300, x_301); +x_303 = lean_array_push(x_302, x_6); +x_304 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_304, 0, x_259); +lean_ctor_set(x_304, 1, x_303); +x_305 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_305, 0, x_304); +lean_ctor_set(x_305, 1, x_257); +return x_305; +} +} +} +else +{ +lean_object* x_306; lean_object* x_307; lean_object* x_308; lean_object* x_309; uint8_t x_310; +lean_dec(x_19); +lean_dec(x_17); +x_306 = l_Lean_Elab_Term_getCurrMacroScope(x_7, x_8, x_9, x_10, x_11, x_12, x_13); +lean_dec(x_11); +lean_dec(x_7); +x_307 = lean_ctor_get(x_306, 0); +lean_inc(x_307); +x_308 = lean_ctor_get(x_306, 1); +lean_inc(x_308); +lean_dec(x_306); +x_309 = l_Lean_Elab_Term_getMainModule___rarg(x_12, x_308); +x_310 = !lean_is_exclusive(x_309); +if (x_310 == 0) +{ +lean_object* x_311; lean_object* x_312; lean_object* x_313; lean_object* x_314; lean_object* x_315; lean_object* x_316; lean_object* x_317; lean_object* x_318; lean_object* x_319; lean_object* x_320; lean_object* x_321; lean_object* x_322; lean_object* x_323; lean_object* x_324; lean_object* x_325; lean_object* x_326; lean_object* x_327; lean_object* x_328; lean_object* x_329; lean_object* x_330; lean_object* x_331; lean_object* x_332; lean_object* x_333; lean_object* x_334; lean_object* x_335; lean_object* x_336; lean_object* x_337; lean_object* x_338; lean_object* x_339; lean_object* x_340; lean_object* x_341; lean_object* x_342; lean_object* x_343; lean_object* x_344; lean_object* x_345; lean_object* x_346; lean_object* x_347; lean_object* x_348; lean_object* x_349; lean_object* x_350; lean_object* x_351; lean_object* x_352; lean_object* x_353; lean_object* x_354; lean_object* x_355; lean_object* x_356; lean_object* x_357; lean_object* x_358; +x_311 = lean_ctor_get(x_309, 0); +x_312 = l_myMacro____x40_Init_Notation___hyg_12545____closed__1; +lean_inc(x_3); +x_313 = lean_name_mk_string(x_3, x_312); +x_314 = l_myMacro____x40_Init_Notation___hyg_12545____closed__5; +lean_inc(x_3); +x_315 = lean_name_mk_string(x_3, x_314); +x_316 = l_myMacro____x40_Init_Notation___hyg_12545____closed__7; +lean_inc(x_3); +x_317 = lean_name_mk_string(x_3, x_316); +x_318 = l_Array_empty___closed__1; +x_319 = lean_array_push(x_318, x_4); +x_320 = l_myMacro____x40_Init_Notation___hyg_521____closed__23; +x_321 = lean_array_push(x_319, x_320); +x_322 = lean_array_push(x_321, x_320); +x_323 = l_myMacro____x40_Init_Notation___hyg_12545____closed__14; +x_324 = lean_array_push(x_322, x_323); +x_325 = l_myMacro____x40_Init_Notation___hyg_1625____closed__3; +x_326 = lean_name_mk_string(x_3, x_325); +x_327 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__20; +lean_inc(x_307); +lean_inc(x_311); +x_328 = l_Lean_addMacroScope(x_311, x_327, x_307); +x_329 = l_myMacro____x40_Init_Notation___hyg_49____closed__5; +x_330 = lean_name_mk_string(x_5, x_329); +x_331 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__19; +x_332 = lean_name_mk_string(x_330, x_331); +x_333 = lean_box(0); +x_334 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_334, 0, x_332); +lean_ctor_set(x_334, 1, x_333); +x_335 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_335, 0, x_334); +lean_ctor_set(x_335, 1, x_333); +x_336 = l_Lean_instInhabitedSourceInfo___closed__1; +x_337 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__18; +x_338 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_338, 0, x_336); +lean_ctor_set(x_338, 1, x_337); +lean_ctor_set(x_338, 2, x_328); +lean_ctor_set(x_338, 3, x_335); +x_339 = lean_array_push(x_318, x_338); +x_340 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__15; +x_341 = l_Lean_addMacroScope(x_311, x_340, x_307); +x_342 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__14; +x_343 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_343, 0, x_336); +lean_ctor_set(x_343, 1, x_342); +lean_ctor_set(x_343, 2, x_341); +lean_ctor_set(x_343, 3, x_333); +x_344 = lean_array_push(x_318, x_343); +x_345 = l_Lean_nullKind___closed__2; +x_346 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_346, 0, x_345); +lean_ctor_set(x_346, 1, x_344); +x_347 = lean_array_push(x_339, x_346); +x_348 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_348, 0, x_326); +lean_ctor_set(x_348, 1, x_347); +x_349 = lean_array_push(x_324, x_348); +x_350 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_350, 0, x_317); +lean_ctor_set(x_350, 1, x_349); +x_351 = lean_array_push(x_318, x_350); +x_352 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_352, 0, x_315); +lean_ctor_set(x_352, 1, x_351); +x_353 = l_myMacro____x40_Init_Notation___hyg_12545____closed__4; +x_354 = lean_array_push(x_353, x_352); +x_355 = l_myMacro____x40_Init_Notation___hyg_12545____closed__18; +x_356 = lean_array_push(x_354, x_355); +x_357 = lean_array_push(x_356, x_6); +x_358 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_358, 0, x_313); +lean_ctor_set(x_358, 1, x_357); +lean_ctor_set(x_309, 0, x_358); +return x_309; +} +else +{ +lean_object* x_359; lean_object* x_360; lean_object* x_361; lean_object* x_362; lean_object* x_363; lean_object* x_364; lean_object* x_365; lean_object* x_366; lean_object* x_367; lean_object* x_368; lean_object* x_369; lean_object* x_370; lean_object* x_371; lean_object* x_372; lean_object* x_373; lean_object* x_374; lean_object* x_375; lean_object* x_376; lean_object* x_377; lean_object* x_378; lean_object* x_379; lean_object* x_380; lean_object* x_381; lean_object* x_382; lean_object* x_383; lean_object* x_384; lean_object* x_385; lean_object* x_386; lean_object* x_387; lean_object* x_388; lean_object* x_389; lean_object* x_390; lean_object* x_391; lean_object* x_392; lean_object* x_393; lean_object* x_394; lean_object* x_395; lean_object* x_396; lean_object* x_397; lean_object* x_398; lean_object* x_399; lean_object* x_400; lean_object* x_401; lean_object* x_402; lean_object* x_403; lean_object* x_404; lean_object* x_405; lean_object* x_406; lean_object* x_407; lean_object* x_408; +x_359 = lean_ctor_get(x_309, 0); +x_360 = lean_ctor_get(x_309, 1); +lean_inc(x_360); +lean_inc(x_359); +lean_dec(x_309); +x_361 = l_myMacro____x40_Init_Notation___hyg_12545____closed__1; +lean_inc(x_3); +x_362 = lean_name_mk_string(x_3, x_361); +x_363 = l_myMacro____x40_Init_Notation___hyg_12545____closed__5; +lean_inc(x_3); +x_364 = lean_name_mk_string(x_3, x_363); +x_365 = l_myMacro____x40_Init_Notation___hyg_12545____closed__7; +lean_inc(x_3); +x_366 = lean_name_mk_string(x_3, x_365); +x_367 = l_Array_empty___closed__1; +x_368 = lean_array_push(x_367, x_4); +x_369 = l_myMacro____x40_Init_Notation___hyg_521____closed__23; +x_370 = lean_array_push(x_368, x_369); +x_371 = lean_array_push(x_370, x_369); +x_372 = l_myMacro____x40_Init_Notation___hyg_12545____closed__14; +x_373 = lean_array_push(x_371, x_372); +x_374 = l_myMacro____x40_Init_Notation___hyg_1625____closed__3; +x_375 = lean_name_mk_string(x_3, x_374); +x_376 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__20; +lean_inc(x_307); +lean_inc(x_359); +x_377 = l_Lean_addMacroScope(x_359, x_376, x_307); +x_378 = l_myMacro____x40_Init_Notation___hyg_49____closed__5; +x_379 = lean_name_mk_string(x_5, x_378); +x_380 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__19; +x_381 = lean_name_mk_string(x_379, x_380); +x_382 = lean_box(0); +x_383 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_383, 0, x_381); +lean_ctor_set(x_383, 1, x_382); +x_384 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_384, 0, x_383); +lean_ctor_set(x_384, 1, x_382); +x_385 = l_Lean_instInhabitedSourceInfo___closed__1; +x_386 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__18; +x_387 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_387, 0, x_385); +lean_ctor_set(x_387, 1, x_386); +lean_ctor_set(x_387, 2, x_377); +lean_ctor_set(x_387, 3, x_384); +x_388 = lean_array_push(x_367, x_387); +x_389 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__15; +x_390 = l_Lean_addMacroScope(x_359, x_389, x_307); +x_391 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__14; +x_392 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_392, 0, x_385); +lean_ctor_set(x_392, 1, x_391); +lean_ctor_set(x_392, 2, x_390); +lean_ctor_set(x_392, 3, x_382); +x_393 = lean_array_push(x_367, x_392); +x_394 = l_Lean_nullKind___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_388, x_395); +x_397 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_397, 0, x_375); +lean_ctor_set(x_397, 1, x_396); +x_398 = lean_array_push(x_373, x_397); +x_399 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_399, 0, x_366); +lean_ctor_set(x_399, 1, x_398); +x_400 = lean_array_push(x_367, x_399); +x_401 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_401, 0, x_364); +lean_ctor_set(x_401, 1, x_400); +x_402 = l_myMacro____x40_Init_Notation___hyg_12545____closed__4; +x_403 = lean_array_push(x_402, x_401); +x_404 = l_myMacro____x40_Init_Notation___hyg_12545____closed__18; +x_405 = lean_array_push(x_403, x_404); +x_406 = lean_array_push(x_405, x_6); +x_407 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_407, 0, x_362); +lean_ctor_set(x_407, 1, x_406); +x_408 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_408, 0, x_407); +lean_ctor_set(x_408, 1, x_360); +return x_408; +} +} +} +else +{ +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_dec(x_18); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +x_409 = lean_alloc_ctor(4, 1, 0); +lean_ctor_set(x_409, 0, x_17); +x_410 = l_Lean_instToMessageDataOption___rarg___closed__3; +x_411 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_411, 0, x_410); +lean_ctor_set(x_411, 1, x_409); +x_412 = l_Lean_instToMessageDataOption___rarg___closed__4; +x_413 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_413, 0, x_411); +lean_ctor_set(x_413, 1, x_412); +x_414 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__31; +x_415 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_415, 0, x_414); +lean_ctor_set(x_415, 1, x_413); +x_416 = l_Lean_KernelException_toMessageData___closed__3; +x_417 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_417, 0, x_415); +lean_ctor_set(x_417, 1, x_416); +x_418 = l_Lean_throwErrorAt___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabTermAux___spec__1___rarg(x_2, x_417, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +return x_418; +} +} +else +{ +lean_object* x_419; lean_object* x_420; lean_object* x_421; lean_object* x_422; lean_object* x_423; lean_object* x_424; lean_object* x_425; lean_object* x_426; lean_object* x_427; lean_object* x_428; +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +x_419 = lean_alloc_ctor(4, 1, 0); +lean_ctor_set(x_419, 0, x_17); +x_420 = l_Lean_instToMessageDataOption___rarg___closed__3; +x_421 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_421, 0, x_420); +lean_ctor_set(x_421, 1, x_419); +x_422 = l_Lean_instToMessageDataOption___rarg___closed__4; +x_423 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_423, 0, x_421); +lean_ctor_set(x_423, 1, x_422); +x_424 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__31; +x_425 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_425, 0, x_424); +lean_ctor_set(x_425, 1, x_423); +x_426 = l_Lean_KernelException_toMessageData___closed__3; +x_427 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_427, 0, x_425); +lean_ctor_set(x_427, 1, x_426); +x_428 = l_Lean_throwErrorAt___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabTermAux___spec__1___rarg(x_2, x_427, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +return x_428; +} +} +} +} +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +_start: +{ +lean_object* x_10; lean_object* x_11; +x_10 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__20; +x_11 = l_Lean_throwErrorAt___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabTermAux___spec__1___rarg(x_1, x_10, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +return x_11; +} +} +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__4___closed__1() { _start: { lean_object* x_1; @@ -10368,23 +12373,23 @@ x_1 = lean_mk_string("match_syntax: antiquotation must be variable "); return x_1; } } -static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__3___closed__2() { +static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__4___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__3___closed__1; +x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__4___closed__1; x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__4(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_inc(x_1); x_10 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_10, 0, x_1); -x_11 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__3___closed__2; +x_11 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__4___closed__2; x_12 = lean_alloc_ctor(10, 2, 0); lean_ctor_set(x_12, 0, x_11); lean_ctor_set(x_12, 1, x_10); @@ -10397,7 +12402,7 @@ lean_dec(x_1); return x_15; } } -lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__4(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_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* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; uint8_t x_16; @@ -10442,10 +12447,10 @@ x_33 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_33, 0, x_20); lean_ctor_set(x_33, 1, x_32); x_34 = lean_array_push(x_31, x_33); -x_35 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__9; +x_35 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__15; x_36 = l_Lean_addMacroScope(x_17, x_35, x_13); x_37 = lean_box(0); -x_38 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__8; +x_38 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__14; lean_inc(x_20); x_39 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_39, 0, x_20); @@ -10515,10 +12520,10 @@ x_70 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_70, 0, x_57); lean_ctor_set(x_70, 1, x_69); x_71 = lean_array_push(x_68, x_70); -x_72 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__9; +x_72 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__15; x_73 = l_Lean_addMacroScope(x_53, x_72, x_13); x_74 = lean_box(0); -x_75 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__8; +x_75 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__14; lean_inc(x_57); x_76 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_76, 0, x_57); @@ -10555,55 +12560,9 @@ return x_90; } } } -static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__5___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("unexpected antiquotation scope"); -return x_1; -} -} -static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__5___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__5___closed__1; -x_2 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__5___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__5___closed__2; -x_2 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_2, 0, x_1); -return x_2; -} -} -lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_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* x_7, lean_object* x_8, lean_object* x_9) { -_start: -{ -lean_object* x_10; lean_object* x_11; -x_10 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__5___closed__3; -x_11 = l_Lean_throwErrorAt___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabTermAux___spec__1___rarg(x_1, x_10, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -return x_11; -} -} lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__6(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { -lean_object* x_10; lean_object* x_11; -x_10 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__19; -x_11 = l_Lean_throwErrorAt___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabTermAux___spec__1___rarg(x_1, x_10, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -return x_11; -} -} -lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__7(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { -_start: -{ lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; uint8_t x_14; x_10 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4, x_5, x_6, x_7, x_8, x_9); x_11 = lean_ctor_get(x_10, 0); @@ -10624,11 +12583,11 @@ x_19 = lean_array_push(x_17, x_18); x_20 = lean_array_push(x_19, x_18); x_21 = l_myMacro____x40_Init_Notation___hyg_12545____closed__14; x_22 = lean_array_push(x_20, x_21); -x_23 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__9; +x_23 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__15; x_24 = l_Lean_addMacroScope(x_15, x_23, x_11); x_25 = lean_box(0); x_26 = l_Lean_instInhabitedSourceInfo___closed__1; -x_27 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__8; +x_27 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__14; x_28 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_28, 0, x_26); lean_ctor_set(x_28, 1, x_27); @@ -10671,11 +12630,11 @@ x_47 = lean_array_push(x_45, x_46); x_48 = lean_array_push(x_47, x_46); x_49 = l_myMacro____x40_Init_Notation___hyg_12545____closed__14; x_50 = lean_array_push(x_48, x_49); -x_51 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__9; +x_51 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__15; x_52 = l_Lean_addMacroScope(x_42, x_51, x_11); x_53 = lean_box(0); x_54 = l_Lean_instInhabitedSourceInfo___closed__1; -x_55 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__8; +x_55 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__14; x_56 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_56, 0, x_54); lean_ctor_set(x_56, 1, x_55); @@ -10734,133 +12693,155 @@ goto block_8; } else { -lean_object* x_14; lean_object* x_15; lean_object* x_32; uint8_t x_56; +lean_object* x_14; lean_object* x_15; lean_object* x_32; uint8_t x_50; x_14 = l_Lean_Syntax_getQuotContent(x_3); -x_56 = l_Lean_Syntax_isAtom(x_14); -if (x_56 == 0) +x_50 = l_Lean_Syntax_isAtom(x_14); +if (x_50 == 0) { -uint8_t x_57; -x_57 = l_Lean_Syntax_isAntiquot(x_14); -if (x_57 == 0) +uint8_t x_51; +x_51 = l_Lean_Syntax_isAntiquot(x_14); +if (x_51 == 0) { -lean_object* x_58; -x_58 = lean_box(0); -x_32 = x_58; -goto block_55; +uint8_t x_52; +x_52 = l_Lean_Syntax_isAntiquotSuffixSplice(x_14); +if (x_52 == 0) +{ +uint8_t x_53; +x_53 = l_Lean_Syntax_isAntiquotScope(x_14); +if (x_53 == 0) +{ +lean_object* x_54; +x_54 = lean_box(0); +x_32 = x_54; +goto block_49; } else { -uint8_t x_59; -x_59 = l_Lean_Syntax_isEscapedAntiquot(x_14); -if (x_59 == 0) -{ -lean_object* x_60; lean_object* x_61; uint8_t x_62; lean_object* x_63; -x_60 = l_Lean_Syntax_antiquotKind_x3f(x_14); -x_61 = l_Lean_Syntax_getAntiquotTerm(x_14); -x_62 = l_Lean_Syntax_isAntiquotSplice(x_14); -if (lean_obj_tag(x_60) == 0) -{ -x_63 = x_60; -goto block_74; -} -else -{ -lean_object* x_75; lean_object* x_76; uint8_t x_77; -x_75 = lean_ctor_get(x_60, 0); -lean_inc(x_75); -x_76 = lean_box(0); -x_77 = lean_name_eq(x_75, x_76); -lean_dec(x_75); -if (x_77 == 0) -{ -x_63 = x_60; -goto block_74; -} -else -{ -lean_object* x_78; -lean_dec(x_60); -x_78 = lean_box(0); -x_63 = x_78; -goto block_74; -} -} -block_74: -{ -if (x_62 == 0) -{ -uint8_t x_64; -x_64 = l_Lean_Syntax_isAntiquotScope(x_14); -if (x_64 == 0) -{ -uint8_t x_65; -lean_dec(x_14); -x_65 = l_Lean_Syntax_isIdent(x_61); -if (x_65 == 0) -{ -lean_object* x_66; -lean_dec(x_63); -x_66 = lean_alloc_closure((void*)(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__3___boxed), 9, 1); -lean_closure_set(x_66, 0, x_61); -x_4 = x_66; +lean_object* x_55; +x_55 = lean_alloc_closure((void*)(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__3___boxed), 9, 1); +lean_closure_set(x_55, 0, x_14); +x_4 = x_55; goto block_8; } +} else { -lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; -x_67 = lean_box(0); -x_68 = l_myMacro____x40_Init_Notation___hyg_1625____closed__2; -x_69 = lean_alloc_closure((void*)(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__4___boxed), 11, 3); -lean_closure_set(x_69, 0, x_68); -lean_closure_set(x_69, 1, x_67); -lean_closure_set(x_69, 2, x_61); -x_70 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_70, 0, x_63); -lean_ctor_set(x_70, 1, x_67); -lean_ctor_set(x_70, 2, x_69); -x_71 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_71, 0, x_70); -return x_71; +lean_object* x_56; +x_56 = lean_alloc_closure((void*)(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__3___boxed), 9, 1); +lean_closure_set(x_56, 0, x_14); +x_4 = x_56; +goto block_8; } } else { +uint8_t x_57; +x_57 = l_Lean_Syntax_isEscapedAntiquot(x_14); +if (x_57 == 0) +{ +lean_object* x_58; lean_object* x_59; uint8_t x_60; lean_object* x_61; +x_58 = l_Lean_Syntax_antiquotKind_x3f(x_14); +x_59 = l_Lean_Syntax_getAntiquotTerm(x_14); +lean_dec(x_14); +x_60 = l_Lean_Syntax_isIdent(x_59); +if (lean_obj_tag(x_58) == 0) +{ +x_61 = x_58; +goto block_68; +} +else +{ +lean_object* x_69; lean_object* x_70; uint8_t x_71; +x_69 = lean_ctor_get(x_58, 0); +lean_inc(x_69); +x_70 = lean_box(0); +x_71 = lean_name_eq(x_69, x_70); +lean_dec(x_69); +if (x_71 == 0) +{ +x_61 = x_58; +goto block_68; +} +else +{ lean_object* x_72; -lean_dec(x_63); +lean_dec(x_58); +x_72 = lean_box(0); +x_61 = x_72; +goto block_68; +} +} +block_68: +{ +if (x_60 == 0) +{ +lean_object* x_62; lean_dec(x_61); -x_72 = lean_alloc_closure((void*)(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__5___boxed), 9, 1); -lean_closure_set(x_72, 0, x_14); -x_4 = x_72; +x_62 = lean_alloc_closure((void*)(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__4___boxed), 9, 1); +lean_closure_set(x_62, 0, x_59); +x_4 = x_62; +goto block_8; +} +else +{ +lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; +x_63 = lean_box(0); +x_64 = l_myMacro____x40_Init_Notation___hyg_1625____closed__2; +x_65 = lean_alloc_closure((void*)(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__5___boxed), 11, 3); +lean_closure_set(x_65, 0, x_64); +lean_closure_set(x_65, 1, x_63); +lean_closure_set(x_65, 2, x_59); +x_66 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_66, 0, x_61); +lean_ctor_set(x_66, 1, x_63); +lean_ctor_set(x_66, 2, x_65); +x_67 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_67, 0, x_66); +return x_67; +} +} +} +else +{ +uint8_t x_73; +x_73 = l_Lean_Syntax_isAntiquotSuffixSplice(x_14); +if (x_73 == 0) +{ +uint8_t x_74; +x_74 = l_Lean_Syntax_isAntiquotScope(x_14); +if (x_74 == 0) +{ +lean_object* x_75; +x_75 = lean_box(0); +x_32 = x_75; +goto block_49; +} +else +{ +lean_object* x_76; +x_76 = lean_alloc_closure((void*)(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__3___boxed), 9, 1); +lean_closure_set(x_76, 0, x_14); +x_4 = x_76; goto block_8; } } else { -lean_object* x_73; -lean_dec(x_63); -lean_dec(x_61); -x_73 = lean_alloc_closure((void*)(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__6___boxed), 9, 1); -lean_closure_set(x_73, 0, x_14); -x_4 = x_73; +lean_object* x_77; +x_77 = lean_alloc_closure((void*)(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__3___boxed), 9, 1); +lean_closure_set(x_77, 0, x_14); +x_4 = x_77; goto block_8; } } } -else -{ -lean_object* x_79; -x_79 = lean_box(0); -x_32 = x_79; -goto block_55; -} -} } else { -lean_object* x_80; +lean_object* x_78; lean_dec(x_14); -x_80 = l_Lean_Elab_Term_Quotation_instInhabitedHeadInfo___closed__1; -x_4 = x_80; +x_78 = l_Lean_Elab_Term_Quotation_instInhabitedHeadInfo___closed__1; +x_4 = x_78; goto block_8; } block_31: @@ -10891,38 +12872,37 @@ x_30 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_30, 0, x_29); return x_30; } -block_55: +block_49: { -uint8_t x_33; +lean_object* x_33; lean_object* x_34; lean_object* x_35; uint8_t x_36; lean_dec(x_32); -lean_inc(x_14); -x_33 = l_Lean_Syntax_isAntiquotSplicePat(x_14); -if (x_33 == 0) -{ -lean_object* x_34; lean_object* x_35; lean_object* x_36; uint8_t x_37; -x_34 = l_Lean_Syntax_getArgs(x_14); -x_35 = lean_array_get_size(x_34); +x_33 = l_Lean_Syntax_getArgs(x_14); +x_34 = lean_array_get_size(x_33); +lean_dec(x_33); +x_35 = lean_unsigned_to_nat(1u); +x_36 = lean_nat_dec_eq(x_34, x_35); lean_dec(x_34); -x_36 = lean_unsigned_to_nat(1u); -x_37 = lean_nat_dec_eq(x_35, x_36); -lean_dec(x_35); -if (x_37 == 0) +if (x_36 == 0) { -lean_object* x_38; -x_38 = lean_box(0); -x_15 = x_38; +lean_object* x_37; +x_37 = lean_box(0); +x_15 = x_37; goto block_31; } else { -lean_object* x_39; lean_object* x_40; uint8_t x_41; -x_39 = lean_unsigned_to_nat(0u); -x_40 = l_Lean_Syntax_getArg(x_14, x_39); -x_41 = l_Lean_Syntax_isAntiquotScope(x_40); +lean_object* x_38; lean_object* x_39; uint8_t x_40; +x_38 = lean_unsigned_to_nat(0u); +x_39 = l_Lean_Syntax_getArg(x_14, x_38); +x_40 = l_Lean_Syntax_isAntiquotSuffixSplice(x_39); +if (x_40 == 0) +{ +uint8_t x_41; +x_41 = l_Lean_Syntax_isAntiquotScope(x_39); if (x_41 == 0) { lean_object* x_42; -lean_dec(x_40); +lean_dec(x_39); x_42 = lean_box(0); x_15 = x_42; goto block_31; @@ -10932,42 +12912,25 @@ else lean_object* x_43; lean_dec(x_14); x_43 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_43, 0, x_40); +lean_ctor_set(x_43, 0, x_39); return x_43; } } -} else { -lean_object* x_44; lean_object* x_45; lean_object* x_46; uint8_t x_47; -x_44 = l_Lean_Syntax_getArgs(x_14); -x_45 = lean_array_get_size(x_44); +lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; +x_44 = l_Lean_Syntax_getArg(x_39, x_38); +x_45 = l_Lean_Syntax_getAntiquotTerm(x_44); lean_dec(x_44); -x_46 = lean_unsigned_to_nat(1u); -x_47 = lean_nat_dec_eq(x_45, x_46); -lean_dec(x_45); -if (x_47 == 0) -{ -lean_object* x_48; -x_48 = lean_box(0); -x_15 = x_48; -goto block_31; -} -else -{ -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_49 = lean_unsigned_to_nat(0u); -x_50 = l_Lean_Syntax_getArg(x_14, x_49); -lean_dec(x_14); -x_51 = l_Lean_Syntax_getAntiquotTerm(x_50); -lean_dec(x_50); -x_52 = l_myMacro____x40_Init_Notation___hyg_1625____closed__2; -x_53 = l_myMacro____x40_Init_Notation___hyg_49____closed__2; -x_54 = lean_alloc_closure((void*)(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___boxed), 11, 3); -lean_closure_set(x_54, 0, x_52); -lean_closure_set(x_54, 1, x_51); -lean_closure_set(x_54, 2, x_53); -x_4 = x_54; +x_46 = l_myMacro____x40_Init_Notation___hyg_1625____closed__2; +x_47 = l_myMacro____x40_Init_Notation___hyg_49____closed__2; +x_48 = lean_alloc_closure((void*)(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___boxed), 13, 5); +lean_closure_set(x_48, 0, x_39); +lean_closure_set(x_48, 1, x_14); +lean_closure_set(x_48, 2, x_46); +lean_closure_set(x_48, 3, x_45); +lean_closure_set(x_48, 4, x_47); +x_4 = x_48; goto block_8; } } @@ -10976,19 +12939,19 @@ goto block_8; } else { -lean_object* x_81; +lean_object* x_79; lean_dec(x_3); -x_81 = l_Lean_Elab_Term_Quotation_instInhabitedHeadInfo___closed__1; -x_4 = x_81; +x_79 = l_Lean_Elab_Term_Quotation_instInhabitedHeadInfo___closed__1; +x_4 = x_79; goto block_8; } } else { -lean_object* x_82; -x_82 = lean_alloc_closure((void*)(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__7___boxed), 9, 1); -lean_closure_set(x_82, 0, x_3); -x_4 = x_82; +lean_object* x_80; +x_80 = lean_alloc_closure((void*)(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__6___boxed), 9, 1); +lean_closure_set(x_80, 0, x_3); +x_4 = x_80; goto block_8; } block_8: @@ -11049,18 +13012,18 @@ lean_dec(x_2); return x_10; } } -lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_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* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_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* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { _start: { -lean_object* x_12; -x_12 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_object* x_14; +x_14 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2(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); +lean_dec(x_12); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -return x_12; +lean_dec(x_2); +lean_dec(x_1); +return x_14; } } lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { @@ -11073,14 +13036,28 @@ lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_2); +lean_dec(x_1); return x_10; } } -lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { +_start: +{ +lean_object* x_10; +x_10 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__4(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +lean_dec(x_8); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_2); +return x_10; +} +} +lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_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* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { lean_object* x_12; -x_12 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__4(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_12 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__5(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); @@ -11090,40 +13067,12 @@ lean_dec(x_5); return x_12; } } -lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_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* x_7, lean_object* x_8, lean_object* x_9) { -_start: -{ -lean_object* x_10; -x_10 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__5(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -lean_dec(x_8); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_2); -lean_dec(x_1); -return x_10; -} -} lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__6___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { _start: { lean_object* x_10; x_10 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__6(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); lean_dec(x_8); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_2); -lean_dec(x_1); -return x_10; -} -} -lean_object* l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__7___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { -_start: -{ -lean_object* x_10; -x_10 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__7(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); @@ -11285,9 +13234,9 @@ static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quot _start: { 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 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__1; +x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepFromSplice___closed__2; x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_explodeHeadPat___closed__1; -x_3 = lean_unsigned_to_nat(229u); +x_3 = lean_unsigned_to_nat(241u); x_4 = lean_unsigned_to_nat(9u); x_5 = l_Lean_Syntax_strLitToAtom___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -14335,7 +16284,7 @@ static lean_object* _init_l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__12; +x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__13; x_2 = l_List_mapM___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___spec__16___closed__4; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -14423,9 +16372,9 @@ lean_ctor_set(x_26, 2, x_21); 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_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__9; +x_29 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__15; x_30 = l_Lean_addMacroScope(x_18, x_29, x_15); -x_31 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__8; +x_31 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__14; x_32 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_32, 0, x_23); lean_ctor_set(x_32, 1, x_31); @@ -14507,9 +16456,9 @@ lean_ctor_set(x_63, 2, x_58); lean_ctor_set(x_63, 3, x_62); x_64 = l_Array_empty___closed__1; x_65 = lean_array_push(x_64, x_63); -x_66 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__9; +x_66 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__15; x_67 = l_Lean_addMacroScope(x_55, x_66, x_52); -x_68 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__8; +x_68 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__14; x_69 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_69, 0, x_60); lean_ctor_set(x_69, 1, x_68); @@ -14875,12 +16824,12 @@ if (x_39 == 0) { lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; 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; lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; x_40 = lean_ctor_get(x_38, 0); -x_41 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__9; +x_41 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__15; lean_inc(x_36); lean_inc(x_40); x_42 = l_Lean_addMacroScope(x_40, x_41, x_36); x_43 = l_Lean_instInhabitedSourceInfo___closed__1; -x_44 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__8; +x_44 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__14; lean_inc(x_3); x_45 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_45, 0, x_43); @@ -15012,12 +16961,12 @@ x_110 = lean_ctor_get(x_38, 1); lean_inc(x_110); lean_inc(x_109); lean_dec(x_38); -x_111 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__9; +x_111 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__15; lean_inc(x_36); lean_inc(x_109); x_112 = l_Lean_addMacroScope(x_109, x_111, x_36); x_113 = l_Lean_instInhabitedSourceInfo___closed__1; -x_114 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__8; +x_114 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__14; lean_inc(x_3); x_115 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_115, 0, x_113); @@ -15260,12 +17209,12 @@ if (lean_is_exclusive(x_208)) { lean_dec_ref(x_208); x_211 = lean_box(0); } -x_212 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__9; +x_212 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__15; lean_inc(x_206); lean_inc(x_209); x_213 = l_Lean_addMacroScope(x_209, x_212, x_206); x_214 = l_Lean_instInhabitedSourceInfo___closed__1; -x_215 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__8; +x_215 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__14; lean_inc(x_3); x_216 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_216, 0, x_214); @@ -16662,7 +18611,7 @@ static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quot _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__12; +x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__13; x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__4; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -16820,7 +18769,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l___private_Lean_Elab_Util_0__Lean_Elab_evalSyntaxConstantUnsafe___closed__1; -x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__4; +x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__10; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } @@ -16987,7 +18936,7 @@ static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quot _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__9; +x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__15; x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__34; x_3 = lean_name_mk_string(x_1, x_2); return x_3; @@ -17236,10 +19185,10 @@ 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_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; x_50 = lean_ctor_get(x_48, 0); -x_51 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__9; +x_51 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__15; x_52 = l_Lean_addMacroScope(x_50, x_51, x_46); x_53 = l_Lean_instInhabitedSourceInfo___closed__1; -x_54 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__8; +x_54 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__14; x_55 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_55, 0, x_53); lean_ctor_set(x_55, 1, x_54); @@ -17282,10 +19231,10 @@ x_77 = lean_ctor_get(x_48, 1); lean_inc(x_77); lean_inc(x_76); lean_dec(x_48); -x_78 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__9; +x_78 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__15; x_79 = l_Lean_addMacroScope(x_76, x_78, x_46); x_80 = l_Lean_instInhabitedSourceInfo___closed__1; -x_81 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__8; +x_81 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__14; x_82 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_82, 0, x_80); lean_ctor_set(x_82, 1, x_81); @@ -17375,9 +19324,9 @@ lean_ctor_set(x_121, 2, x_117); lean_ctor_set(x_121, 3, x_120); x_122 = l_Array_empty___closed__1; x_123 = lean_array_push(x_122, x_121); -x_124 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__9; +x_124 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__15; x_125 = l_Lean_addMacroScope(x_114, x_124, x_111); -x_126 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__8; +x_126 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__14; x_127 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_127, 0, x_118); lean_ctor_set(x_127, 1, x_126); @@ -17430,9 +19379,9 @@ lean_ctor_set(x_148, 2, x_144); lean_ctor_set(x_148, 3, x_147); x_149 = l_Array_empty___closed__1; x_150 = lean_array_push(x_149, x_148); -x_151 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__9; +x_151 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__15; x_152 = l_Lean_addMacroScope(x_141, x_151, x_138); -x_153 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__8; +x_153 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__14; x_154 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_154, 0, x_145); lean_ctor_set(x_154, 1, x_153); @@ -17498,11 +19447,11 @@ lean_ctor_set(x_183, 1, x_181); lean_ctor_set(x_183, 2, x_180); lean_ctor_set(x_183, 3, x_182); x_184 = lean_array_push(x_177, x_183); -x_185 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__9; +x_185 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__15; lean_inc(x_166); lean_inc(x_169); x_186 = l_Lean_addMacroScope(x_169, x_185, x_166); -x_187 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__8; +x_187 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__14; x_188 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_188, 0, x_173); lean_ctor_set(x_188, 1, x_187); @@ -17560,9 +19509,9 @@ lean_ctor_set(x_218, 1, x_216); lean_ctor_set(x_218, 2, x_215); lean_ctor_set(x_218, 3, x_217); x_219 = lean_array_push(x_177, x_218); -x_220 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__5; +x_220 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__11; x_221 = l_Lean_addMacroScope(x_169, x_220, x_166); -x_222 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__3; +x_222 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__9; x_223 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__21; x_224 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_224, 0, x_173); @@ -17674,9 +19623,9 @@ lean_ctor_set(x_276, 2, x_272); lean_ctor_set(x_276, 3, x_275); x_277 = l_Array_empty___closed__1; x_278 = lean_array_push(x_277, x_276); -x_279 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__9; +x_279 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__15; x_280 = l_Lean_addMacroScope(x_269, x_279, x_266); -x_281 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__8; +x_281 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__14; x_282 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_282, 0, x_273); lean_ctor_set(x_282, 1, x_281); @@ -17729,9 +19678,9 @@ lean_ctor_set(x_303, 2, x_299); lean_ctor_set(x_303, 3, x_302); x_304 = l_Array_empty___closed__1; x_305 = lean_array_push(x_304, x_303); -x_306 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__9; +x_306 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__15; x_307 = l_Lean_addMacroScope(x_296, x_306, x_293); -x_308 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__8; +x_308 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__14; x_309 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_309, 0, x_300); lean_ctor_set(x_309, 1, x_308); @@ -17830,10 +19779,10 @@ lean_inc(x_341); x_342 = lean_ctor_get(x_340, 1); lean_inc(x_342); lean_dec(x_340); -x_343 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__5; +x_343 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__11; x_344 = l_Lean_addMacroScope(x_341, x_343, x_338); x_345 = l_Lean_instInhabitedSourceInfo___closed__1; -x_346 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__3; +x_346 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__9; x_347 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__21; x_348 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_348, 0, x_345); @@ -17891,10 +19840,10 @@ lean_inc(x_367); x_368 = lean_ctor_get(x_366, 1); lean_inc(x_368); lean_dec(x_366); -x_369 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__5; +x_369 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__11; x_370 = l_Lean_addMacroScope(x_367, x_369, x_364); x_371 = l_Lean_instInhabitedSourceInfo___closed__1; -x_372 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__3; +x_372 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__9; x_373 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__21; x_374 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_374, 0, x_371); @@ -18010,10 +19959,10 @@ lean_inc(x_417); x_418 = lean_ctor_get(x_416, 1); lean_inc(x_418); lean_dec(x_416); -x_419 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__5; +x_419 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__11; x_420 = l_Lean_addMacroScope(x_417, x_419, x_414); x_421 = l_Lean_instInhabitedSourceInfo___closed__1; -x_422 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__3; +x_422 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__9; x_423 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__21; x_424 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_424, 0, x_421); @@ -18136,12 +20085,12 @@ if (x_470 == 0) { lean_object* x_471; lean_object* x_472; lean_object* x_473; lean_object* x_474; lean_object* x_475; lean_object* x_476; lean_object* x_477; lean_object* x_478; lean_object* x_479; lean_object* x_480; lean_object* x_481; lean_object* x_482; lean_object* x_483; lean_object* x_484; lean_object* x_485; lean_object* x_486; lean_object* x_487; lean_object* x_488; lean_object* x_489; lean_object* x_490; lean_object* x_491; lean_object* x_492; lean_object* x_493; lean_object* x_494; lean_object* x_495; lean_object* x_496; lean_object* x_497; lean_object* x_498; lean_object* x_499; lean_object* x_500; lean_object* x_501; lean_object* x_502; lean_object* x_503; lean_object* x_504; lean_object* x_505; lean_object* x_506; lean_object* x_507; lean_object* x_508; lean_object* x_509; lean_object* x_510; lean_object* x_511; lean_object* x_512; lean_object* x_513; lean_object* x_514; lean_object* x_515; lean_object* x_516; lean_object* x_517; lean_object* x_518; lean_object* x_519; lean_object* x_520; lean_object* x_521; lean_object* x_522; lean_object* x_523; lean_object* x_524; lean_object* x_525; lean_object* x_526; lean_object* x_527; lean_object* x_528; lean_object* x_529; lean_object* x_530; lean_object* x_531; lean_object* x_532; lean_object* x_533; lean_object* x_534; lean_object* x_535; lean_object* x_536; lean_object* x_537; lean_object* x_538; lean_object* x_539; lean_object* x_540; lean_object* x_541; lean_object* x_542; lean_object* x_543; lean_object* x_544; lean_object* x_545; lean_object* x_546; lean_object* x_547; lean_object* x_548; lean_object* x_549; lean_object* x_550; lean_object* x_551; lean_object* x_552; lean_object* x_553; x_471 = lean_ctor_get(x_469, 0); -x_472 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__9; +x_472 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__15; lean_inc(x_467); lean_inc(x_471); x_473 = l_Lean_addMacroScope(x_471, x_472, x_467); x_474 = l_Lean_instInhabitedSourceInfo___closed__1; -x_475 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__8; +x_475 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__14; x_476 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_476, 0, x_474); lean_ctor_set(x_476, 1, x_475); @@ -18268,12 +20217,12 @@ x_555 = lean_ctor_get(x_469, 1); lean_inc(x_555); lean_inc(x_554); lean_dec(x_469); -x_556 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__9; +x_556 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__15; lean_inc(x_467); lean_inc(x_554); x_557 = l_Lean_addMacroScope(x_554, x_556, x_467); x_558 = l_Lean_instInhabitedSourceInfo___closed__1; -x_559 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__8; +x_559 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__14; x_560 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_560, 0, x_558); lean_ctor_set(x_560, 1, x_559); @@ -18417,10 +20366,10 @@ lean_inc(x_645); x_646 = lean_ctor_get(x_644, 1); lean_inc(x_646); lean_dec(x_644); -x_647 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__5; +x_647 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__11; x_648 = l_Lean_addMacroScope(x_645, x_647, x_642); x_649 = l_Lean_instInhabitedSourceInfo___closed__1; -x_650 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__3; +x_650 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__9; x_651 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__21; x_652 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_652, 0, x_649); @@ -18524,10 +20473,10 @@ lean_inc(x_691); x_692 = lean_ctor_get(x_690, 1); lean_inc(x_692); lean_dec(x_690); -x_693 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__5; +x_693 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__11; x_694 = l_Lean_addMacroScope(x_691, x_693, x_688); x_695 = l_Lean_instInhabitedSourceInfo___closed__1; -x_696 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__3; +x_696 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__9; x_697 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__21; x_698 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_698, 0, x_695); @@ -18632,10 +20581,10 @@ lean_inc(x_737); x_738 = lean_ctor_get(x_736, 1); lean_inc(x_738); lean_dec(x_736); -x_739 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__5; +x_739 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__11; x_740 = l_Lean_addMacroScope(x_737, x_739, x_734); x_741 = l_Lean_instInhabitedSourceInfo___closed__1; -x_742 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__3; +x_742 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__9; x_743 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__21; x_744 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_744, 0, x_741); @@ -18815,10 +20764,10 @@ lean_inc(x_797); x_798 = lean_ctor_get(x_796, 1); lean_inc(x_798); lean_dec(x_796); -x_799 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__5; +x_799 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__11; x_800 = l_Lean_addMacroScope(x_797, x_799, x_794); x_801 = l_Lean_instInhabitedSourceInfo___closed__1; -x_802 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__3; +x_802 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__9; x_803 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__21; x_804 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_804, 0, x_801); @@ -18876,10 +20825,10 @@ lean_inc(x_823); x_824 = lean_ctor_get(x_822, 1); lean_inc(x_824); lean_dec(x_822); -x_825 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__5; +x_825 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__11; x_826 = l_Lean_addMacroScope(x_823, x_825, x_820); x_827 = l_Lean_instInhabitedSourceInfo___closed__1; -x_828 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__3; +x_828 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__9; x_829 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__21; x_830 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_830, 0, x_827); @@ -18995,10 +20944,10 @@ lean_inc(x_873); x_874 = lean_ctor_get(x_872, 1); lean_inc(x_874); lean_dec(x_872); -x_875 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__5; +x_875 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__11; x_876 = l_Lean_addMacroScope(x_873, x_875, x_870); x_877 = l_Lean_instInhabitedSourceInfo___closed__1; -x_878 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__3; +x_878 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__9; x_879 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__21; x_880 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_880, 0, x_877); @@ -19128,12 +21077,12 @@ if (lean_is_exclusive(x_925)) { lean_dec_ref(x_925); x_928 = lean_box(0); } -x_929 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__9; +x_929 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__15; lean_inc(x_923); lean_inc(x_926); x_930 = l_Lean_addMacroScope(x_926, x_929, x_923); x_931 = l_Lean_instInhabitedSourceInfo___closed__1; -x_932 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__8; +x_932 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__14; x_933 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_933, 0, x_931); lean_ctor_set(x_933, 1, x_932); @@ -19280,10 +21229,10 @@ lean_inc(x_1018); x_1019 = lean_ctor_get(x_1017, 1); lean_inc(x_1019); lean_dec(x_1017); -x_1020 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__5; +x_1020 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__11; x_1021 = l_Lean_addMacroScope(x_1018, x_1020, x_1015); x_1022 = l_Lean_instInhabitedSourceInfo___closed__1; -x_1023 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__3; +x_1023 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__9; x_1024 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__21; x_1025 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_1025, 0, x_1022); @@ -19387,10 +21336,10 @@ lean_inc(x_1064); x_1065 = lean_ctor_get(x_1063, 1); lean_inc(x_1065); lean_dec(x_1063); -x_1066 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__5; +x_1066 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__11; x_1067 = l_Lean_addMacroScope(x_1064, x_1066, x_1061); x_1068 = l_Lean_instInhabitedSourceInfo___closed__1; -x_1069 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__3; +x_1069 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__9; x_1070 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__21; x_1071 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_1071, 0, x_1068); @@ -19495,10 +21444,10 @@ lean_inc(x_1110); x_1111 = lean_ctor_get(x_1109, 1); lean_inc(x_1111); lean_dec(x_1109); -x_1112 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__5; +x_1112 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__11; x_1113 = l_Lean_addMacroScope(x_1110, x_1112, x_1107); x_1114 = l_Lean_instInhabitedSourceInfo___closed__1; -x_1115 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__3; +x_1115 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__9; x_1116 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__21; x_1117 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_1117, 0, x_1114); @@ -19815,10 +21764,10 @@ if (lean_is_exclusive(x_1191)) { lean_dec_ref(x_1191); x_1194 = lean_box(0); } -x_1195 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__9; +x_1195 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__15; x_1196 = l_Lean_addMacroScope(x_1192, x_1195, x_1189); x_1197 = l_Lean_instInhabitedSourceInfo___closed__1; -x_1198 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__8; +x_1198 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__14; x_1199 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_1199, 0, x_1197); lean_ctor_set(x_1199, 1, x_1198); @@ -19911,9 +21860,9 @@ lean_ctor_set(x_1238, 2, x_1234); lean_ctor_set(x_1238, 3, x_1237); x_1239 = l_Array_empty___closed__1; x_1240 = lean_array_push(x_1239, x_1238); -x_1241 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__9; +x_1241 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__15; x_1242 = l_Lean_addMacroScope(x_1231, x_1241, x_1228); -x_1243 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__8; +x_1243 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__14; x_1244 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_1244, 0, x_1235); lean_ctor_set(x_1244, 1, x_1243); @@ -19966,9 +21915,9 @@ lean_ctor_set(x_1265, 2, x_1261); lean_ctor_set(x_1265, 3, x_1264); x_1266 = l_Array_empty___closed__1; x_1267 = lean_array_push(x_1266, x_1265); -x_1268 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__9; +x_1268 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__15; x_1269 = l_Lean_addMacroScope(x_1258, x_1268, x_1255); -x_1270 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__8; +x_1270 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__14; x_1271 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_1271, 0, x_1262); lean_ctor_set(x_1271, 1, x_1270); @@ -20034,11 +21983,11 @@ lean_ctor_set(x_1300, 1, x_1298); lean_ctor_set(x_1300, 2, x_1297); lean_ctor_set(x_1300, 3, x_1299); x_1301 = lean_array_push(x_1294, x_1300); -x_1302 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__9; +x_1302 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__15; lean_inc(x_1283); lean_inc(x_1286); x_1303 = l_Lean_addMacroScope(x_1286, x_1302, x_1283); -x_1304 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__8; +x_1304 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__14; x_1305 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_1305, 0, x_1290); lean_ctor_set(x_1305, 1, x_1304); @@ -20096,9 +22045,9 @@ lean_ctor_set(x_1335, 1, x_1333); lean_ctor_set(x_1335, 2, x_1332); lean_ctor_set(x_1335, 3, x_1334); x_1336 = lean_array_push(x_1294, x_1335); -x_1337 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__5; +x_1337 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__11; x_1338 = l_Lean_addMacroScope(x_1286, x_1337, x_1283); -x_1339 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__3; +x_1339 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__9; x_1340 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__21; x_1341 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_1341, 0, x_1290); @@ -20210,9 +22159,9 @@ lean_ctor_set(x_1393, 2, x_1389); lean_ctor_set(x_1393, 3, x_1392); x_1394 = l_Array_empty___closed__1; x_1395 = lean_array_push(x_1394, x_1393); -x_1396 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__9; +x_1396 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__15; x_1397 = l_Lean_addMacroScope(x_1386, x_1396, x_1383); -x_1398 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__8; +x_1398 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__14; x_1399 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_1399, 0, x_1390); lean_ctor_set(x_1399, 1, x_1398); @@ -20265,9 +22214,9 @@ lean_ctor_set(x_1420, 2, x_1416); lean_ctor_set(x_1420, 3, x_1419); x_1421 = l_Array_empty___closed__1; x_1422 = lean_array_push(x_1421, x_1420); -x_1423 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__9; +x_1423 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__15; x_1424 = l_Lean_addMacroScope(x_1413, x_1423, x_1410); -x_1425 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__8; +x_1425 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__14; x_1426 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_1426, 0, x_1417); lean_ctor_set(x_1426, 1, x_1425); @@ -20387,10 +22336,10 @@ lean_inc(x_1462); x_1463 = lean_ctor_get(x_1461, 1); lean_inc(x_1463); lean_dec(x_1461); -x_1464 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__5; +x_1464 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__11; x_1465 = l_Lean_addMacroScope(x_1462, x_1464, x_1459); x_1466 = l_Lean_instInhabitedSourceInfo___closed__1; -x_1467 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__3; +x_1467 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__9; x_1468 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__21; x_1469 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_1469, 0, x_1466); @@ -20448,10 +22397,10 @@ lean_inc(x_1488); x_1489 = lean_ctor_get(x_1487, 1); lean_inc(x_1489); lean_dec(x_1487); -x_1490 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__5; +x_1490 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__11; x_1491 = l_Lean_addMacroScope(x_1488, x_1490, x_1485); x_1492 = l_Lean_instInhabitedSourceInfo___closed__1; -x_1493 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__3; +x_1493 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__9; x_1494 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__21; x_1495 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_1495, 0, x_1492); @@ -20567,10 +22516,10 @@ lean_inc(x_1538); x_1539 = lean_ctor_get(x_1537, 1); lean_inc(x_1539); lean_dec(x_1537); -x_1540 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__5; +x_1540 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__11; x_1541 = l_Lean_addMacroScope(x_1538, x_1540, x_1535); x_1542 = l_Lean_instInhabitedSourceInfo___closed__1; -x_1543 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__3; +x_1543 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__9; x_1544 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__21; x_1545 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_1545, 0, x_1542); @@ -20700,12 +22649,12 @@ if (lean_is_exclusive(x_1590)) { lean_dec_ref(x_1590); x_1593 = lean_box(0); } -x_1594 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__9; +x_1594 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__15; lean_inc(x_1588); lean_inc(x_1591); x_1595 = l_Lean_addMacroScope(x_1591, x_1594, x_1588); x_1596 = l_Lean_instInhabitedSourceInfo___closed__1; -x_1597 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__8; +x_1597 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__14; x_1598 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_1598, 0, x_1596); lean_ctor_set(x_1598, 1, x_1597); @@ -20852,10 +22801,10 @@ lean_inc(x_1683); x_1684 = lean_ctor_get(x_1682, 1); lean_inc(x_1684); lean_dec(x_1682); -x_1685 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__5; +x_1685 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__11; x_1686 = l_Lean_addMacroScope(x_1683, x_1685, x_1680); x_1687 = l_Lean_instInhabitedSourceInfo___closed__1; -x_1688 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__3; +x_1688 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__9; x_1689 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__21; x_1690 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_1690, 0, x_1687); @@ -20959,10 +22908,10 @@ lean_inc(x_1729); x_1730 = lean_ctor_get(x_1728, 1); lean_inc(x_1730); lean_dec(x_1728); -x_1731 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__5; +x_1731 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__11; x_1732 = l_Lean_addMacroScope(x_1729, x_1731, x_1726); x_1733 = l_Lean_instInhabitedSourceInfo___closed__1; -x_1734 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__3; +x_1734 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__9; x_1735 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__21; x_1736 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_1736, 0, x_1733); @@ -21067,10 +23016,10 @@ lean_inc(x_1775); x_1776 = lean_ctor_get(x_1774, 1); lean_inc(x_1776); lean_dec(x_1774); -x_1777 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__5; +x_1777 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__11; x_1778 = l_Lean_addMacroScope(x_1775, x_1777, x_1772); x_1779 = l_Lean_instInhabitedSourceInfo___closed__1; -x_1780 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__3; +x_1780 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__9; x_1781 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___lambda__9___closed__21; x_1782 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_1782, 0, x_1779); @@ -21351,9 +23300,9 @@ static lean_object* _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quot _start: { 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 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__1; +x_1 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepFromSplice___closed__2; x_2 = l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_compileStxMatch___closed__4; -x_3 = lean_unsigned_to_nat(300u); +x_3 = lean_unsigned_to_nat(312u); x_4 = lean_unsigned_to_nat(12u); x_5 = l_Lean_Syntax_strLitToAtom___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -25110,7 +27059,7 @@ size_t x_41; size_t x_42; lean_object* x_43; lean_object* x_44; lean_object* x_4 x_41 = 0; x_42 = lean_usize_of_nat(x_12); lean_dec(x_12); -x_43 = l_Array_foldlMUnsafe_fold___at_Lean_Syntax_getSepArgs___spec__1(x_11, x_41, x_42, x_3); +x_43 = l_Array_foldlMUnsafe_fold___at_Lean_Syntax_SepArray_getElems___spec__1(x_11, x_41, x_42, x_3); lean_dec(x_11); x_44 = lean_ctor_get(x_43, 1); lean_inc(x_44); @@ -25450,7 +27399,7 @@ x_135 = 0; x_136 = lean_usize_of_nat(x_15); lean_dec(x_15); x_137 = l_Array_getEvenElems___rarg___closed__1; -x_138 = l_Array_foldlMUnsafe_fold___at_Lean_Syntax_getSepArgs___spec__1(x_14, x_135, x_136, x_137); +x_138 = l_Array_foldlMUnsafe_fold___at_Lean_Syntax_SepArray_getElems___spec__1(x_14, x_135, x_136, x_137); lean_dec(x_14); x_139 = lean_ctor_get(x_138, 1); lean_inc(x_139); @@ -25636,7 +27585,7 @@ x_83 = 0; x_84 = lean_usize_of_nat(x_47); lean_dec(x_47); x_85 = l_Array_getEvenElems___rarg___closed__1; -x_86 = l_Array_foldlMUnsafe_fold___at_Lean_Syntax_getSepArgs___spec__1(x_46, x_83, x_84, x_85); +x_86 = l_Array_foldlMUnsafe_fold___at_Lean_Syntax_SepArray_getElems___spec__1(x_46, x_83, x_84, x_85); lean_dec(x_46); x_87 = lean_ctor_get(x_86, 1); lean_inc(x_87); @@ -25820,7 +27769,7 @@ x_126 = 0; x_127 = lean_usize_of_nat(x_90); lean_dec(x_90); x_128 = l_Array_getEvenElems___rarg___closed__1; -x_129 = l_Array_foldlMUnsafe_fold___at_Lean_Syntax_getSepArgs___spec__1(x_89, x_126, x_127, x_128); +x_129 = l_Array_foldlMUnsafe_fold___at_Lean_Syntax_SepArray_getElems___spec__1(x_89, x_126, x_127, x_128); lean_dec(x_89); x_130 = lean_ctor_get(x_129, 1); lean_inc(x_130); @@ -26154,7 +28103,7 @@ x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; } } -lean_object* l_Lean_Elab_Term_Quotation_initFn____x40_Lean_Elab_Quotation___hyg_8686_(lean_object* x_1) { +lean_object* l_Lean_Elab_Term_Quotation_initFn____x40_Lean_Elab_Quotation___hyg_9845_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; @@ -26221,6 +28170,14 @@ if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___boxed__const__1 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___boxed__const__1(); lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_floatOutAntiquotTerms___lambda__1___boxed__const__1); +l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepFromSplice___closed__1 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepFromSplice___closed__1(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepFromSplice___closed__1); +l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepFromSplice___closed__2 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepFromSplice___closed__2(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepFromSplice___closed__2); +l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepFromSplice___closed__3 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepFromSplice___closed__3(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepFromSplice___closed__3); +l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepFromSplice___closed__4 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepFromSplice___closed__4(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getSepFromSplice___closed__4); l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__1___closed__1 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__1___closed__1(); lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__1___closed__1); l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__1___closed__2 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__1___closed__2(); @@ -26249,12 +28206,6 @@ l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Q lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__9); l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__10 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__10(); lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__10); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__11 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__11(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__11); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__12 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__12(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__12); -l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__13 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__13(); -lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___lambda__2___closed__13); l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__1 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__1(); lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__1); l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__2 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__2(); @@ -26313,6 +28264,44 @@ l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Q lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__28); l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__29 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__29(); lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__29); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__30 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__30(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__30); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__31 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__31(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__31); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__32 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__32(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__32); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__33 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__33(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__33); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__34 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__34(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__34); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__35 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__35(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__35); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__36 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__36(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__36); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__37 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__37(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__37); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__38 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__38(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__38); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__39 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__39(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__39); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__40 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__40(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__40); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__41 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__41(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__41); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__42 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__42(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__42); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__43 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__43(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__43); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__44 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__44(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__44); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__45 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__45(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__45); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__46 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__46(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__46); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__47 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__47(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__47); +l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__48 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__48(); +lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___closed__48); l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___boxed__const__1 = _init_l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___boxed__const__1(); lean_mark_persistent(l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___spec__4___boxed__const__1); l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__1 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__1(); @@ -26435,6 +28424,8 @@ l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__59); l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__60 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__60(); lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__60); +l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__61 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__61(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_quoteSyntax___closed__61); l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__1 = _init_l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__1(); lean_mark_persistent(l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__1); l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__2 = _init_l_Lean_Elab_Term_Quotation_stxQuot_expand___closed__2(); @@ -26605,16 +28596,32 @@ l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__8); l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__9 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__9(); lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__9); -l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__3___closed__1 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__3___closed__1(); -lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__3___closed__1); -l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__3___closed__2 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__3___closed__2(); -lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__3___closed__2); -l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__5___closed__1 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__5___closed__1(); -lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__5___closed__1); -l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__5___closed__2 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__5___closed__2(); -lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__5___closed__2); -l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__5___closed__3 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__5___closed__3(); -lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__5___closed__3); +l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__10 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__10(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__10); +l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__11 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__11(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__11); +l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__12 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__12(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__12); +l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__13 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__13(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__13); +l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__14 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__14(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__14); +l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__15 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__15(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__15); +l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__16 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__16(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__16); +l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__17 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__17(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__17); +l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__18 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__18(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__18); +l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__19 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__19(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__19); +l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__20 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__20(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__2___closed__20); +l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__4___closed__1 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__4___closed__1(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__4___closed__1); +l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__4___closed__2 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__4___closed__2(); +lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_getHeadInfo___lambda__4___closed__2); l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_explodeHeadPat___closed__1 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_explodeHeadPat___closed__1(); lean_mark_persistent(l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_explodeHeadPat___closed__1); l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_explodeHeadPat___closed__2 = _init_l___private_Lean_Elab_Quotation_0__Lean_Elab_Term_Quotation_explodeHeadPat___closed__2(); @@ -26832,7 +28839,7 @@ lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax___c res = l___regBuiltin_Lean_Elab_Term_Quotation_elabMatchSyntax(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -res = l_Lean_Elab_Term_Quotation_initFn____x40_Lean_Elab_Quotation___hyg_8686_(lean_io_mk_world()); +res = l_Lean_Elab_Term_Quotation_initFn____x40_Lean_Elab_Quotation___hyg_9845_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); return lean_io_result_mk_ok(lean_box(0)); diff --git a/stage0/stdlib/Lean/Elab/StructInst.c b/stage0/stdlib/Lean/Elab/StructInst.c index b63c303c8f..1c6f15734f 100644 --- a/stage0/stdlib/Lean/Elab/StructInst.c +++ b/stage0/stdlib/Lean/Elab/StructInst.c @@ -139,7 +139,6 @@ lean_object* l___regBuiltin_Lean_Elab_Term_StructInst_elabStructInst(lean_object lean_object* l_Std_HashMapImp_expand___at___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_mkFieldMap___spec__5(lean_object*, lean_object*); lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_expandStruct___spec__11___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_mkStructView___spec__1(size_t, size_t, lean_object*); -extern lean_object* l_Lean_Syntax_mkAntiquotNode___closed__16; lean_object* l_Lean_mkIdentFrom(lean_object*, lean_object*); lean_object* l_Lean_throwError___at_Lean_Elab_Term_StructInst_DefaultFields_propagateLoop___spec__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_StructInst_DefaultFields_getHierarchyDepth_match__1(lean_object*); @@ -431,6 +430,7 @@ lean_object* l_Lean_Elab_Term_StructInst_Struct_allDefault___boxed(lean_object*) extern lean_object* l_Lean_Elab_Term_getFVarLocalDecl_x21___closed__1; extern lean_object* l_Lean_KernelException_toMessageData___closed__3; size_t lean_usize_of_nat(lean_object*); +extern lean_object* l_Lean_Syntax_mkAntiquotNode___closed__9; lean_object* l_List_foldlM___at___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_elabStruct___spec__1___closed__1; lean_object* l_Lean_Elab_Term_StructInst_DefaultFields_step___closed__1; lean_object* l_List_foldlM___at___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_elabStruct___spec__1___closed__2; @@ -10867,7 +10867,7 @@ lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_obj x_3 = l_Lean_Name_toString___closed__1; x_4 = l_Lean_mkAtomFrom(x_1, x_3); x_5 = l_Lean_mkIdentFrom(x_1, x_2); -x_6 = l_Lean_Syntax_mkAntiquotNode___closed__16; +x_6 = l_Lean_Syntax_mkAntiquotNode___closed__9; x_7 = lean_array_push(x_6, x_1); x_8 = lean_array_push(x_7, x_4); x_9 = lean_array_push(x_8, x_5); diff --git a/stage0/stdlib/Lean/Elab/Structure.c b/stage0/stdlib/Lean/Elab/Structure.c index 5c3ab892ad..c8ef630fe7 100644 --- a/stage0/stdlib/Lean/Elab/Structure.c +++ b/stage0/stdlib/Lean/Elab/Structure.c @@ -412,7 +412,6 @@ lean_object* l_Lean_Elab_Command_elabStructure___boxed(lean_object*, lean_object lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_addDefaults___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_addDefaults___boxed__const__1; lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandFields___spec__9___lambda__3___closed__3; -lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Syntax_getSepArgs___spec__1(lean_object*, size_t, size_t, lean_object*); uint8_t lean_nat_dec_le(lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_processSubfields_loop___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_elabAttr___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandCtor___spec__4___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -610,6 +609,7 @@ lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_elabFieldTypeV extern lean_object* l_Array_findSomeM_x3f___rarg___closed__1; lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_checkParentIsStructure_match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Command_elabStructure___spec__7(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Syntax_SepArray_getElems___spec__1(lean_object*, size_t, size_t, lean_object*); uint8_t lean_is_class(lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandCtor___lambda__2___closed__3; lean_object* l_Lean_Elab_applyVisibility___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_expandCtor___spec__8___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -17540,7 +17540,7 @@ x_42 = 0; x_43 = lean_usize_of_nat(x_19); lean_dec(x_19); x_44 = l_Array_getEvenElems___rarg___closed__1; -x_45 = l_Array_foldlMUnsafe_fold___at_Lean_Syntax_getSepArgs___spec__1(x_18, x_42, x_43, x_44); +x_45 = l_Array_foldlMUnsafe_fold___at_Lean_Syntax_SepArray_getElems___spec__1(x_18, x_42, x_43, x_44); lean_dec(x_18); x_46 = lean_ctor_get(x_45, 1); lean_inc(x_46); diff --git a/stage0/stdlib/Lean/Elab/Syntax.c b/stage0/stdlib/Lean/Elab/Syntax.c index 7d6d4fe6ad..913eb74db0 100644 --- a/stage0/stdlib/Lean/Elab/Syntax.c +++ b/stage0/stdlib/Lean/Elab/Syntax.c @@ -192,7 +192,6 @@ lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQ lean_object* l_Lean_Elab_Command_expandMixfix_match__5(lean_object*); extern lean_object* l_instReprBool___closed__1; lean_object* l_Lean_Elab_Command_expandElab___closed__4; -extern lean_object* l_Lean_Syntax_mkAntiquotNode___closed__16; lean_object* l_Lean_Elab_Command_expandMixfix_match__44___rarg(lean_object*, lean_object*, lean_object*); lean_object* l___private_Init_Meta_0__Array_filterSepElemsMAux___at_Lean_Elab_Command_elabNoKindMacroRulesAux___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkIdentFrom(lean_object*, lean_object*); @@ -282,7 +281,7 @@ lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux extern lean_object* l_stx___x3c_x7c_x3e_____closed__8; extern lean_object* l_Lean_Parser_Command_infixl___elambda__1___closed__1; extern lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__13; -lean_object* l_Lean_Syntax_mkAntiquotNode(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t); +lean_object* l_Lean_Syntax_mkAntiquotNode(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_expandMacro___spec__2___boxed(lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux_match__4___rarg(uint8_t, lean_object*, lean_object*, lean_object*); lean_object* l_Subarray_forInUnsafe_loop___at___private_Lean_Elab_Syntax_0__Lean_Elab_Term_mkParserSeq___spec__1___closed__6; @@ -313,6 +312,7 @@ lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabMacro lean_object* l_Lean_Elab_Command_expandMixfix_match__39___rarg(lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux_match__2(lean_object*); lean_object* l_Lean_Elab_Command_elabSyntaxAbbrev___closed__13; +lean_object* l_Lean_Elab_Command_expandMacroArgIntoPattern___closed__2; lean_object* l_Lean_Elab_Term_checkLeftRec___closed__1; uint8_t l_Lean_Parser_leadingIdentAsSymbol(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_toParserDescrAux___lambda__3___closed__2; @@ -334,7 +334,6 @@ extern lean_object* l_Lean_Elab_Term_expandFunBinders_loop___closed__11; lean_object* l_Lean_Elab_Command_expandMixfix_match__14___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_mkSimpleDelab_go___closed__16; extern lean_object* l_Lean_Parser_Tactic_quot___elambda__1___closed__6; -extern lean_object* l_Lean_Syntax_mkAntiquotNode___closed__4; lean_object* l___regBuiltin_Lean_Elab_Command_elabSyntaxAbbrev___closed__1; lean_object* l___regBuiltin_Lean_Elab_Command_expandNotation(lean_object*); lean_object* l_Lean_Elab_Command_elabSyntax___lambda__3___closed__19; @@ -405,6 +404,7 @@ lean_object* l_Lean_Elab_Command_mkSimpleDelab_go___closed__2; lean_object* l_Lean_Elab_Command_expandMixfix_match__16(lean_object*); lean_object* l_Lean_Elab_Command_expandNotationItemIntoPattern(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_mkSimpleDelab___boxed(lean_object*); +extern lean_object* l_Lean_Elab_Term_mkExplicitBinder___closed__3; lean_object* l_Lean_Elab_Command_elabSyntax___lambda__3___closed__1; lean_object* l_Lean_Elab_Term_toParserDescrAux___closed__33; lean_object* l_Lean_Elab_Term_toParserDescrAux___lambda__1___closed__2; @@ -616,6 +616,7 @@ lean_object* l_Lean_Elab_Command_elabMacroRulesAux___closed__11; extern lean_object* l_Lean_KernelException_toMessageData___closed__3; size_t lean_usize_of_nat(lean_object*); lean_object* l_Subarray_forInUnsafe_loop___at___private_Lean_Elab_Syntax_0__Lean_Elab_Term_mkParserSeq___spec__1___closed__3; +extern lean_object* l_Lean_Syntax_mkAntiquotNode___closed__9; lean_object* l_Lean_Elab_Command_elabSyntax___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Init_Meta_0__Array_mapSepElemsMAux___at_Lean_Elab_Command_elabMacroRulesAux___spec__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_expandOptPrio(lean_object*); @@ -664,6 +665,7 @@ lean_object* l_Subarray_forInUnsafe_loop___at___private_Lean_Elab_Syntax_0__Lean lean_object* l_Lean_Elab_Command_inferMacroRulesAltKind(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_toParserDescrAux___closed__2; lean_object* l_Lean_Elab_Command_expandElab___closed__13; +extern lean_object* l_Lean_Syntax_mkAntiquotNode___closed__1; extern lean_object* l_Lean_formatDataValue___closed__2; lean_object* l_Lean_resolveGlobalConst___at_Lean_Elab_Term_toParserDescrAux___spec__3___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__8; @@ -19660,7 +19662,7 @@ static lean_object* _init_l_Lean_Elab_Command_expandMixfix___lambda__1___closed_ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Syntax_mkAntiquotNode___closed__16; +x_1 = l_Lean_Syntax_mkAntiquotNode___closed__9; x_2 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3404____closed__8; x_3 = lean_array_push(x_1, x_2); return x_3; @@ -22569,13 +22571,12 @@ return x_2; } else { -lean_object* x_26; lean_object* x_27; uint8_t x_28; lean_object* x_29; +lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_dec(x_25); x_26 = lean_box(0); x_27 = lean_box(0); -x_28 = 0; -x_29 = l_Lean_Syntax_mkAntiquotNode(x_2, x_24, x_26, x_27, x_28); -return x_29; +x_28 = l_Lean_Syntax_mkAntiquotNode(x_2, x_24, x_26, x_27); +return x_28; } } } @@ -22930,19 +22931,18 @@ return x_58; } else { -lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; uint8_t x_63; lean_object* x_64; lean_object* x_65; +lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_dec(x_5); x_59 = lean_unsigned_to_nat(0u); x_60 = l_Lean_Syntax_getArg(x_1, x_59); lean_dec(x_1); x_61 = lean_box(0); x_62 = lean_box(0); -x_63 = 0; -x_64 = l_Lean_Syntax_mkAntiquotNode(x_60, x_59, x_61, x_62, x_63); -x_65 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_65, 0, x_64); -lean_ctor_set(x_65, 1, x_4); -return x_65; +x_63 = l_Lean_Syntax_mkAntiquotNode(x_60, x_59, x_61, x_62); +x_64 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_64, 0, x_63); +lean_ctor_set(x_64, 1, x_4); +return x_64; } } } @@ -23223,14 +23223,13 @@ return x_2; static lean_object* _init_l_Lean_Elab_Command_mkSimpleDelab_go___closed__4() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; uint8_t x_5; lean_object* x_6; +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_1 = lean_box(0); x_2 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__3; x_3 = lean_unsigned_to_nat(0u); x_4 = lean_box(0); -x_5 = 0; -x_6 = l_Lean_Syntax_mkAntiquotNode(x_2, x_3, x_1, x_4, x_5); -return x_6; +x_5 = l_Lean_Syntax_mkAntiquotNode(x_2, x_3, x_1, x_4); +return x_5; } } static lean_object* _init_l_Lean_Elab_Command_mkSimpleDelab_go___closed__5() { @@ -27295,7 +27294,7 @@ lean_dec(x_64); x_65 = lean_ctor_get(x_48, 0); lean_inc(x_65); lean_dec(x_48); -x_66 = l_Lean_Syntax_mkAntiquotNode___closed__16; +x_66 = l_Lean_Syntax_mkAntiquotNode___closed__9; x_67 = lean_array_push(x_66, x_4); x_68 = lean_array_push(x_67, x_46); x_69 = lean_array_push(x_68, x_65); @@ -27315,7 +27314,7 @@ lean_dec(x_47); x_73 = lean_ctor_get(x_48, 0); lean_inc(x_73); lean_dec(x_48); -x_74 = l_Lean_Syntax_mkAntiquotNode___closed__16; +x_74 = l_Lean_Syntax_mkAntiquotNode___closed__9; x_75 = lean_array_push(x_74, x_4); x_76 = lean_array_push(x_75, x_46); x_77 = lean_array_push(x_76, x_73); @@ -28557,7 +28556,17 @@ static lean_object* _init_l_Lean_Elab_Command_expandMacroArgIntoPattern___closed _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Syntax_mkAntiquotNode___closed__4; +x_1 = l_Lean_Elab_Term_mkExplicitBinder___closed__3; +x_2 = l_Lean_Syntax_mkAntiquotNode___closed__1; +x_3 = lean_array_push(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Command_expandMacroArgIntoPattern___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Elab_Command_expandMacroArgIntoPattern___closed__1; x_2 = l_Lean_mkOptionalNode___closed__1; x_3 = lean_array_push(x_1, x_2); return x_3; @@ -28602,7 +28611,7 @@ lean_dec(x_4); x_12 = lean_unsigned_to_nat(0u); x_13 = l_Lean_Syntax_getArg(x_1, x_12); lean_dec(x_1); -x_14 = l_Lean_Elab_Command_expandMacroArgIntoPattern___closed__1; +x_14 = l_Lean_Elab_Command_expandMacroArgIntoPattern___closed__2; x_15 = lean_array_push(x_14, x_13); x_16 = l_Lean_mkOptionalNode___closed__1; x_17 = lean_array_push(x_15, x_16); @@ -34580,6 +34589,8 @@ if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_Elab_Command_expandMacroArgIntoPattern___closed__1 = _init_l_Lean_Elab_Command_expandMacroArgIntoPattern___closed__1(); lean_mark_persistent(l_Lean_Elab_Command_expandMacroArgIntoPattern___closed__1); +l_Lean_Elab_Command_expandMacroArgIntoPattern___closed__2 = _init_l_Lean_Elab_Command_expandMacroArgIntoPattern___closed__2(); +lean_mark_persistent(l_Lean_Elab_Command_expandMacroArgIntoPattern___closed__2); l_Lean_Elab_Command_expandMacro___closed__1 = _init_l_Lean_Elab_Command_expandMacro___closed__1(); lean_mark_persistent(l_Lean_Elab_Command_expandMacro___closed__1); l_Lean_Elab_Command_expandMacro___closed__2 = _init_l_Lean_Elab_Command_expandMacro___closed__2(); diff --git a/stage0/stdlib/Lean/Elab/Tactic/Rewrite.c b/stage0/stdlib/Lean/Elab/Tactic/Rewrite.c index 6097d4c82a..dd0c0df337 100644 --- a/stage0/stdlib/Lean/Elab/Tactic/Rewrite.c +++ b/stage0/stdlib/Lean/Elab/Tactic/Rewrite.c @@ -32,7 +32,6 @@ extern lean_object* l_Lean_Meta_rewrite___closed__1; lean_object* l___regBuiltin_Lean_Elab_Tactic_expandRewriteTactic(lean_object*); lean_object* l_List_append___rarg(lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_rewriteTarget_match__1___rarg(lean_object*, lean_object*); -extern lean_object* l_Lean_Syntax_mkAntiquotNode___closed__16; lean_object* l_Lean_Elab_Tactic_evalERewrite___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_evalERewrite(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_push(lean_object*, lean_object*); @@ -67,6 +66,7 @@ lean_object* l_Lean_Elab_Tactic_rewriteLocalDecl(lean_object*, uint8_t, lean_obj lean_object* l_Lean_Elab_Tactic_rewriteLocalDecl___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_expandERewriteTactic___boxed(lean_object*, lean_object*, lean_object*); size_t lean_usize_of_nat(lean_object*); +extern lean_object* l_Lean_Syntax_mkAntiquotNode___closed__9; lean_object* l_Lean_Elab_Tactic_evalRewriteCore_match__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_rewriteLocalDeclFVarId(lean_object*, uint8_t, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_expandERewriteTactic(lean_object*, lean_object*, lean_object*); @@ -138,7 +138,7 @@ x_9 = lean_array_uset(x_4, x_3, x_8); x_10 = x_7; x_11 = l_Lean_Parser_Tactic_rewrite___closed__3; x_12 = l_Lean_mkAtomFrom(x_10, x_11); -x_13 = l_Lean_Syntax_mkAntiquotNode___closed__16; +x_13 = l_Lean_Syntax_mkAntiquotNode___closed__9; x_14 = lean_array_push(x_13, x_12); x_15 = lean_array_push(x_14, x_10); lean_inc(x_1); @@ -248,7 +248,7 @@ x_9 = lean_array_uset(x_4, x_3, x_8); x_10 = x_7; x_11 = l_Lean_Parser_Tactic_erewrite___closed__3; x_12 = l_Lean_mkAtomFrom(x_10, x_11); -x_13 = l_Lean_Syntax_mkAntiquotNode___closed__16; +x_13 = l_Lean_Syntax_mkAntiquotNode___closed__9; x_14 = lean_array_push(x_13, x_12); x_15 = lean_array_push(x_14, x_10); lean_inc(x_1); diff --git a/stage0/stdlib/Lean/Elab/Term.c b/stage0/stdlib/Lean/Elab/Term.c index d4361c64f2..b3b6e7ab54 100644 --- a/stage0/stdlib/Lean/Elab/Term.c +++ b/stage0/stdlib/Lean/Elab/Term.c @@ -61,7 +61,6 @@ lean_object* l___regBuiltin_Lean_Elab_Term_elabBadCDot___closed__2; lean_object* lean_erase_macro_scopes(lean_object*); lean_object* l_ReaderT_read___at_Lean_Elab_Term_instMonadLogTermElabM___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Term_0__Lean_Elab_Term_applyAttributesCore___spec__1(lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_Syntax_mkAntiquotNode___closed__3; lean_object* l_Lean_stringToMessageData(lean_object*); lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_mkFreshTypeMVarFor(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Std_PersistentArray_forM___at_Lean_Elab_Term_instMetaEvalTermElabM___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -121,6 +120,7 @@ lean_object* l_Lean_Format_pretty(lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_liftAttrM(lean_object*); lean_object* l_Lean_Elab_Term_throwErrorIfErrors___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_getDeclName_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_Syntax_mkAntiquotNode___closed__7; lean_object* l_Lean_Elab_Term_getFVarLocalDecl_x21___closed__2; lean_object* l_Lean_Elab_logTrace___at_Lean_Elab_Term_traceAtCmdPos___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_instInhabitedTermElabM___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -203,7 +203,6 @@ lean_object* l_Lean_Elab_logAt___at_Lean_Elab_Term_traceAtCmdPos___spec__3(lean_ lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_tryCoeSort_match__1(lean_object*); lean_object* l_Lean_Elab_Term_synthesizeInstMVarCore___closed__6; lean_object* l_Lean_Elab_Term_instMonadLogTermElabM___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_Syntax_mkAntiquotNode___closed__16; lean_object* l_Lean_Elab_Term_ensureNoUnassignedMVars(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkIdentFrom(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_withoutPostponing(lean_object*); @@ -545,7 +544,6 @@ lean_object* l_Lean_Elab_Term_elabSyntheticHole_match__2___rarg(lean_object*, le lean_object* l_Lean_Elab_Term_mkTypeMismatchError(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_throwPostpone___at_Lean_Elab_Term_tryPostpone___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_State_levelNames___default; -extern lean_object* l_Lean_Syntax_mkAntiquotNode___closed__15; lean_object* l_Std_PersistentHashMap_findAtAux___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabUsingElabFns___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_getCoeMaxSize(lean_object*); lean_object* l_Std_PersistentArray_forInAux___at_Lean_Elab_Term_addAutoBoundImplicits___spec__3___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -640,6 +638,7 @@ lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_tryLiftAndCoe_match__3 extern lean_object* l_Lean_KernelException_toMessageData___closed__3; size_t lean_usize_of_nat(lean_object*); lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_tryLiftAndCoe_match__3(lean_object*); +extern lean_object* l_Lean_Syntax_mkAntiquotNode___closed__9; lean_object* l_Lean_Elab_Term_throwTypeMismatchError_match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Std_PersistentArray_forIn___at_Lean_Elab_Term_addAutoBoundImplicits___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_elabTermAux___lambda__3(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -725,6 +724,7 @@ lean_object* l_List_foldlM___at_Lean_Elab_Term_logUnassignedUsingErrorInfos___sp lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_isMonad_x3f___closed__2; lean_object* l_Lean_Elab_Term_mkTermElabAttributeUnsafe___closed__8; lean_object* l_Lean_Elab_Term_addAutoBoundImplicits___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_Syntax_mkAntiquotNode___closed__8; lean_object* l___private_Lean_Util_Trace_0__Lean_checkTraceOptionM___at___private_Lean_Elab_Term_0__Lean_Elab_Term_postponeElabTerm___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_elabStrLit(lean_object*); lean_object* l_Lean_Elab_Term_elabRawNatLit_match__1(lean_object*); @@ -933,6 +933,7 @@ lean_object* l___private_Lean_MonadEnv_0__Lean_mkAuxNameAux(lean_object*, lean_o lean_object* l_Lean_throwErrorAt___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabTermAux___spec__1(lean_object*); lean_object* l_Lean_Elab_Term_throwTypeMismatchError___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_elabTermAux___lambda__4___closed__5; +lean_object* l_Lean_Elab_Term_mkExplicitBinder___closed__4; lean_object* l_Lean_Elab_Term_withoutErrToSorry___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_withoutMacroStackAtErr___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_List_foldr___at_Lean_Elab_Term_isLetRecAuxMVar___spec__1___boxed(lean_object*, lean_object*, lean_object*); @@ -1093,7 +1094,6 @@ lean_object* l_Lean_Meta_mkAppM___at___private_Lean_Elab_Term_0__Lean_Elab_Term_ uint8_t l_Lean_LocalContext_isSubPrefixOf(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabSyntheticHole___closed__3; lean_object* l_Lean_Syntax_formatStxAux(lean_object*, uint8_t, lean_object*, lean_object*); -extern lean_object* l_Lean_Syntax_mkAntiquotNode___closed__11; lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_tryPureCoe_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabBadCDot___rarg___closed__1; lean_object* l_Lean_Meta_isType(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -7399,9 +7399,18 @@ return x_3; static lean_object* _init_l_Lean_Elab_Term_mkExplicitBinder___closed__3() { _start: { +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(5u); +x_2 = lean_mk_empty_array_with_capacity(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Elab_Term_mkExplicitBinder___closed__4() { +_start: +{ lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Syntax_mkAntiquotNode___closed__3; -x_2 = l_Lean_Syntax_mkAntiquotNode___closed__14; +x_1 = l_Lean_Elab_Term_mkExplicitBinder___closed__3; +x_2 = l_Lean_Syntax_mkAntiquotNode___closed__7; x_3 = lean_array_push(x_1, x_2); return x_3; } @@ -7416,17 +7425,17 @@ x_5 = l_Lean_nullKind; x_6 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_6, 0, x_5); lean_ctor_set(x_6, 1, x_4); -x_7 = l_Lean_Syntax_mkAntiquotNode___closed__11; +x_7 = l_Lean_Syntax_mkAntiquotNode___closed__14; x_8 = lean_array_push(x_7, x_2); x_9 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_9, 0, x_5); lean_ctor_set(x_9, 1, x_8); -x_10 = l_Lean_Elab_Term_mkExplicitBinder___closed__3; +x_10 = l_Lean_Elab_Term_mkExplicitBinder___closed__4; x_11 = lean_array_push(x_10, x_6); x_12 = lean_array_push(x_11, x_9); x_13 = l_Lean_mkOptionalNode___closed__1; x_14 = lean_array_push(x_12, x_13); -x_15 = l_Lean_Syntax_mkAntiquotNode___closed__15; +x_15 = l_Lean_Syntax_mkAntiquotNode___closed__8; x_16 = lean_array_push(x_14, x_15); x_17 = l_Lean_Elab_Term_mkExplicitBinder___closed__2; x_18 = lean_alloc_ctor(1, 2, 0); @@ -9756,7 +9765,7 @@ lean_ctor_set(x_28, 1, x_27); x_29 = l___private_Lean_Elab_Term_0__Lean_Elab_Term_tryCoe___closed__2; lean_inc(x_28); x_30 = l_Lean_mkConst(x_29, x_28); -x_31 = l_Lean_Syntax_mkAntiquotNode___closed__16; +x_31 = l_Lean_Syntax_mkAntiquotNode___closed__9; lean_inc(x_3); x_32 = lean_array_push(x_31, x_3); lean_inc(x_4); @@ -14028,7 +14037,7 @@ lean_ctor_set(x_97, 1, x_96); x_98 = l___private_Lean_Elab_Term_0__Lean_Elab_Term_tryLiftAndCoe___closed__4; lean_inc(x_97); x_99 = l_Lean_mkConst(x_98, x_97); -x_100 = l_Lean_Syntax_mkAntiquotNode___closed__3; +x_100 = l_Lean_Elab_Term_mkExplicitBinder___closed__3; lean_inc(x_48); x_101 = lean_array_push(x_100, x_48); lean_inc(x_26); @@ -14177,7 +14186,7 @@ lean_ctor_set(x_128, 0, x_122); lean_ctor_set(x_128, 1, x_127); x_129 = l___private_Lean_Elab_Term_0__Lean_Elab_Term_tryCoe___closed__2; x_130 = l_Lean_mkConst(x_129, x_128); -x_131 = l_Lean_Syntax_mkAntiquotNode___closed__16; +x_131 = l_Lean_Syntax_mkAntiquotNode___closed__9; lean_inc(x_49); x_132 = lean_array_push(x_131, x_49); x_133 = l_Lean_Meta_commitWhen___at___private_Lean_Meta_ExprDefEq_0__Lean_Meta_isDefEqEta___spec__1___closed__1; @@ -14946,7 +14955,7 @@ lean_ctor_set(x_276, 1, x_275); x_277 = l___private_Lean_Elab_Term_0__Lean_Elab_Term_tryLiftAndCoe___closed__4; lean_inc(x_276); x_278 = l_Lean_mkConst(x_277, x_276); -x_279 = l_Lean_Syntax_mkAntiquotNode___closed__3; +x_279 = l_Lean_Elab_Term_mkExplicitBinder___closed__3; lean_inc(x_229); x_280 = lean_array_push(x_279, x_229); lean_inc(x_26); @@ -15095,7 +15104,7 @@ lean_ctor_set(x_307, 0, x_301); lean_ctor_set(x_307, 1, x_306); x_308 = l___private_Lean_Elab_Term_0__Lean_Elab_Term_tryCoe___closed__2; x_309 = l_Lean_mkConst(x_308, x_307); -x_310 = l_Lean_Syntax_mkAntiquotNode___closed__16; +x_310 = l_Lean_Syntax_mkAntiquotNode___closed__9; lean_inc(x_230); x_311 = lean_array_push(x_310, x_230); x_312 = l_Lean_Meta_commitWhen___at___private_Lean_Meta_ExprDefEq_0__Lean_Meta_isDefEqEta___spec__1___closed__1; @@ -15983,7 +15992,7 @@ lean_ctor_set(x_463, 1, x_462); x_464 = l___private_Lean_Elab_Term_0__Lean_Elab_Term_tryLiftAndCoe___closed__4; lean_inc(x_463); x_465 = l_Lean_mkConst(x_464, x_463); -x_466 = l_Lean_Syntax_mkAntiquotNode___closed__3; +x_466 = l_Lean_Elab_Term_mkExplicitBinder___closed__3; lean_inc(x_416); x_467 = lean_array_push(x_466, x_416); lean_inc(x_396); @@ -16132,7 +16141,7 @@ lean_ctor_set(x_494, 0, x_488); lean_ctor_set(x_494, 1, x_493); x_495 = l___private_Lean_Elab_Term_0__Lean_Elab_Term_tryCoe___closed__2; x_496 = l_Lean_mkConst(x_495, x_494); -x_497 = l_Lean_Syntax_mkAntiquotNode___closed__16; +x_497 = l_Lean_Syntax_mkAntiquotNode___closed__9; lean_inc(x_417); x_498 = lean_array_push(x_497, x_417); x_499 = l_Lean_Meta_commitWhen___at___private_Lean_Meta_ExprDefEq_0__Lean_Meta_isDefEqEta___spec__1___closed__1; @@ -37045,6 +37054,8 @@ l_Lean_Elab_Term_mkExplicitBinder___closed__2 = _init_l_Lean_Elab_Term_mkExplici lean_mark_persistent(l_Lean_Elab_Term_mkExplicitBinder___closed__2); l_Lean_Elab_Term_mkExplicitBinder___closed__3 = _init_l_Lean_Elab_Term_mkExplicitBinder___closed__3(); lean_mark_persistent(l_Lean_Elab_Term_mkExplicitBinder___closed__3); +l_Lean_Elab_Term_mkExplicitBinder___closed__4 = _init_l_Lean_Elab_Term_mkExplicitBinder___closed__4(); +lean_mark_persistent(l_Lean_Elab_Term_mkExplicitBinder___closed__4); l_Lean_Elab_Term_mkTypeMismatchError___closed__1 = _init_l_Lean_Elab_Term_mkTypeMismatchError___closed__1(); lean_mark_persistent(l_Lean_Elab_Term_mkTypeMismatchError___closed__1); l_Lean_Elab_Term_mkTypeMismatchError___closed__2 = _init_l_Lean_Elab_Term_mkTypeMismatchError___closed__2(); diff --git a/stage0/stdlib/Lean/Meta/AppBuilder.c b/stage0/stdlib/Lean/Meta/AppBuilder.c index fdb4bebc43..cbdf0e27ef 100644 --- a/stage0/stdlib/Lean/Meta/AppBuilder.c +++ b/stage0/stdlib/Lean/Meta/AppBuilder.c @@ -28,6 +28,7 @@ lean_object* l_Lean_registerTraceClass(lean_object*, lean_object*); lean_object* l___private_Lean_Meta_AppBuilder_0__Lean_Meta_mkCongrImp___closed__2; lean_object* l___private_Lean_Meta_AppBuilder_0__Lean_Meta_mkCongrFunImp_match__2(lean_object*); lean_object* l___private_Lean_Meta_AppBuilder_0__Lean_Meta_mkAppOptMAux___closed__9; +extern lean_object* l_Lean_Syntax_mkAntiquotNode___closed__3; lean_object* l_Lean_stringToMessageData(lean_object*); lean_object* l___private_Lean_Meta_AppBuilder_0__Lean_Meta_mkEqNDRecImp_match__2___rarg(lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Meta_AppBuilder_0__Lean_Meta_throwAppBuilderException___rarg___closed__1; @@ -317,7 +318,6 @@ lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Meta_AppBuilder_0__Lea lean_object* l_Lean_Meta_mkPure___rarg___closed__3; lean_object* l___private_Lean_Meta_AppBuilder_0__Lean_Meta_mkCongrArgImp___closed__2; lean_object* l_Lean_Meta_mkArrayLit___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_Std_PersistentHashMap_mkCollisionNode___rarg___closed__1; lean_object* l_Lean_Meta_mkDecideProof___rarg___lambda__1___closed__1; lean_object* l___private_Lean_Meta_AppBuilder_0__Lean_Meta_mkNoConfusionImp___closed__5; lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Meta_AppBuilder_0__Lean_Meta_mkAppMFinal___spec__1(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -9165,7 +9165,7 @@ x_58 = lean_unsigned_to_nat(1u); x_59 = lean_nat_sub(x_55, x_58); lean_dec(x_55); x_60 = l___private_Lean_Expr_0__Lean_Expr_getAppArgsAux(x_28, x_57, x_59); -x_61 = l_Std_PersistentHashMap_mkCollisionNode___rarg___closed__1; +x_61 = l_Lean_Syntax_mkAntiquotNode___closed__3; x_62 = lean_array_push(x_61, x_1); x_63 = lean_array_push(x_62, x_25); x_64 = lean_array_push(x_63, x_26); @@ -9206,7 +9206,7 @@ x_80 = lean_unsigned_to_nat(1u); x_81 = lean_nat_sub(x_77, x_80); lean_dec(x_77); x_82 = l___private_Lean_Expr_0__Lean_Expr_getAppArgsAux(x_28, x_79, x_81); -x_83 = l_Std_PersistentHashMap_mkCollisionNode___rarg___closed__1; +x_83 = l_Lean_Syntax_mkAntiquotNode___closed__3; x_84 = lean_array_push(x_83, x_1); x_85 = lean_array_push(x_84, x_25); x_86 = lean_array_push(x_85, x_26); @@ -9452,7 +9452,7 @@ lean_ctor_set(x_4, 0, x_2); x_5 = lean_box(0); x_6 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_6, 0, x_3); -x_7 = l_Std_PersistentHashMap_mkCollisionNode___rarg___closed__1; +x_7 = l_Lean_Syntax_mkAntiquotNode___closed__3; x_8 = lean_array_push(x_7, x_4); x_9 = lean_array_push(x_8, x_5); x_10 = lean_array_push(x_9, x_5); diff --git a/stage0/stdlib/Lean/Meta/Match/CaseArraySizes.c b/stage0/stdlib/Lean/Meta/Match/CaseArraySizes.c index eb3b2c8adc..80277bc608 100644 --- a/stage0/stdlib/Lean/Meta/Match/CaseArraySizes.c +++ b/stage0/stdlib/Lean/Meta/Match/CaseArraySizes.c @@ -17,6 +17,7 @@ lean_object* l_Lean_Meta_CaseArraySizesSubgoal_subst___default; size_t l_USize_add(size_t, size_t); extern lean_object* l_Array_term_____x5b___x3a___x5d___closed__2; lean_object* l_Lean_Expr_mvarId_x21(lean_object*); +extern lean_object* l_Lean_Syntax_mkAntiquotNode___closed__3; lean_object* l_Lean_stringToMessageData(lean_object*); lean_object* l___private_Lean_Meta_AppBuilder_0__Lean_Meta_mkEqImp(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_mk_empty_array_with_capacity(lean_object*); @@ -33,7 +34,6 @@ extern lean_object* l_Array_empty___closed__1; lean_object* l_Lean_Meta_caseArraySizes___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_getMVarTag(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_caseArraySizes___lambda__1___closed__2; -extern lean_object* l_Lean_Syntax_mkAntiquotNode___closed__16; lean_object* l_Lean_Meta_caseArraySizes_match__6___rarg(lean_object*, lean_object*); lean_object* l_Lean_Meta_CaseArraySizesSubgoal_elems___default; extern lean_object* l_Lean_Literal_type___closed__3; @@ -87,6 +87,7 @@ lean_object* l_Lean_Meta_caseArraySizes_match__2___rarg(lean_object*, lean_objec lean_object* l_Lean_mkFVar(lean_object*); lean_object* l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_Match_CaseArraySizes_0__Lean_Meta_introArrayLit_loop___spec__2___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); size_t lean_usize_of_nat(lean_object*); +extern lean_object* l_Lean_Syntax_mkAntiquotNode___closed__9; lean_object* l___private_Lean_Meta_Match_CaseArraySizes_0__Lean_Meta_introArrayLit_match__1(lean_object*); lean_object* l___private_Lean_Meta_Match_CaseArraySizes_0__Lean_Meta_introArrayLit_loop___lambda__1(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_instToExprBool___lambda__1___closed__2; @@ -101,7 +102,6 @@ lean_object* l_Lean_Meta_instInhabitedCaseArraySizesSubgoal___closed__1; lean_object* l_Array_mapMUnsafe_map___at_Lean_Meta_caseArraySizes___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkApp(lean_object*, lean_object*); lean_object* l_Lean_Meta_caseArraySizes_match__2(lean_object*); -extern lean_object* l_Std_PersistentHashMap_mkCollisionNode___rarg___closed__1; lean_object* l_Lean_Meta_mkArrayLit___at___private_Lean_Meta_Match_CaseArraySizes_0__Lean_Meta_introArrayLit_loop___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_caseArraySizes_match__4___rarg(lean_object*, lean_object*); lean_object* l___private_Lean_Meta_Match_CaseArraySizes_0__Lean_Meta_introArrayLit_loop___closed__1; @@ -605,7 +605,7 @@ lean_inc(x_16); x_17 = lean_ctor_get(x_15, 1); lean_inc(x_17); lean_dec(x_15); -x_18 = l_Std_PersistentHashMap_mkCollisionNode___rarg___closed__1; +x_18 = l_Lean_Syntax_mkAntiquotNode___closed__3; x_19 = lean_array_push(x_18, x_1); x_20 = lean_array_push(x_19, x_10); x_21 = lean_array_push(x_20, x_4); @@ -1111,7 +1111,7 @@ x_22 = lean_ctor_get(x_20, 1); lean_inc(x_22); lean_dec(x_20); x_23 = l_Lean_mkNatLit(x_3); -x_24 = l_Lean_Syntax_mkAntiquotNode___closed__16; +x_24 = l_Lean_Syntax_mkAntiquotNode___closed__9; x_25 = lean_array_push(x_24, x_2); x_26 = lean_array_push(x_25, x_23); x_27 = lean_array_push(x_26, x_5); diff --git a/stage0/stdlib/Lean/Meta/Match/CaseValues.c b/stage0/stdlib/Lean/Meta/Match/CaseValues.c index a42500468d..6d79230ad4 100644 --- a/stage0/stdlib/Lean/Meta/Match/CaseValues.c +++ b/stage0/stdlib/Lean/Meta/Match/CaseValues.c @@ -16,9 +16,9 @@ extern "C" { lean_object* l_Lean_Meta_caseValues_loop(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); size_t l_USize_add(size_t, size_t); lean_object* l_Lean_Expr_mvarId_x21(lean_object*); -extern lean_object* l_Lean_Syntax_mkAntiquotNode___closed__3; lean_object* l_Lean_stringToMessageData(lean_object*); lean_object* l___private_Lean_Meta_AppBuilder_0__Lean_Meta_mkEqImp(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* lean_mk_empty_array_with_capacity(lean_object*); lean_object* l_Lean_Meta_appendTagSuffix(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_name_mk_string(lean_object*, lean_object*); uint8_t l_USize_decEq(size_t, size_t); @@ -99,6 +99,7 @@ lean_object* l_Lean_mkApp(lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Tactic_case___closed__1; lean_object* l_Lean_Meta_caseValues_loop___closed__1; lean_object* l_Lean_Meta_caseValues_loop_match__3(lean_object*); +lean_object* l_Lean_Meta_caseValueAux___lambda__3___closed__7; lean_object* l_Lean_Meta_caseValueAux___lambda__2___closed__2; lean_object* l_Lean_Meta_caseValue___closed__3; lean_object* l_Lean_Meta_caseValues_loop_match__2___rarg(lean_object*, lean_object*, lean_object*); @@ -515,14 +516,23 @@ return x_3; static lean_object* _init_l_Lean_Meta_caseValueAux___lambda__3___closed__4() { _start: { +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(5u); +x_2 = lean_mk_empty_array_with_capacity(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Meta_caseValueAux___lambda__3___closed__5() { +_start: +{ lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Syntax_mkAntiquotNode___closed__3; +x_2 = l_Lean_Meta_caseValueAux___lambda__3___closed__4; x_3 = lean_array_push(x_2, x_1); return x_3; } } -static lean_object* _init_l_Lean_Meta_caseValueAux___lambda__3___closed__5() { +static lean_object* _init_l_Lean_Meta_caseValueAux___lambda__3___closed__6() { _start: { lean_object* x_1; lean_object* x_2; @@ -532,12 +542,12 @@ lean_closure_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Meta_caseValueAux___lambda__3___closed__6() { +static lean_object* _init_l_Lean_Meta_caseValueAux___lambda__3___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_mkAnswer___closed__4; -x_2 = l_Lean_Meta_caseValueAux___lambda__3___closed__5; +x_2 = l_Lean_Meta_caseValueAux___lambda__3___closed__6; x_3 = lean_alloc_closure((void*)(l_ReaderT_bind___at_Lean_Meta_instMonadLCtxMetaM___spec__2___rarg), 7, 2); lean_closure_set(x_3, 0, x_1); lean_closure_set(x_3, 1, x_2); @@ -614,7 +624,7 @@ lean_ctor_set(x_35, 0, x_28); lean_inc(x_31); x_36 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_36, 0, x_31); -x_37 = l_Lean_Meta_caseValueAux___lambda__3___closed__4; +x_37 = l_Lean_Meta_caseValueAux___lambda__3___closed__5; x_38 = lean_array_push(x_37, x_34); x_39 = lean_array_push(x_38, x_33); x_40 = lean_array_push(x_39, x_35); @@ -709,7 +719,7 @@ lean_inc(x_67); x_70 = lean_alloc_closure((void*)(l_Lean_Meta_caseValueAux___lambda__1___boxed), 8, 2); lean_closure_set(x_70, 0, x_67); lean_closure_set(x_70, 1, x_69); -x_71 = l_Lean_Meta_caseValueAux___lambda__3___closed__6; +x_71 = l_Lean_Meta_caseValueAux___lambda__3___closed__7; x_72 = lean_alloc_closure((void*)(l_ReaderT_bind___at_Lean_Meta_instMonadLCtxMetaM___spec__2___rarg), 7, 2); lean_closure_set(x_72, 0, x_71); lean_closure_set(x_72, 1, x_70); @@ -807,7 +817,7 @@ lean_inc(x_90); x_93 = lean_alloc_closure((void*)(l_Lean_Meta_caseValueAux___lambda__1___boxed), 8, 2); lean_closure_set(x_93, 0, x_90); lean_closure_set(x_93, 1, x_92); -x_94 = l_Lean_Meta_caseValueAux___lambda__3___closed__6; +x_94 = l_Lean_Meta_caseValueAux___lambda__3___closed__7; x_95 = lean_alloc_closure((void*)(l_ReaderT_bind___at_Lean_Meta_instMonadLCtxMetaM___spec__2___rarg), 7, 2); lean_closure_set(x_95, 0, x_94); lean_closure_set(x_95, 1, x_93); @@ -2064,6 +2074,8 @@ l_Lean_Meta_caseValueAux___lambda__3___closed__5 = _init_l_Lean_Meta_caseValueAu lean_mark_persistent(l_Lean_Meta_caseValueAux___lambda__3___closed__5); l_Lean_Meta_caseValueAux___lambda__3___closed__6 = _init_l_Lean_Meta_caseValueAux___lambda__3___closed__6(); lean_mark_persistent(l_Lean_Meta_caseValueAux___lambda__3___closed__6); +l_Lean_Meta_caseValueAux___lambda__3___closed__7 = _init_l_Lean_Meta_caseValueAux___lambda__3___closed__7(); +lean_mark_persistent(l_Lean_Meta_caseValueAux___lambda__3___closed__7); l_Lean_Meta_caseValue___closed__1 = _init_l_Lean_Meta_caseValue___closed__1(); lean_mark_persistent(l_Lean_Meta_caseValue___closed__1); l_Lean_Meta_caseValue___closed__2 = _init_l_Lean_Meta_caseValue___closed__2(); diff --git a/stage0/stdlib/Lean/Meta/Tactic/Replace.c b/stage0/stdlib/Lean/Meta/Tactic/Replace.c index e415963650..cdef0f530d 100644 --- a/stage0/stdlib/Lean/Meta/Tactic/Replace.c +++ b/stage0/stdlib/Lean/Meta/Tactic/Replace.c @@ -16,6 +16,7 @@ extern "C" { lean_object* l_Lean_Meta_replaceTargetDefEq(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Meta_mkEqMP___rarg___closed__2; lean_object* l_Lean_Expr_mvarId_x21(lean_object*); +extern lean_object* l_Lean_Syntax_mkAntiquotNode___closed__3; lean_object* l_Lean_stringToMessageData(lean_object*); lean_object* l___private_Lean_Meta_AppBuilder_0__Lean_Meta_mkEqImp(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_LocalDecl_userName(lean_object*); @@ -77,7 +78,6 @@ lean_object* l_Lean_Meta_replaceLocalDecl___lambda__1(lean_object*, lean_object* lean_object* l_Lean_Meta_changeLocalDecl___lambda__1___closed__2; lean_object* l_Lean_Meta_replaceTargetDefEq___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_changeLocalDecl_match__1___rarg(lean_object*, lean_object*); -extern lean_object* l_Std_PersistentHashMap_mkCollisionNode___rarg___closed__1; lean_object* l_Lean_Meta_getLevel(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkForall(lean_object*, uint8_t, lean_object*, lean_object*); lean_object* l___private_Lean_Meta_AppBuilder_0__Lean_Meta_mkExpectedTypeHintImp(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -177,7 +177,7 @@ lean_ctor_set(x_28, 0, x_20); lean_ctor_set(x_28, 1, x_27); x_29 = l_Lean_Meta_mkEqMPR___rarg___closed__2; x_30 = l_Lean_mkConst(x_29, x_28); -x_31 = l_Std_PersistentHashMap_mkCollisionNode___rarg___closed__1; +x_31 = l_Lean_Syntax_mkAntiquotNode___closed__3; x_32 = lean_array_push(x_31, x_17); x_33 = lean_array_push(x_32, x_2); x_34 = lean_array_push(x_33, x_3); diff --git a/stage0/stdlib/Lean/Parser.c b/stage0/stdlib/Lean/Parser.c index 232acaf1c8..76308d8775 100644 --- a/stage0/stdlib/Lean/Parser.c +++ b/stage0/stdlib/Lean/Parser.c @@ -23,7 +23,6 @@ lean_object* l_Lean_PrettyPrinter_Parenthesizer_interpretParserDescr___elambda__ lean_object* l___regBuiltin_Lean_PrettyPrinter_Parenthesizer_ident_parenthesizer___closed__1; lean_object* l___regBuiltin_Lean_PrettyPrinter_Parenthesizer_charLit_parenthesizer___closed__1; lean_object* l_Lean_PrettyPrinter_Parenthesizer_categoryParser_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__16; lean_object* l_Lean_Parser_initFn____x40_Lean_Parser___hyg_4____closed__25; lean_object* l___regBuiltin_Lean_PrettyPrinter_Formatter_ident_formatter___closed__1; lean_object* l_Lean_PrettyPrinter_Parenthesizer_interpretParserDescr___elambda__9(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -38,6 +37,7 @@ lean_object* l_Lean_Parser_sepBy1_parenthesizer(lean_object*, lean_object*, lean lean_object* l_Lean_Parser_initFn____x40_Lean_Parser___hyg_4____closed__5; lean_object* l_Lean_Parser_lookahead(lean_object*); extern lean_object* l_Lean_Parser_charLit; +extern lean_object* l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__10; extern lean_object* l_Lean_identKind___closed__2; lean_object* l_Lean_PrettyPrinter_Parenthesizer_interpretParserDescr___elambda__6___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_initFn____x40_Lean_Parser___hyg_4____closed__19; @@ -58,14 +58,13 @@ lean_object* l_Lean_Parser_initFn____x40_Lean_Parser___hyg_4____closed__7; lean_object* l_Lean_Parser_withPosition(lean_object*); lean_object* l_Lean_PrettyPrinter_Formatter_charLit_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_sepBy1_formatter(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__12; lean_object* l_Lean_Parser_initFn____x40_Lean_Parser___hyg_4____closed__16; lean_object* l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_numLit_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_str_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_interpretParserDescr___elambda__9___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_leadingNode_formatter___closed__1; -extern lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__5; +extern lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__1; lean_object* l_Lean_PrettyPrinter_Formatter_interpretParserDescr___elambda__8(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Formatter_interpretParserDescr___elambda__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_scientific_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -81,7 +80,6 @@ lean_object* l___regBuiltin_Lean_PrettyPrinter_Formatter_strLit_formatter___clos extern lean_object* l_term___x24_______closed__4; lean_object* l_Lean_PrettyPrinter_Parenthesizer_ident_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Formatter_interpretParserDescr___elambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__1; lean_object* lean_mk_antiquot_parenthesizer(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_interpretParserDescr___elambda__6(lean_object*, uint8_t); lean_object* l_Lean_Parser_checkNoWsBefore(lean_object*); @@ -89,6 +87,7 @@ extern lean_object* l_termS_x21_____closed__6; lean_object* l_Lean_PrettyPrinter_Parenthesizer_interpretParserDescr___elambda__10(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Formatter_ident_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_PrettyPrinter_Formatter_charLit_formatter(lean_object*); +extern lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__16; lean_object* l___regBuiltin_Lean_PrettyPrinter_Formatter_ident_formatter(lean_object*); lean_object* l___regBuiltin_Lean_PrettyPrinter_Parenthesizer_scientificLit_parenthesizer(lean_object*); lean_object* l_Lean_Parser_atomic(lean_object*); @@ -97,7 +96,6 @@ lean_object* l___regBuiltin_Lean_PrettyPrinter_Formatter_scientificLit_formatter lean_object* l_Lean_Parser_initFn____x40_Lean_Parser___hyg_4____lambda__1___closed__1; extern lean_object* l_Lean_Parser_nameLit; lean_object* l_Lean_PrettyPrinter_Formatter_node_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__10; extern lean_object* l_Lean_Parser_Tactic_intro___closed__10; lean_object* l___regBuiltin_Lean_PrettyPrinter_Parenthesizer_charLit_parenthesizer(lean_object*); lean_object* l_Lean_Parser_initFn____x40_Lean_Parser___hyg_4____closed__22; @@ -117,13 +115,12 @@ lean_object* l_Lean_PrettyPrinter_Formatter_interpretParserDescr___elambda__9___ extern lean_object* l_Lean_Parser_Tactic_location___closed__4; extern lean_object* l_Lean_PrettyPrinter_combinatorFormatterAttribute; lean_object* l_Lean_PrettyPrinter_Formatter_symbol_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__3; extern lean_object* l_Lean_numLitKind___closed__2; extern lean_object* l_Lean_PrettyPrinter_formatterAttribute; lean_object* l_Lean_PrettyPrinter_Formatter_interpretParserDescr_match__1(lean_object*); lean_object* l_Lean_Parser_interpolatedStr(lean_object*); -extern lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__8; lean_object* l_Lean_Parser_Term_char_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__5; lean_object* l_Lean_PrettyPrinter_Formatter_scientificLit_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_charLit_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Formatter_interpretParserDescr___elambda__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -155,8 +152,10 @@ lean_object* l_Lean_Parser_Term_ident_parenthesizer(lean_object*, lean_object*, extern lean_object* l_myMacro____x40_Init_Notation___hyg_158____closed__4; extern lean_object* l_Lean_PrettyPrinter_combinatorParenthesizerAttribute; lean_object* l_Lean_Parser_initFn____x40_Lean_Parser___hyg_4____closed__2; +extern lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__7; lean_object* l_Lean_PrettyPrinter_Formatter_interpretParserDescr___elambda__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Formatter_numLit_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__12; lean_object* l_Lean_PrettyPrinter_Parenthesizer_interpretParserDescr___elambda__5___boxed(lean_object*); lean_object* l_Lean_PrettyPrinter_Formatter_interpretParserDescr___elambda__9(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_initFn____x40_Lean_Parser___hyg_4____closed__27; @@ -173,6 +172,7 @@ lean_object* l_Lean_PrettyPrinter_Formatter_interpretParserDescr_match__1___rarg lean_object* l_Lean_Parser_initFn____x40_Lean_Parser___hyg_4_(lean_object*); extern lean_object* l_Lean_Parser_instAndThenParser___closed__1; lean_object* l___regBuiltin_Lean_PrettyPrinter_Parenthesizer_scientificLit_parenthesizer___closed__1; +extern lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__11; extern lean_object* l_Lean_PrettyPrinter_Parenthesizer_parenthesizerAliasesRef; lean_object* l_Lean_PrettyPrinter_Formatter_interpretParserDescr___elambda__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_pretty_printer_formatter_interpret_parser_descr(lean_object*, lean_object*, lean_object*, lean_object*); @@ -185,11 +185,11 @@ lean_object* l_Lean_Parser_initFn____x40_Lean_Parser___hyg_4____closed__23; lean_object* l_Lean_Parser_initFn____x40_Lean_Parser___hyg_4____closed__13; extern lean_object* l_myMacro____x40_Init_Notation___hyg_1261____closed__10; lean_object* l_Lean_PrettyPrinter_Parenthesizer_interpretParserDescr___elambda__7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__7; lean_object* l_Lean_PrettyPrinter_Parenthesizer_interpretParserDescr_match__1(lean_object*); lean_object* l_Lean_Parser_Term_num_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_trailingNode_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_PrettyPrinter_Formatter_numLit_formatter___closed__1; +extern lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__3; extern lean_object* l_Lean_Parser_instInhabitedParser___closed__1; lean_object* l_Lean_Parser_initFn____x40_Lean_Parser___hyg_4____lambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_sepBy_parenthesizer(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -201,11 +201,11 @@ lean_object* l_Lean_Parser_many1(lean_object*); lean_object* l___regBuiltin_Lean_PrettyPrinter_Parenthesizer_ident_parenthesizer(lean_object*); lean_object* l_Lean_PrettyPrinter_Formatter_andthen_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_interpretParserDescr___elambda__5(lean_object*); +extern lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__8; lean_object* l_Lean_Parser_initFn____x40_Lean_Parser___hyg_4____closed__26; lean_object* l_Lean_PrettyPrinter_Parenthesizer_interpretParserDescr___elambda__5___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_node_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Formatter_categoryParser_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__11; static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser___hyg_4____lambda__1___closed__1() { _start: { @@ -569,7 +569,7 @@ lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; x_14 = lean_ctor_get(x_13, 1); lean_inc(x_14); lean_dec(x_13); -x_15 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__8; +x_15 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__8; x_16 = l_Lean_Parser_initFn____x40_Lean_Parser___hyg_4____closed__7; x_17 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_15, x_16, x_14); if (lean_obj_tag(x_17) == 0) @@ -578,7 +578,7 @@ lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; x_18 = lean_ctor_get(x_17, 1); lean_inc(x_18); lean_dec(x_17); -x_19 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__12; +x_19 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__12; x_20 = l_Lean_Parser_initFn____x40_Lean_Parser___hyg_4____closed__8; x_21 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_19, x_20, x_18); if (lean_obj_tag(x_21) == 0) @@ -587,7 +587,7 @@ lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; x_22 = lean_ctor_get(x_21, 1); lean_inc(x_22); lean_dec(x_21); -x_23 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__16; +x_23 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__16; x_24 = l_Lean_Parser_initFn____x40_Lean_Parser___hyg_4____closed__9; x_25 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_23, x_24, x_22); if (lean_obj_tag(x_25) == 0) @@ -623,7 +623,7 @@ lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; x_38 = lean_ctor_get(x_37, 1); lean_inc(x_38); lean_dec(x_37); -x_39 = l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__10; +x_39 = l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__10; x_40 = l_Lean_Parser_initFn____x40_Lean_Parser___hyg_4____closed__16; x_41 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_39, x_40, x_38); if (lean_obj_tag(x_41) == 0) @@ -2623,7 +2623,7 @@ _start: { lean_object* x_6; lean_object* x_7; lean_object* x_8; x_6 = l_Lean_Parser_leadingNode_formatter___closed__1; -x_7 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__11; +x_7 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__11; x_8 = l_Lean_PrettyPrinter_Formatter_andthen_formatter(x_6, x_7, x_1, x_2, x_3, x_4, x_5); return x_8; } @@ -2652,7 +2652,7 @@ _start: { lean_object* x_6; lean_object* x_7; lean_object* x_8; x_6 = l_Lean_Parser_leadingNode_formatter___closed__1; -x_7 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__1; +x_7 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__1; x_8 = l_Lean_PrettyPrinter_Formatter_andthen_formatter(x_6, x_7, x_1, x_2, x_3, x_4, x_5); return x_8; } @@ -2681,7 +2681,7 @@ _start: { lean_object* x_6; lean_object* x_7; lean_object* x_8; x_6 = l_Lean_Parser_leadingNode_formatter___closed__1; -x_7 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__3; +x_7 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__3; x_8 = l_Lean_PrettyPrinter_Formatter_andthen_formatter(x_6, x_7, x_1, x_2, x_3, x_4, x_5); return x_8; } @@ -2710,7 +2710,7 @@ _start: { lean_object* x_6; lean_object* x_7; lean_object* x_8; x_6 = l_Lean_Parser_leadingNode_formatter___closed__1; -x_7 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__7; +x_7 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__7; x_8 = l_Lean_PrettyPrinter_Formatter_andthen_formatter(x_6, x_7, x_1, x_2, x_3, x_4, x_5); return x_8; } @@ -2739,7 +2739,7 @@ _start: { lean_object* x_6; lean_object* x_7; lean_object* x_8; x_6 = l_Lean_Parser_leadingNode_formatter___closed__1; -x_7 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__5; +x_7 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__5; x_8 = l_Lean_PrettyPrinter_Formatter_andthen_formatter(x_6, x_7, x_1, x_2, x_3, x_4, x_5); return x_8; } diff --git a/stage0/stdlib/Lean/Parser/Basic.c b/stage0/stdlib/Lean/Parser/Basic.c index 62081560a5..fcf8107621 100644 --- a/stage0/stdlib/Lean/Parser/Basic.c +++ b/stage0/stdlib/Lean/Parser/Basic.c @@ -62,6 +62,7 @@ lean_object* l_Lean_Parser_parserOfStack___elambda__1(lean_object*, lean_object* lean_object* l_Lean_Parser_manyNoAntiquot(lean_object*); lean_object* l_Lean_Parser_decimalNumberFn___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_notFollowedByFn___closed__1; +extern lean_object* l_Lean_Syntax_mkAntiquotNode___closed__12; lean_object* l_Lean_Parser_ParserState_keepNewError_match__1___rarg(lean_object*, lean_object*); lean_object* l_Lean_Parser_FirstTokens_toOptional_match__1___rarg(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_nullKind; @@ -93,6 +94,7 @@ lean_object* l_Lean_Parser_binNumberFn___boxed(lean_object*, lean_object*, lean_ lean_object* l_Lean_Parser_ParserState_toErrorMsg_match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Error_merge_match__1___rarg(lean_object*, lean_object*); lean_object* l_Lean_Parser_numberFnAux(lean_object*, lean_object*); +lean_object* l_Lean_Parser_withAntiquotSuffixSpliceFn___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_withoutInfo(lean_object*); lean_object* l_Lean_Parser_identEqFn___closed__1; lean_object* l_Std_PersistentHashMap_insertAux___at_Lean_Parser_SyntaxNodeKindSet_insert___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -142,6 +144,7 @@ size_t l_USize_sub(size_t, size_t); lean_object* l_Lean_Parser_PrattParsingTables_leadingTable___default; extern lean_object* l_Array_empty___closed__1; lean_object* l_Lean_Parser_ParserState_pushSyntax(lean_object*, lean_object*); +lean_object* l_Lean_Parser_withAntiquotSuffixSpliceFn___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_mkAntiquot___closed__17; lean_object* l_Lean_Parser_mkAntiquotScope___closed__7; lean_object* l_Lean_Parser_parserOfStackFnUnsafe_match__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*); @@ -151,6 +154,7 @@ lean_object* l_Lean_Parser_anyOfFn_match__1___rarg(lean_object*, lean_object*, l lean_object* l_Lean_Parser_strAux_parse(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Parser_isLitKind(lean_object*); lean_object* l_Lean_Parser_atomicFn_match__1(lean_object*); +lean_object* l_Lean_Parser_withAntiquotScopeAndSuffix(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_fieldIdxKind___closed__1; lean_object* l_Lean_Parser_antiquotNestedExpr___elambda__1___closed__1; lean_object* l_Lean_Parser_withAntiquotFn(lean_object*, lean_object*, lean_object*, lean_object*); @@ -167,6 +171,7 @@ lean_object* l_Lean_Parser_ParserState_mkNode(lean_object*, lean_object*, lean_o uint8_t l_Lean_Parser_binNumberFn___lambda__1(uint32_t); lean_object* l_Lean_Parser_FirstTokens_toStr_match__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_List_append___rarg(lean_object*, lean_object*); +lean_object* l_Lean_Parser_withAntiquotSuffixSpliceFn___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_nameLitNoAntiquot___closed__1; lean_object* l_Lean_Parser_ParserState_mergeErrors_match__1(lean_object*); uint8_t lean_name_eq(lean_object*, lean_object*); @@ -252,6 +257,7 @@ uint8_t l_Lean_Parser_ParserContext_insideQuot___default; lean_object* l_Lean_Parser_checkPrecFn(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_orelseFnCore_match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* lean_nat_add(lean_object*, lean_object*); +extern lean_object* l_Lean_Syntax_antiquotSuffixSplice_x3f_match__1___rarg___closed__1; extern lean_object* l_myMacro____x40_Init_Notation___hyg_49____closed__15; lean_object* l_Lean_Parser_indexed___rarg(lean_object*, lean_object*, lean_object*, uint8_t); lean_object* l_Std_RBNode_find___at_Lean_Parser_indexed___spec__6(lean_object*); @@ -308,6 +314,7 @@ lean_object* l_Lean_Parser_checkColGtFn_match__1___rarg(lean_object*, lean_objec lean_object* l_Lean_Parser_checkStackTopFn(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Std_RBNode_setBlack___rarg(lean_object*); lean_object* l_Lean_Parser_takeWhileFn___boxed(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_withAntiquotSuffixSplice(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_unicodeSymbolInfo___elambda__1(lean_object*); lean_object* l_Lean_Parser_identNoAntiquot___closed__1; lean_object* l_Lean_Parser_ParserState_setPos(lean_object*, lean_object*); @@ -411,12 +418,14 @@ lean_object* l_Lean_Parser_parserOfStackFnUnsafe___closed__4; lean_object* l_Lean_Parser_ParserState_mkNode_match__1___rarg(lean_object*, lean_object*); lean_object* l_Lean_Parser_peekToken(lean_object*, lean_object*); lean_object* l_Lean_Parser_Error_toString___closed__4; +lean_object* l_Lean_Parser_withAntiquotSuffixSpliceFn___lambda__1___closed__1; lean_object* l_Lean_Parser_SyntaxNodeKindSet_insert(lean_object*, lean_object*); extern lean_object* l_Lean_strLitKind___closed__1; lean_object* l_Lean_Parser_atomic(lean_object*); lean_object* l_Lean_Parser_nodeWithAntiquot___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_antiquotNestedExpr___closed__4; lean_object* l_Lean_Parser_checkColGeFn_match__1(lean_object*); +lean_object* l_Lean_Parser_withAntiquotSuffixSpliceFn___lambda__1___boxed(lean_object*, lean_object*, lean_object*); lean_object* lean_array_fset(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_parserOfStack___elambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_skip; @@ -427,6 +436,7 @@ lean_object* l_Lean_Parser_nonReservedSymbolInfo___closed__3; lean_object* l_Lean_Parser_sepByElemParser___boxed(lean_object*, lean_object*); lean_object* l_Lean_Parser_ParserState_shrinkStack(lean_object*, lean_object*); lean_object* l_Lean_Parser_checkOutsideQuot___closed__2; +lean_object* l_Lean_Parser_withAntiquotSuffixSpliceFn___lambda__1(lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Parser_checkTailNoWs(lean_object*); lean_object* l_Lean_Parser_checkTailWs___boxed(lean_object*); lean_object* l_Lean_Parser_longestMatchFnAux_parse(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -455,7 +465,6 @@ lean_object* l_Lean_Parser_optionalNoAntiquot(lean_object*); lean_object* l_Lean_Parser_antiquotExpr___closed__1; lean_object* l_Lean_Parser_antiquotNestedExpr___elambda__1___closed__5; lean_object* l_Lean_Parser_categoryParserOfStack(lean_object*, lean_object*); -lean_object* l_Lean_Parser_mkAntiquot___closed__20; lean_object* l_Lean_Parser_checkWsBefore(lean_object*); lean_object* l_Lean_Parser_checkNoWsBeforeFn(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_ParserState_setCache(lean_object*, lean_object*); @@ -516,7 +525,6 @@ lean_object* l_Std_RBNode_find___at_Lean_Parser_indexed___spec__3(lean_object*); lean_object* l_Lean_Parser_unicodeSymbol___boxed(lean_object*, lean_object*); lean_object* l_Lean_Parser_nodeInfo___elambda__2(lean_object*, lean_object*); lean_object* l_Lean_Parser_parserOfStack(lean_object*, lean_object*); -lean_object* l_Lean_Parser_mkAntiquot___closed__23; lean_object* l_Lean_Parser_identFnAux(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_strLitNoAntiquot___closed__3; lean_object* l_Array_findSomeRevM_x3f_find___at___private_Lean_Parser_Basic_0__Lean_Parser_pickNonNone___spec__1(lean_object*, lean_object*, lean_object*); @@ -541,7 +549,6 @@ lean_object* l_Lean_Parser_leadingParserAux_match__1___rarg(lean_object*, lean_o lean_object* l_Lean_Parser_longestMatchMkResult(lean_object*, lean_object*); size_t l_USize_mul(size_t, size_t); lean_object* l_Lean_Parser_toggleInsideQuot(lean_object*); -lean_object* l_Lean_Parser_sepByElemParser___elambda__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Syntax_forArgsM___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_whitespace(lean_object*, lean_object*); lean_object* l_Lean_Parser_identFnAux_parse___closed__1; @@ -553,7 +560,6 @@ lean_object* l_Lean_Parser_sepByInfo___elambda__1(lean_object*, lean_object*, le lean_object* l_Lean_Parser_categoryParserOfStackFn_match__1(lean_object*); lean_object* l_Lean_Parser_quotedCharCoreFn___closed__1; lean_object* l_Lean_Parser_ParserState_restore___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_mkAntiquot___closed__21; lean_object* l_Lean_Parser_ParserState_restore(lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Parser_Basic_0__Lean_Parser_pickNonNone_match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_antiquotNestedExpr___closed__3; @@ -569,7 +575,7 @@ lean_object* l_Lean_Parser_sepByFn___boxed(lean_object*, lean_object*, lean_obje lean_object* l_Lean_Parser_manyAux(lean_object*, lean_object*, lean_object*); size_t lean_usize_of_nat(lean_object*); lean_object* l_Lean_Parser_checkInsideQuotFn___closed__1; -extern lean_object* l_Lean_Syntax_mkAntiquotNode___closed__9; +uint8_t l_Lean_Syntax_isAntiquot(lean_object*); lean_object* l_Lean_Parser_mkAntiquot___closed__7; lean_object* l_Lean_Parser_pushNone___closed__1; lean_object* l_Lean_Parser_chFn(uint32_t, uint8_t, lean_object*, lean_object*); @@ -675,7 +681,6 @@ lean_object* l_Lean_Parser_PrattParsingTables_trailingTable___default; lean_object* l_Lean_Parser_ParserModuleContext_currNamespace___default; lean_object* l_Std_RBNode_insert___at_Lean_Parser_TokenMap_insert___spec__5___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_ParserState_mkUnexpectedErrorAt(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_mkAntiquot___closed__24; lean_object* l_Std_RBNode_find___at_Lean_Parser_TokenMap_insert___spec__1(lean_object*); lean_object* l_Lean_Parser_mergeOrElseErrors(lean_object*, lean_object*, lean_object*, uint8_t); lean_object* l_Std_RBNode_find___at_Lean_Parser_indexed___spec__1(lean_object*); @@ -691,7 +696,6 @@ uint8_t l_Std_RBNode_isRed___rarg(lean_object*); lean_object* l_Lean_Parser_parserOfStackFnUnsafe___closed__6; lean_object* l_Lean_Parser_ParserState_mkError_match__1(lean_object*); lean_object* l_Lean_Parser_antiquotNestedExpr___closed__6; -lean_object* l_Lean_Parser_mkAntiquot___closed__22; lean_object* l_Lean_Parser_TokenMap_insert_match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_getArgs(lean_object*); lean_object* l_Lean_Name_append(lean_object*, lean_object*); @@ -742,7 +746,6 @@ lean_object* l_Lean_Parser_indexed_match__5(lean_object*); lean_object* l_Lean_Parser_fieldIdxFn___boxed(lean_object*, lean_object*); lean_object* l_Std_RBNode_find___at_Lean_Parser_indexed___spec__4___rarg___boxed(lean_object*, lean_object*); lean_object* l_Lean_Parser_mkAntiquotScope___closed__1; -lean_object* l_Lean_Parser_mkAntiquot___closed__19; lean_object* l___private_Lean_Parser_Basic_0__Lean_Parser_sepByFnAux_parse___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Parser_Basic_0__Lean_Parser_rawAux(lean_object*, uint8_t, lean_object*, lean_object*); lean_object* l_UInt32_decEq___boxed(lean_object*, lean_object*); @@ -776,7 +779,6 @@ lean_object* l_Lean_Parser_takeWhile1Fn___boxed(lean_object*, lean_object*, lean lean_object* l_Lean_Parser_identNoAntiquot___closed__3; lean_object* l_Lean_Parser_epsilonInfo___closed__1; lean_object* l_Lean_Parser_checkPrec(lean_object*); -extern lean_object* l_Lean_Syntax_mkAntiquotNode___closed__13; lean_object* l_Lean_Parser_checkNoImmediateColon___closed__2; lean_object* l_Lean_Parser_identEqFn_match__1(lean_object*); lean_object* l_Lean_Parser_sepBy1NoAntiquot(lean_object*, lean_object*, uint8_t); @@ -820,6 +822,7 @@ lean_object* l___private_Lean_Parser_Basic_0__Lean_Parser_tokenFnAux_match__1(le lean_object* l_Lean_Parser_mkAntiquot___closed__6; extern lean_object* l_myMacro____x40_Init_Notation___hyg_11918____closed__9; lean_object* l_Lean_Parser_parserOfStackFnUnsafe___closed__1; +extern lean_object* l_Lean_Syntax_mkAntiquotNode___closed__6; lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_6082_(lean_object*); lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Basic___hyg_6100_(lean_object*); lean_object* l_Lean_Parser_fieldIdx___closed__7; @@ -899,7 +902,6 @@ lean_object* l_Lean_Parser_indexed___rarg___boxed(lean_object*, lean_object*, le lean_object* l_Lean_Parser_rawFn___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_categoryParserOfStackFn(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_ParserState_keepPrevError(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_mkAntiquot___closed__25; lean_object* l_Lean_Parser_checkWsBefore___elambda__1___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_sepBy1___elambda__1(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_TokenCacheEntry_stopPos___default; @@ -913,9 +915,11 @@ lean_object* l_Lean_Parser_ParserState_replaceLongest___boxed(lean_object*, lean lean_object* l_Lean_Parser_longestMatchStep___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_quotedCharCoreFn___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Error_toString___closed__1; +lean_object* l_Lean_Parser_withAntiquotScopeAndSuffix___elambda__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Std_RBNode_find___at_Lean_Parser_indexed___spec__2___rarg(lean_object*, lean_object*); lean_object* l_Lean_Parser_mkAntiquot___closed__2; lean_object* l_Lean_Parser_withResultOfInfo(lean_object*); +lean_object* l_Lean_Parser_withAntiquotSuffixSpliceFn(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_categoryParserOfStack___elambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_qpartition_loop___at_Lean_Parser_Error_toString___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_manyAux___closed__1; @@ -27327,7 +27331,7 @@ lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean x_12 = l_Lean_Parser_antiquotNestedExpr___elambda__1___closed__3; x_13 = l_Lean_Parser_antiquotNestedExpr___elambda__1___closed__7; x_14 = l_Lean_Parser_symbolFnAux(x_12, x_13, x_1, x_10); -x_15 = l_Lean_Syntax_mkAntiquotNode___closed__13; +x_15 = l_Lean_Syntax_mkAntiquotNode___closed__6; x_16 = l_Lean_Parser_ParserState_mkNode(x_14, x_15, x_4); return x_16; } @@ -27336,7 +27340,7 @@ else lean_object* x_17; lean_object* x_18; lean_dec(x_11); lean_dec(x_1); -x_17 = l_Lean_Syntax_mkAntiquotNode___closed__13; +x_17 = l_Lean_Syntax_mkAntiquotNode___closed__6; x_18 = l_Lean_Parser_ParserState_mkNode(x_10, x_17, x_4); return x_18; } @@ -27346,7 +27350,7 @@ else lean_object* x_19; lean_object* x_20; lean_dec(x_8); lean_dec(x_1); -x_19 = l_Lean_Syntax_mkAntiquotNode___closed__13; +x_19 = l_Lean_Syntax_mkAntiquotNode___closed__6; x_20 = l_Lean_Parser_ParserState_mkNode(x_7, x_19, x_4); return x_20; } @@ -27406,7 +27410,7 @@ static lean_object* _init_l_Lean_Parser_antiquotNestedExpr___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Syntax_mkAntiquotNode___closed__13; +x_1 = l_Lean_Syntax_mkAntiquotNode___closed__6; x_2 = l_Lean_Parser_antiquotNestedExpr___closed__5; x_3 = l_Lean_Parser_nodeInfo(x_1, x_2); return x_3; @@ -27677,10 +27681,9 @@ return x_2; static lean_object* _init_l_Lean_Parser_mkAntiquot___closed__15() { _start: { -lean_object* x_1; lean_object* x_2; -x_1 = l_stx___x2a___closed__3; -x_2 = l_String_trim(x_1); -return x_2; +lean_object* x_1; +x_1 = lean_mk_string("no space before spliced term"); +return x_1; } } static lean_object* _init_l_Lean_Parser_mkAntiquot___closed__16() { @@ -27688,80 +27691,12 @@ _start: { lean_object* x_1; lean_object* x_2; x_1 = l_Lean_Parser_mkAntiquot___closed__15; -x_2 = l_Lean_Parser_symbolInfo(x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_mkAntiquot___closed__17() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_mkAntiquot___closed__15; -x_2 = lean_alloc_closure((void*)(l_Lean_Parser_symbolFn___boxed), 3, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_mkAntiquot___closed__18() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_epsilonInfo; -x_2 = l_Lean_Parser_mkAntiquot___closed__16; -x_3 = l_Lean_Parser_andthenInfo(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_mkAntiquot___closed__19() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_mkAntiquot___closed__11; -x_2 = l_Lean_Parser_mkAntiquot___closed__17; -x_3 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_mkAntiquot___closed__20() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_mkAntiquot___closed__18; -x_2 = l_Lean_Parser_optionaInfo(x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_mkAntiquot___closed__21() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_mkAntiquot___closed__19; -x_2 = lean_alloc_closure((void*)(l_Lean_Parser_optionalFn), 3, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_mkAntiquot___closed__22() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("no space before spliced term"); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_mkAntiquot___closed__23() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_mkAntiquot___closed__22; x_2 = lean_alloc_closure((void*)(l_Lean_Parser_checkNoWsBefore___elambda__1___boxed), 3, 1); lean_closure_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_mkAntiquot___closed__24() { +static lean_object* _init_l_Lean_Parser_mkAntiquot___closed__17() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; @@ -27775,7 +27710,7 @@ x_5 = l_Lean_Parser_andthenInfo(x_2, x_4); return x_5; } } -static lean_object* _init_l_Lean_Parser_mkAntiquot___closed__25() { +static lean_object* _init_l_Lean_Parser_mkAntiquot___closed__18() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -27814,7 +27749,7 @@ lean_closure_set(x_18, 0, x_7); x_19 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); lean_closure_set(x_19, 0, x_18); lean_closure_set(x_19, 1, x_15); -x_20 = l_Lean_Syntax_mkAntiquotNode___closed__9; +x_20 = l_Lean_Syntax_mkAntiquotNode___closed__12; x_21 = l_Lean_Parser_nodeInfo(x_20, x_17); x_22 = lean_alloc_closure((void*)(l_Lean_Parser_nodeFn), 4, 2); lean_closure_set(x_22, 0, x_20); @@ -27827,21 +27762,21 @@ x_26 = lean_ctor_get(x_25, 1); lean_inc(x_26); if (lean_obj_tag(x_2) == 0) { -lean_object* x_81; -x_81 = lean_box(0); -x_27 = x_81; -goto block_80; +lean_object* x_73; +x_73 = lean_box(0); +x_27 = x_73; +goto block_72; } else { -lean_object* x_82; -x_82 = lean_ctor_get(x_2, 0); -lean_inc(x_82); +lean_object* x_74; +x_74 = lean_ctor_get(x_2, 0); +lean_inc(x_74); lean_dec(x_2); -x_27 = x_82; -goto block_80; +x_27 = x_74; +goto block_72; } -block_80: +block_72: { lean_object* x_28; lean_object* x_29; x_28 = l_Lean_Syntax_mkAntiquotNode___closed__2; @@ -27849,99 +27784,87 @@ x_29 = l_Lean_Name_append(x_27, x_28); lean_dec(x_27); if (x_3 == 0) { -lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; -x_30 = l_Lean_Parser_mkAntiquot___closed__20; -x_31 = l_Lean_Parser_andthenInfo(x_21, x_30); -x_32 = l_Lean_Parser_mkAntiquot___closed__21; -x_33 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_33, 0, x_22); -lean_closure_set(x_33, 1, x_32); -x_34 = l_Lean_Parser_andthenInfo(x_24, x_31); -x_35 = l_Lean_Parser_antiquotExpr___closed__2; -x_36 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_36, 0, x_35); -lean_closure_set(x_36, 1, x_33); -x_37 = l_Lean_Parser_andthenInfo(x_16, x_34); -x_38 = l_Lean_Parser_mkAntiquot___closed__23; +lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; +x_30 = l_Lean_Parser_andthenInfo(x_24, x_21); +x_31 = l_Lean_Parser_antiquotExpr___closed__2; +x_32 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); +lean_closure_set(x_32, 0, x_31); +lean_closure_set(x_32, 1, x_22); +x_33 = l_Lean_Parser_andthenInfo(x_16, x_30); +x_34 = l_Lean_Parser_mkAntiquot___closed__16; +x_35 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); +lean_closure_set(x_35, 0, x_34); +lean_closure_set(x_35, 1, x_32); +x_36 = l_Lean_Parser_mkAntiquot___closed__13; +x_37 = l_Lean_Parser_andthenInfo(x_36, x_33); +x_38 = l_Lean_Parser_mkAntiquot___closed__14; x_39 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); lean_closure_set(x_39, 0, x_38); -lean_closure_set(x_39, 1, x_36); -x_40 = l_Lean_Parser_mkAntiquot___closed__13; +lean_closure_set(x_39, 1, x_35); +x_40 = l_Lean_Parser_mkAntiquot___closed__6; x_41 = l_Lean_Parser_andthenInfo(x_40, x_37); -x_42 = l_Lean_Parser_mkAntiquot___closed__14; -x_43 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); +x_42 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); +lean_closure_set(x_42, 0, x_26); +lean_closure_set(x_42, 1, x_39); +x_43 = lean_alloc_closure((void*)(l_Lean_Parser_atomicFn), 3, 1); lean_closure_set(x_43, 0, x_42); -lean_closure_set(x_43, 1, x_39); -x_44 = l_Lean_Parser_mkAntiquot___closed__6; -x_45 = l_Lean_Parser_andthenInfo(x_44, x_41); -x_46 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_46, 0, x_26); -lean_closure_set(x_46, 1, x_43); -x_47 = lean_alloc_closure((void*)(l_Lean_Parser_atomicFn), 3, 1); -lean_closure_set(x_47, 0, x_46); lean_inc(x_29); -x_48 = l_Lean_Parser_nodeInfo(x_29, x_45); -x_49 = lean_alloc_closure((void*)(l_Lean_Parser_nodeFn), 4, 2); -lean_closure_set(x_49, 0, x_29); -lean_closure_set(x_49, 1, x_47); -x_50 = l_Lean_Parser_andthenInfo(x_16, x_48); -x_51 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot___elambda__1), 3, 1); -lean_closure_set(x_51, 0, x_49); -x_52 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_52, 0, x_50); -lean_ctor_set(x_52, 1, x_51); -return x_52; +x_44 = l_Lean_Parser_nodeInfo(x_29, x_41); +x_45 = lean_alloc_closure((void*)(l_Lean_Parser_nodeFn), 4, 2); +lean_closure_set(x_45, 0, x_29); +lean_closure_set(x_45, 1, x_43); +x_46 = l_Lean_Parser_andthenInfo(x_16, x_44); +x_47 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot___elambda__1), 3, 1); +lean_closure_set(x_47, 0, x_45); +x_48 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_48, 0, x_46); +lean_ctor_set(x_48, 1, x_47); +return x_48; } 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; 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; -x_53 = l_Lean_Parser_mkAntiquot___closed__24; -x_54 = l_Lean_Parser_orelseInfo(x_21, x_53); -x_55 = l_Lean_Parser_mkAntiquot___closed__25; -x_56 = lean_alloc_closure((void*)(l_Lean_Parser_orelseFn), 4, 2); -lean_closure_set(x_56, 0, x_22); -lean_closure_set(x_56, 1, x_55); -x_57 = l_Lean_Parser_mkAntiquot___closed__20; -x_58 = l_Lean_Parser_andthenInfo(x_54, x_57); -x_59 = l_Lean_Parser_mkAntiquot___closed__21; -x_60 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_60, 0, x_56); -lean_closure_set(x_60, 1, x_59); -x_61 = l_Lean_Parser_andthenInfo(x_24, x_58); -x_62 = l_Lean_Parser_antiquotExpr___closed__2; -x_63 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_63, 0, x_62); -lean_closure_set(x_63, 1, x_60); -x_64 = l_Lean_Parser_andthenInfo(x_16, x_61); -x_65 = l_Lean_Parser_mkAntiquot___closed__23; -x_66 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); +lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; +x_49 = l_Lean_Parser_mkAntiquot___closed__17; +x_50 = l_Lean_Parser_orelseInfo(x_21, x_49); +x_51 = l_Lean_Parser_mkAntiquot___closed__18; +x_52 = lean_alloc_closure((void*)(l_Lean_Parser_orelseFn), 4, 2); +lean_closure_set(x_52, 0, x_22); +lean_closure_set(x_52, 1, x_51); +x_53 = l_Lean_Parser_andthenInfo(x_24, x_50); +x_54 = l_Lean_Parser_antiquotExpr___closed__2; +x_55 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); +lean_closure_set(x_55, 0, x_54); +lean_closure_set(x_55, 1, x_52); +x_56 = l_Lean_Parser_andthenInfo(x_16, x_53); +x_57 = l_Lean_Parser_mkAntiquot___closed__16; +x_58 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); +lean_closure_set(x_58, 0, x_57); +lean_closure_set(x_58, 1, x_55); +x_59 = l_Lean_Parser_mkAntiquot___closed__13; +x_60 = l_Lean_Parser_andthenInfo(x_59, x_56); +x_61 = l_Lean_Parser_mkAntiquot___closed__14; +x_62 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); +lean_closure_set(x_62, 0, x_61); +lean_closure_set(x_62, 1, x_58); +x_63 = l_Lean_Parser_mkAntiquot___closed__6; +x_64 = l_Lean_Parser_andthenInfo(x_63, x_60); +x_65 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); +lean_closure_set(x_65, 0, x_26); +lean_closure_set(x_65, 1, x_62); +x_66 = lean_alloc_closure((void*)(l_Lean_Parser_atomicFn), 3, 1); lean_closure_set(x_66, 0, x_65); -lean_closure_set(x_66, 1, x_63); -x_67 = l_Lean_Parser_mkAntiquot___closed__13; -x_68 = l_Lean_Parser_andthenInfo(x_67, x_64); -x_69 = l_Lean_Parser_mkAntiquot___closed__14; -x_70 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_70, 0, x_69); -lean_closure_set(x_70, 1, x_66); -x_71 = l_Lean_Parser_mkAntiquot___closed__6; -x_72 = l_Lean_Parser_andthenInfo(x_71, x_68); -x_73 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_73, 0, x_26); -lean_closure_set(x_73, 1, x_70); -x_74 = lean_alloc_closure((void*)(l_Lean_Parser_atomicFn), 3, 1); -lean_closure_set(x_74, 0, x_73); lean_inc(x_29); -x_75 = l_Lean_Parser_nodeInfo(x_29, x_72); -x_76 = lean_alloc_closure((void*)(l_Lean_Parser_nodeFn), 4, 2); -lean_closure_set(x_76, 0, x_29); -lean_closure_set(x_76, 1, x_74); -x_77 = l_Lean_Parser_andthenInfo(x_16, x_75); -x_78 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot___elambda__2), 3, 1); -lean_closure_set(x_78, 0, x_76); -x_79 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_79, 0, x_77); -lean_ctor_set(x_79, 1, x_78); -return x_79; +x_67 = l_Lean_Parser_nodeInfo(x_29, x_64); +x_68 = lean_alloc_closure((void*)(l_Lean_Parser_nodeFn), 4, 2); +lean_closure_set(x_68, 0, x_29); +lean_closure_set(x_68, 1, x_66); +x_69 = l_Lean_Parser_andthenInfo(x_16, x_67); +x_70 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquot___elambda__2), 3, 1); +lean_closure_set(x_70, 0, x_68); +x_71 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_71, 0, x_69); +lean_ctor_set(x_71, 1, x_70); +return x_71; } } } @@ -28237,76 +28160,74 @@ return x_2; lean_object* l_Lean_Parser_mkAntiquotScope(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; 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_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; x_4 = l_Lean_Parser_mkAntiquotScope___closed__1; x_5 = l_Lean_Name_append(x_1, x_4); -lean_inc(x_2); -x_6 = l_Lean_Parser_withoutInfo(x_2); -x_7 = lean_ctor_get(x_6, 0); -lean_inc(x_7); -lean_dec(x_6); -x_8 = l_Lean_nullKind; -x_9 = l_Lean_Parser_nodeInfo(x_8, x_7); -x_10 = lean_alloc_closure((void*)(l_Lean_Parser_withoutInfo___elambda__1), 3, 1); -lean_closure_set(x_10, 0, x_2); -x_11 = lean_alloc_closure((void*)(l_Lean_Parser_nodeFn), 4, 2); -lean_closure_set(x_11, 0, x_8); -lean_closure_set(x_11, 1, x_10); -x_12 = lean_ctor_get(x_3, 0); -lean_inc(x_12); -x_13 = l_Lean_Parser_mkAntiquotScope___closed__6; -x_14 = l_Lean_Parser_andthenInfo(x_13, x_12); -x_15 = lean_ctor_get(x_3, 1); -lean_inc(x_15); +x_6 = lean_ctor_get(x_2, 0); +lean_inc(x_6); +x_7 = l_Lean_nullKind; +x_8 = l_Lean_Parser_nodeInfo(x_7, x_6); +x_9 = lean_ctor_get(x_2, 1); +lean_inc(x_9); +lean_dec(x_2); +x_10 = lean_alloc_closure((void*)(l_Lean_Parser_nodeFn), 4, 2); +lean_closure_set(x_10, 0, x_7); +lean_closure_set(x_10, 1, x_9); +x_11 = lean_ctor_get(x_3, 0); +lean_inc(x_11); +x_12 = l_Lean_Parser_mkAntiquotScope___closed__6; +x_13 = l_Lean_Parser_andthenInfo(x_12, x_11); +x_14 = lean_ctor_get(x_3, 1); +lean_inc(x_14); lean_dec(x_3); -x_16 = l_Lean_Parser_mkAntiquotScope___closed__7; -x_17 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_17, 0, x_16); -lean_closure_set(x_17, 1, x_15); -x_18 = l_Lean_Parser_andthenInfo(x_9, x_14); -x_19 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_19, 0, x_11); -lean_closure_set(x_19, 1, x_17); -x_20 = l_Lean_Parser_mkAntiquotScope___closed__3; -x_21 = l_Lean_Parser_andthenInfo(x_20, x_18); -x_22 = l_Lean_Parser_mkAntiquotScope___closed__4; -x_23 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_23, 0, x_22); -lean_closure_set(x_23, 1, x_19); -x_24 = l_Lean_Parser_epsilonInfo; -x_25 = l_Lean_Parser_andthenInfo(x_24, x_21); -x_26 = l_Lean_Parser_mkAntiquot___closed__23; -x_27 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_27, 0, x_26); -lean_closure_set(x_27, 1, x_23); -x_28 = l_Lean_Parser_mkAntiquot___closed__13; -x_29 = l_Lean_Parser_andthenInfo(x_28, x_25); -x_30 = l_Lean_Parser_mkAntiquot___closed__14; -x_31 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); -lean_closure_set(x_31, 0, x_30); -lean_closure_set(x_31, 1, x_27); -x_32 = l_Lean_Parser_mkAntiquot___closed__6; -x_33 = l_Lean_Parser_andthenInfo(x_32, x_29); -x_34 = l_Lean_Parser_mkAntiquot___closed__9; -x_35 = lean_ctor_get(x_34, 1); -lean_inc(x_35); -x_36 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); +x_15 = l_Lean_Parser_mkAntiquotScope___closed__7; +x_16 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); +lean_closure_set(x_16, 0, x_15); +lean_closure_set(x_16, 1, x_14); +x_17 = l_Lean_Parser_andthenInfo(x_8, x_13); +x_18 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); +lean_closure_set(x_18, 0, x_10); +lean_closure_set(x_18, 1, x_16); +x_19 = l_Lean_Parser_mkAntiquotScope___closed__3; +x_20 = l_Lean_Parser_andthenInfo(x_19, x_17); +x_21 = l_Lean_Parser_mkAntiquotScope___closed__4; +x_22 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); +lean_closure_set(x_22, 0, x_21); +lean_closure_set(x_22, 1, x_18); +x_23 = l_Lean_Parser_epsilonInfo; +x_24 = l_Lean_Parser_andthenInfo(x_23, x_20); +x_25 = l_Lean_Parser_mkAntiquot___closed__16; +x_26 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); +lean_closure_set(x_26, 0, x_25); +lean_closure_set(x_26, 1, x_22); +x_27 = l_Lean_Parser_mkAntiquot___closed__13; +x_28 = l_Lean_Parser_andthenInfo(x_27, x_24); +x_29 = l_Lean_Parser_mkAntiquot___closed__14; +x_30 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); +lean_closure_set(x_30, 0, x_29); +lean_closure_set(x_30, 1, x_26); +x_31 = l_Lean_Parser_mkAntiquot___closed__6; +x_32 = l_Lean_Parser_andthenInfo(x_31, x_28); +x_33 = l_Lean_Parser_mkAntiquot___closed__9; +x_34 = lean_ctor_get(x_33, 1); +lean_inc(x_34); +x_35 = lean_alloc_closure((void*)(l_Lean_Parser_andthenFn), 4, 2); +lean_closure_set(x_35, 0, x_34); +lean_closure_set(x_35, 1, x_30); +x_36 = lean_alloc_closure((void*)(l_Lean_Parser_atomicFn), 3, 1); lean_closure_set(x_36, 0, x_35); -lean_closure_set(x_36, 1, x_31); -x_37 = lean_alloc_closure((void*)(l_Lean_Parser_atomicFn), 3, 1); -lean_closure_set(x_37, 0, x_36); lean_inc(x_5); -x_38 = l_Lean_Parser_nodeInfo(x_5, x_33); -x_39 = lean_alloc_closure((void*)(l_Lean_Parser_nodeFn), 4, 2); -lean_closure_set(x_39, 0, x_5); -lean_closure_set(x_39, 1, x_37); -x_40 = l_Lean_Parser_andthenInfo(x_24, x_38); -x_41 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquotScope___elambda__1), 3, 1); -lean_closure_set(x_41, 0, x_39); -x_42 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_42, 0, x_40); -lean_ctor_set(x_42, 1, x_41); -return x_42; +x_37 = l_Lean_Parser_nodeInfo(x_5, x_32); +x_38 = lean_alloc_closure((void*)(l_Lean_Parser_nodeFn), 4, 2); +lean_closure_set(x_38, 0, x_5); +lean_closure_set(x_38, 1, x_36); +x_39 = l_Lean_Parser_andthenInfo(x_23, x_37); +x_40 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquotScope___elambda__1), 3, 1); +lean_closure_set(x_40, 0, x_38); +x_41 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_41, 0, x_39); +lean_ctor_set(x_41, 1, x_40); +return x_41; } } lean_object* l_Lean_Parser_mkAntiquotScope___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { @@ -28318,6 +28239,220 @@ lean_dec(x_1); return x_4; } } +static lean_object* _init_l_Lean_Parser_withAntiquotSuffixSpliceFn___lambda__1___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Syntax_antiquotSuffixSplice_x3f_match__1___rarg___closed__1; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +lean_object* l_Lean_Parser_withAntiquotSuffixSpliceFn___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; +x_4 = l_Lean_Parser_withAntiquotSuffixSpliceFn___lambda__1___closed__1; +x_5 = l_Lean_Name_append(x_1, x_4); +x_6 = lean_ctor_get(x_2, 0); +lean_inc(x_6); +x_7 = lean_array_get_size(x_6); +lean_dec(x_6); +x_8 = lean_unsigned_to_nat(2u); +x_9 = lean_nat_sub(x_7, x_8); +lean_dec(x_7); +x_10 = l_Lean_Parser_ParserState_mkNode(x_2, x_5, x_9); +return x_10; +} +} +lean_object* l_Lean_Parser_withAntiquotSuffixSpliceFn___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; +x_6 = lean_ctor_get(x_1, 0); +lean_inc(x_6); +x_7 = lean_array_get_size(x_6); +lean_dec(x_6); +x_8 = lean_ctor_get(x_1, 1); +lean_inc(x_8); +x_9 = lean_apply_2(x_2, x_3, x_1); +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; +lean_dec(x_8); +lean_dec(x_7); +x_11 = lean_box(0); +x_12 = l_Lean_Parser_withAntiquotSuffixSpliceFn___lambda__1(x_4, x_9, x_11); +return x_12; +} +else +{ +lean_object* x_13; +lean_dec(x_10); +x_13 = l_Lean_Parser_ParserState_restore(x_9, x_7, x_8); +lean_dec(x_7); +return x_13; +} +} +} +lean_object* l_Lean_Parser_withAntiquotSuffixSpliceFn(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_inc(x_4); +x_6 = lean_apply_2(x_2, x_4, x_5); +x_7 = lean_ctor_get(x_6, 3); +lean_inc(x_7); +if (lean_obj_tag(x_7) == 0) +{ +lean_object* x_8; lean_object* x_9; uint8_t x_10; +x_8 = lean_ctor_get(x_6, 0); +lean_inc(x_8); +x_9 = l_Array_back___at_Lean_Syntax_Traverser_up___spec__2(x_8); +lean_dec(x_8); +x_10 = l_Lean_Syntax_isAntiquot(x_9); +lean_dec(x_9); +if (x_10 == 0) +{ +lean_dec(x_4); +lean_dec(x_3); +return x_6; +} +else +{ +lean_object* x_11; lean_object* x_12; +x_11 = lean_box(0); +x_12 = l_Lean_Parser_withAntiquotSuffixSpliceFn___lambda__2(x_6, x_3, x_4, x_1, x_11); +return x_12; +} +} +else +{ +lean_dec(x_7); +lean_dec(x_4); +lean_dec(x_3); +return x_6; +} +} +} +lean_object* l_Lean_Parser_withAntiquotSuffixSpliceFn___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +lean_object* x_4; +x_4 = l_Lean_Parser_withAntiquotSuffixSpliceFn___lambda__1(x_1, x_2, x_3); +lean_dec(x_3); +lean_dec(x_1); +return x_4; +} +} +lean_object* l_Lean_Parser_withAntiquotSuffixSpliceFn___lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +lean_object* x_6; +x_6 = l_Lean_Parser_withAntiquotSuffixSpliceFn___lambda__2(x_1, x_2, x_3, x_4, x_5); +lean_dec(x_5); +lean_dec(x_4); +return x_6; +} +} +lean_object* l_Lean_Parser_withAntiquotSuffixSpliceFn___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +lean_object* x_6; +x_6 = l_Lean_Parser_withAntiquotSuffixSpliceFn(x_1, x_2, x_3, x_4, x_5); +lean_dec(x_1); +return x_6; +} +} +lean_object* l_Lean_Parser_withAntiquotSuffixSplice(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 = lean_ctor_get(x_2, 0); +lean_inc(x_4); +x_5 = lean_ctor_get(x_3, 0); +lean_inc(x_5); +x_6 = l_Lean_Parser_andthenInfo(x_4, x_5); +x_7 = lean_ctor_get(x_2, 1); +lean_inc(x_7); +lean_dec(x_2); +x_8 = lean_ctor_get(x_3, 1); +lean_inc(x_8); +lean_dec(x_3); +x_9 = lean_alloc_closure((void*)(l_Lean_Parser_withAntiquotSuffixSpliceFn___boxed), 5, 3); +lean_closure_set(x_9, 0, x_1); +lean_closure_set(x_9, 1, x_7); +lean_closure_set(x_9, 2, x_8); +x_10 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_10, 0, x_6); +lean_ctor_set(x_10, 1, x_9); +return x_10; +} +} +lean_object* l_Lean_Parser_withAntiquotScopeAndSuffix___elambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +uint8_t x_5; +lean_inc(x_4); +lean_inc(x_3); +x_5 = l_Lean_Parser_tryAnti(x_3, x_4); +if (x_5 == 0) +{ +lean_object* x_6; +lean_dec(x_2); +x_6 = lean_apply_2(x_1, x_3, x_4); +return x_6; +} +else +{ +uint8_t x_7; lean_object* x_8; +x_7 = 1; +x_8 = l_Lean_Parser_orelseFnCore(x_2, x_1, x_7, x_3, x_4); +return x_8; +} +} +} +lean_object* l_Lean_Parser_withAntiquotScopeAndSuffix(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; +lean_inc(x_2); +x_4 = l_Lean_Parser_withoutInfo(x_2); +lean_inc(x_3); +x_5 = l_Lean_Parser_mkAntiquotScope(x_1, x_4, x_3); +x_6 = lean_ctor_get(x_2, 0); +lean_inc(x_6); +x_7 = lean_ctor_get(x_3, 0); +lean_inc(x_7); +x_8 = l_Lean_Parser_andthenInfo(x_6, x_7); +x_9 = lean_ctor_get(x_2, 1); +lean_inc(x_9); +lean_dec(x_2); +x_10 = lean_ctor_get(x_3, 1); +lean_inc(x_10); +lean_dec(x_3); +x_11 = lean_alloc_closure((void*)(l_Lean_Parser_withAntiquotSuffixSpliceFn___boxed), 5, 3); +lean_closure_set(x_11, 0, x_1); +lean_closure_set(x_11, 1, x_9); +lean_closure_set(x_11, 2, x_10); +x_12 = lean_ctor_get(x_5, 0); +lean_inc(x_12); +x_13 = l_Lean_Parser_orelseInfo(x_12, x_8); +x_14 = lean_ctor_get(x_5, 1); +lean_inc(x_14); +lean_dec(x_5); +x_15 = lean_alloc_closure((void*)(l_Lean_Parser_withAntiquotScopeAndSuffix___elambda__1), 4, 2); +lean_closure_set(x_15, 0, x_11); +lean_closure_set(x_15, 1, x_14); +x_16 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_16, 0, x_13); +lean_ctor_set(x_16, 1, x_15); +return x_16; +} +} lean_object* l_Lean_Parser_nodeWithAntiquot___elambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { @@ -28385,29 +28520,6 @@ lean_dec(x_1); return x_6; } } -lean_object* l_Lean_Parser_sepByElemParser___elambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { -_start: -{ -uint8_t x_5; -lean_inc(x_4); -lean_inc(x_3); -x_5 = l_Lean_Parser_tryAnti(x_3, x_4); -if (x_5 == 0) -{ -lean_object* x_6; -lean_dec(x_1); -x_6 = lean_apply_2(x_2, x_3, x_4); -return x_6; -} -else -{ -uint8_t x_7; lean_object* x_8; -x_7 = 1; -x_8 = l_Lean_Parser_orelseFnCore(x_1, x_2, x_7, x_3, x_4); -return x_8; -} -} -} static lean_object* _init_l_Lean_Parser_sepByElemParser___closed__1() { _start: { @@ -28421,7 +28533,7 @@ return x_3; lean_object* l_Lean_Parser_sepByElemParser(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; +lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; x_3 = l_String_trim(x_2); x_4 = l_stx___x2a___closed__3; x_5 = lean_string_append(x_3, x_4); @@ -28435,26 +28547,8 @@ x_9 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_9, 0, x_7); lean_ctor_set(x_9, 1, x_8); x_10 = l_Lean_Parser_sepByElemParser___closed__1; -lean_inc(x_1); -x_11 = l_Lean_Parser_mkAntiquotScope(x_10, x_1, x_9); -x_12 = lean_ctor_get(x_11, 0); -lean_inc(x_12); -x_13 = lean_ctor_get(x_1, 0); -lean_inc(x_13); -x_14 = l_Lean_Parser_orelseInfo(x_12, x_13); -x_15 = lean_ctor_get(x_11, 1); -lean_inc(x_15); -lean_dec(x_11); -x_16 = lean_ctor_get(x_1, 1); -lean_inc(x_16); -lean_dec(x_1); -x_17 = lean_alloc_closure((void*)(l_Lean_Parser_sepByElemParser___elambda__1), 4, 2); -lean_closure_set(x_17, 0, x_15); -lean_closure_set(x_17, 1, x_16); -x_18 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_18, 0, x_14); -lean_ctor_set(x_18, 1, x_17); -return x_18; +x_11 = l_Lean_Parser_withAntiquotScopeAndSuffix(x_10, x_1, x_9); +return x_11; } } lean_object* l_Lean_Parser_sepByElemParser___boxed(lean_object* x_1, lean_object* x_2) { @@ -30944,20 +31038,6 @@ l_Lean_Parser_mkAntiquot___closed__17 = _init_l_Lean_Parser_mkAntiquot___closed_ lean_mark_persistent(l_Lean_Parser_mkAntiquot___closed__17); l_Lean_Parser_mkAntiquot___closed__18 = _init_l_Lean_Parser_mkAntiquot___closed__18(); lean_mark_persistent(l_Lean_Parser_mkAntiquot___closed__18); -l_Lean_Parser_mkAntiquot___closed__19 = _init_l_Lean_Parser_mkAntiquot___closed__19(); -lean_mark_persistent(l_Lean_Parser_mkAntiquot___closed__19); -l_Lean_Parser_mkAntiquot___closed__20 = _init_l_Lean_Parser_mkAntiquot___closed__20(); -lean_mark_persistent(l_Lean_Parser_mkAntiquot___closed__20); -l_Lean_Parser_mkAntiquot___closed__21 = _init_l_Lean_Parser_mkAntiquot___closed__21(); -lean_mark_persistent(l_Lean_Parser_mkAntiquot___closed__21); -l_Lean_Parser_mkAntiquot___closed__22 = _init_l_Lean_Parser_mkAntiquot___closed__22(); -lean_mark_persistent(l_Lean_Parser_mkAntiquot___closed__22); -l_Lean_Parser_mkAntiquot___closed__23 = _init_l_Lean_Parser_mkAntiquot___closed__23(); -lean_mark_persistent(l_Lean_Parser_mkAntiquot___closed__23); -l_Lean_Parser_mkAntiquot___closed__24 = _init_l_Lean_Parser_mkAntiquot___closed__24(); -lean_mark_persistent(l_Lean_Parser_mkAntiquot___closed__24); -l_Lean_Parser_mkAntiquot___closed__25 = _init_l_Lean_Parser_mkAntiquot___closed__25(); -lean_mark_persistent(l_Lean_Parser_mkAntiquot___closed__25); l_Lean_Parser_mkAntiquotScope___closed__1 = _init_l_Lean_Parser_mkAntiquotScope___closed__1(); lean_mark_persistent(l_Lean_Parser_mkAntiquotScope___closed__1); l_Lean_Parser_mkAntiquotScope___closed__2 = _init_l_Lean_Parser_mkAntiquotScope___closed__2(); @@ -30972,6 +31052,8 @@ l_Lean_Parser_mkAntiquotScope___closed__6 = _init_l_Lean_Parser_mkAntiquotScope_ lean_mark_persistent(l_Lean_Parser_mkAntiquotScope___closed__6); l_Lean_Parser_mkAntiquotScope___closed__7 = _init_l_Lean_Parser_mkAntiquotScope___closed__7(); lean_mark_persistent(l_Lean_Parser_mkAntiquotScope___closed__7); +l_Lean_Parser_withAntiquotSuffixSpliceFn___lambda__1___closed__1 = _init_l_Lean_Parser_withAntiquotSuffixSpliceFn___lambda__1___closed__1(); +lean_mark_persistent(l_Lean_Parser_withAntiquotSuffixSpliceFn___lambda__1___closed__1); l_Lean_Parser_sepByElemParser___closed__1 = _init_l_Lean_Parser_sepByElemParser___closed__1(); lean_mark_persistent(l_Lean_Parser_sepByElemParser___closed__1); l_Lean_Parser_categoryParserOfStackFn___closed__1 = _init_l_Lean_Parser_categoryParserOfStackFn___closed__1(); diff --git a/stage0/stdlib/Lean/Parser/Command.c b/stage0/stdlib/Lean/Parser/Command.c index 890d7fe7e6..22b85bc034 100644 --- a/stage0/stdlib/Lean/Parser/Command.c +++ b/stage0/stdlib/Lean/Parser/Command.c @@ -129,7 +129,6 @@ extern lean_object* l_Lean_Syntax_isQuot_match__1___rarg___closed__1; lean_object* l___regBuiltinParser_Lean_Parser_Command_variable(lean_object*); lean_object* l___regBuiltin_Lean_Parser_Command_open_formatter(lean_object*); lean_object* l_Lean_Parser_Command_visibility; -extern lean_object* l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__7; lean_object* l_Lean_Parser_Command_variables_formatter___closed__5; lean_object* l_Lean_Parser_Command_structInstBinder___elambda__1___closed__6; lean_object* l_Lean_Parser_Command_declModifiers_formatter___closed__15; @@ -148,6 +147,7 @@ lean_object* l_Lean_Parser_Command_extends___elambda__1___closed__7; lean_object* l_Lean_Parser_Command_printAxioms___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_end___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_openRenamingItem___elambda__1___closed__4; +extern lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__4; extern lean_object* l_Lean_Parser_Term_forall_parenthesizer___closed__2; lean_object* l_Lean_Parser_Command_extends___closed__1; lean_object* l_Lean_Parser_Command_synth_formatter___closed__4; @@ -719,7 +719,6 @@ lean_object* l_Lean_Parser_Command_initialize___elambda__1___closed__5; lean_object* l_Lean_Parser_Command_initialize___elambda__1___closed__3; lean_object* l_Lean_Parser_checkPrecFn(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_resolve__name___elambda__1___closed__9; -extern lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__5; lean_object* l_Lean_Parser_Command_docComment_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_variables___closed__6; lean_object* l_Lean_PrettyPrinter_Parenthesizer_atomic_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -866,6 +865,7 @@ lean_object* l_Lean_Parser_Command_structFields_parenthesizer___closed__6; lean_object* l_Lean_Parser_Command_openSimple_parenthesizer___closed__1; lean_object* l_Lean_Parser_Command_reduce___elambda__1___closed__8; lean_object* l_Lean_Parser_Command_initialize___closed__4; +extern lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__22; lean_object* l_Lean_Parser_Command_def___elambda__1___closed__4; lean_object* l_Lean_Parser_Command_declVal___closed__4; lean_object* l_Lean_Parser_Command_resolve__name; @@ -898,7 +898,6 @@ lean_object* l_Lean_Parser_Command_instance_parenthesizer___closed__3; lean_object* l___regBuiltin_Lean_Parser_Command_open_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Command_classTk_formatter___closed__2; lean_object* l_Lean_Parser_Command_declaration_parenthesizer___closed__9; -extern lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__24; lean_object* l_Lean_Parser_Command_builtin__initialize_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_attribute___closed__5; lean_object* l_Lean_Parser_Command_classInductive___closed__7; @@ -1106,9 +1105,9 @@ lean_object* l_Lean_Parser_Command_namespace___elambda__1(lean_object*, lean_obj lean_object* l_Lean_Parser_Command_declModifiers_formatter___closed__24; lean_object* l_Lean_Parser_Command_classInductive_parenthesizer___closed__3; lean_object* l_Lean_PrettyPrinter_Formatter_toggleInsideQuot_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__24; lean_object* l_Lean_Parser_Command_reduce___elambda__1___closed__2; lean_object* l_Lean_Parser_Command_section___elambda__1___closed__5; -extern lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__22; lean_object* l_Lean_Parser_Command_variables___closed__4; lean_object* l_Lean_Parser_Command_protected___elambda__1___closed__5; extern lean_object* l_term___x3a_x3a_____closed__3; @@ -1393,6 +1392,7 @@ lean_object* l_Lean_Parser_Command_resolve__name___elambda__1___closed__6; lean_object* l_Lean_Parser_Command_commentBody___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_open___elambda__1___closed__4; lean_object* l_Lean_Parser_Command_set__option_parenthesizer___closed__5; +extern lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__5; lean_object* l___regBuiltin_Lean_Parser_Command_end_parenthesizer(lean_object*); lean_object* l___regBuiltin_Lean_Parser_Command_export_formatter(lean_object*); lean_object* l_Lean_Parser_Command_abbrev_parenthesizer___closed__1; @@ -1525,7 +1525,6 @@ lean_object* l_Lean_Parser_Command_protected___closed__3; lean_object* l_Lean_Parser_Command_exit___elambda__1___closed__5; lean_object* l_Lean_Parser_Command_structCtor; lean_object* l_Lean_Parser_Command_reduce___elambda__1___closed__5; -extern lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__5; lean_object* l___regBuiltin_Lean_Parser_Command_check__failure_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Command_private_formatter___closed__3; lean_object* l_Lean_Parser_Command_structure_formatter___closed__7; @@ -1810,11 +1809,9 @@ lean_object* l_Lean_Parser_Command_docComment_formatter___closed__3; lean_object* l_Lean_Parser_Command_declaration_parenthesizer___closed__16; lean_object* l_Lean_Parser_Command_reduce_formatter___closed__4; lean_object* l_Lean_Parser_Command_attribute___closed__2; -extern lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__9; lean_object* l_Lean_Parser_Command_synth___closed__4; lean_object* l_Lean_Parser_Command_inductive_parenthesizer___closed__5; lean_object* l_Lean_Parser_Command_in_formatter___closed__1; -extern lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__19; lean_object* l_Lean_Parser_Command_exit___elambda__1___closed__7; lean_object* l_Lean_Parser_Command_resolve__name___closed__6; lean_object* l_Lean_Parser_Command_init__quot_parenthesizer___closed__2; @@ -2064,6 +2061,7 @@ lean_object* l_Lean_Parser_Command_variables_formatter___closed__2; lean_object* l_Lean_Parser_Command_attribute___elambda__1___closed__2; lean_object* l_Lean_Parser_Command_structSimpleBinder___elambda__1___closed__3; lean_object* l_Lean_Parser_Command_resolve__name_formatter___closed__1; +extern lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__19; lean_object* l_Lean_Parser_Command_openHiding___closed__1; lean_object* l_Lean_Parser_Command_check__failure___elambda__1___closed__6; lean_object* l_Lean_Parser_Command_def___elambda__1___closed__7; @@ -2131,6 +2129,7 @@ lean_object* l_Lean_Parser_Command_check__failure_formatter___closed__2; lean_object* l___regBuiltin_Lean_Parser_Command_printAxioms_parenthesizer___closed__1; lean_object* l_Lean_Parser_Command_openOnly___elambda__1___closed__2; lean_object* l_Lean_Parser_Command_declaration___elambda__1___closed__1; +extern lean_object* l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__7; lean_object* l_Lean_Parser_Command_attribute___elambda__1___closed__1; lean_object* l_Lean_Parser_Command_axiom___closed__1; extern lean_object* l_Lean_Parser_Term_letIdLhs_formatter___closed__4; @@ -2154,6 +2153,7 @@ lean_object* l_Lean_Parser_Command_constant___elambda__1___closed__7; lean_object* l_Lean_Parser_Command_open___elambda__1___closed__5; lean_object* l_Lean_Parser_Command_declSig___closed__5; lean_object* l_Lean_Parser_Command_declModifiers_formatter___closed__23; +extern lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__11; lean_object* l_Lean_Parser_Command_def_formatter___closed__2; lean_object* l_Lean_Parser_Command_structCtor___elambda__1___closed__4; lean_object* l_Lean_Parser_Command_structFields_parenthesizer___closed__10; @@ -2163,7 +2163,6 @@ lean_object* l_Lean_Parser_Command_universes___elambda__1___closed__9; lean_object* l_Lean_Parser_Command_print___closed__1; lean_object* l_Lean_Parser_Command_universes_parenthesizer___closed__2; lean_object* l_Lean_Parser_Command_classInductive_parenthesizer___closed__2; -extern lean_object* l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__7; lean_object* l_Lean_Parser_Command_set__option___closed__1; lean_object* l_Lean_Parser_Command_declId___elambda__1___closed__8; lean_object* l_Lean_Parser_Command_protected___elambda__1(lean_object*, lean_object*); @@ -2322,6 +2321,7 @@ lean_object* l_Lean_Parser_Command_openOnly___elambda__1___closed__8; lean_object* l_Lean_Parser_Command_inductive_formatter___closed__5; lean_object* l_Lean_Parser_Command_structure___elambda__1___closed__4; extern lean_object* l_Lean_Parser_Term_dynamicQuot___elambda__1___closed__11; +extern lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__9; lean_object* l_Lean_Parser_Command_check__failure_formatter___closed__3; lean_object* l_Lean_Parser_Command_set__option_formatter___closed__5; lean_object* l_Lean_Parser_Command_check___elambda__1___closed__7; @@ -2494,6 +2494,7 @@ lean_object* l_Lean_Parser_Command_constant___elambda__1___closed__13; lean_object* l_Lean_Parser_Command_abbrev___closed__6; lean_object* l_Lean_Parser_Command_open___closed__9; lean_object* l_Lean_Parser_Command_example___closed__2; +extern lean_object* l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__7; lean_object* l_Lean_Parser_Command_declValEqns_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_mutual___closed__5; lean_object* l_Lean_Parser_Command_declSig_formatter___closed__3; @@ -2672,7 +2673,6 @@ lean_object* l_Lean_Parser_Command_check_parenthesizer___closed__1; lean_object* l_Lean_Parser_Command_declaration___elambda__1___closed__5; lean_object* l_Lean_Parser_Command_declId___elambda__1___closed__2; lean_object* l_Lean_Parser_Command_partial_formatter___closed__2; -extern lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__11; lean_object* l_Lean_Parser_Command_structSimpleBinder___elambda__1___closed__7; lean_object* l_Lean_Parser_andthenFn(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_many1Indent___closed__2; @@ -11465,7 +11465,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Command_docComment_formatter___closed__3; -x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__22; +x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__22; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); lean_closure_set(x_3, 1, x_2); @@ -11934,7 +11934,7 @@ static lean_object* _init_l_Lean_Parser_Command_declModifiers_formatter___closed _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__22; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__22; x_2 = lean_alloc_closure((void*)(l_Lean_ppDedent_formatter), 6, 1); lean_closure_set(x_2, 0, x_1); return x_2; @@ -12118,7 +12118,7 @@ static lean_object* _init_l_Lean_Parser_Command_declId_formatter___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; -x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__11; +x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__11; x_2 = l_term_x5b___x5d___closed__5; x_3 = l_Lean_Parser_Term_tupleTail_formatter___closed__2; x_4 = 0; @@ -12169,7 +12169,7 @@ static lean_object* _init_l_Lean_Parser_Command_declId_formatter___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__11; +x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__11; x_2 = l_Lean_Parser_Command_declId_formatter___closed__5; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -13155,7 +13155,7 @@ static lean_object* _init_l_Lean_Parser_Command_ctor_formatter___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__11; +x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__11; x_2 = l_Lean_Parser_Command_ctor_formatter___closed__6; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -13651,7 +13651,7 @@ static lean_object* _init_l_Lean_Parser_Command_structCtor_formatter___closed__4 _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__11; +x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__11; x_2 = l_Lean_Parser_Command_structCtor_formatter___closed__3; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -13746,7 +13746,7 @@ static lean_object* _init_l_Lean_Parser_Command_structExplicitBinder_formatter__ _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__11; +x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__11; x_2 = lean_alloc_closure((void*)(l_Lean_Parser_many1_formatter), 6, 1); lean_closure_set(x_2, 0, x_1); return x_2; @@ -14248,7 +14248,7 @@ static lean_object* _init_l_Lean_Parser_Command_structFields_formatter___closed_ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__7; +x_1 = l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__7; x_2 = l_Lean_Parser_Command_structFields_formatter___closed__8; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -14260,7 +14260,7 @@ static lean_object* _init_l_Lean_Parser_Command_structFields_formatter___closed_ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__22; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__22; x_2 = l_Lean_Parser_Command_structFields_formatter___closed__9; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -14834,7 +14834,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Command_docComment_parenthesizer___closed__2; -x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__24; +x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__24; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); lean_closure_set(x_3, 1, x_2); @@ -15241,7 +15241,7 @@ static lean_object* _init_l_Lean_Parser_Command_declModifiers_parenthesizer___cl _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__24; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__24; x_2 = lean_alloc_closure((void*)(l_Lean_Parser_ppDedent_parenthesizer), 6, 1); lean_closure_set(x_2, 0, x_1); return x_2; @@ -15423,7 +15423,7 @@ static lean_object* _init_l_Lean_Parser_Command_declId_parenthesizer___closed__2 _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; -x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__19; +x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__19; x_2 = l_term_x5b___x5d___closed__5; x_3 = l_Lean_Parser_antiquotNestedExpr_parenthesizer___closed__3; x_4 = 0; @@ -15474,7 +15474,7 @@ static lean_object* _init_l_Lean_Parser_Command_declId_parenthesizer___closed__6 _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__19; +x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__19; x_2 = l_Lean_Parser_Command_declId_parenthesizer___closed__5; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -16322,7 +16322,7 @@ static lean_object* _init_l_Lean_Parser_Command_ctor_parenthesizer___closed__6() _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__19; +x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__19; x_2 = l_Lean_Parser_Command_ctor_parenthesizer___closed__5; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -16700,7 +16700,7 @@ static lean_object* _init_l_Lean_Parser_Command_structCtor_parenthesizer___close _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__19; +x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__19; x_2 = l_Lean_Parser_Command_structCtor_parenthesizer___closed__2; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -16793,7 +16793,7 @@ static lean_object* _init_l_Lean_Parser_Command_structExplicitBinder_parenthesiz _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__19; +x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__19; x_2 = lean_alloc_closure((void*)(l_Lean_Parser_many1_parenthesizer), 6, 1); lean_closure_set(x_2, 0, x_1); return x_2; @@ -17195,7 +17195,7 @@ static lean_object* _init_l_Lean_Parser_Command_structFields_parenthesizer___clo _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__7; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__7; x_2 = l_Lean_Parser_Command_structFields_parenthesizer___closed__8; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -17207,7 +17207,7 @@ static lean_object* _init_l_Lean_Parser_Command_structFields_parenthesizer___clo _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__24; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__24; x_2 = l_Lean_Parser_Command_structFields_parenthesizer___closed__9; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -17978,7 +17978,7 @@ static lean_object* _init_l_Lean_Parser_Command_section_formatter___closed__3() _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__11; +x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__11; x_2 = lean_alloc_closure((void*)(l_Lean_Parser_optional_formatter), 6, 1); lean_closure_set(x_2, 0, x_1); return x_2; @@ -18056,7 +18056,7 @@ static lean_object* _init_l_Lean_Parser_Command_section_parenthesizer___closed__ _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__19; +x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__19; x_2 = lean_alloc_closure((void*)(l_Lean_Parser_optional_parenthesizer), 6, 1); lean_closure_set(x_2, 0, x_1); return x_2; @@ -18356,7 +18356,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Command_namespace_formatter___closed__2; -x_2 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__11; +x_2 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__11; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); lean_closure_set(x_3, 1, x_2); @@ -18424,7 +18424,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_antiquotNestedExpr_parenthesizer___closed__3; -x_2 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__19; +x_2 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__19; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); lean_closure_set(x_3, 1, x_2); @@ -19791,7 +19791,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Command_universe_formatter___closed__2; -x_2 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__11; +x_2 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__11; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); lean_closure_set(x_3, 1, x_2); @@ -22552,8 +22552,8 @@ static lean_object* _init_l_Lean_Parser_Command_print_formatter___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__11; -x_2 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__5; +x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__11; +x_2 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__5; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_orelse_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); lean_closure_set(x_3, 1, x_2); @@ -22632,8 +22632,8 @@ static lean_object* _init_l_Lean_Parser_Command_print_parenthesizer___closed__2( _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__19; -x_2 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__9; +x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__19; +x_2 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__9; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); lean_closure_set(x_3, 1, x_2); @@ -22957,7 +22957,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Command_printAxioms_formatter___closed__2; -x_2 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__11; +x_2 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__11; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); lean_closure_set(x_3, 1, x_2); @@ -23036,8 +23036,8 @@ static lean_object* _init_l_Lean_Parser_Command_printAxioms_parenthesizer___clos _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__5; -x_2 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__19; +x_1 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__4; +x_2 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__19; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); lean_closure_set(x_3, 1, x_2); @@ -23338,7 +23338,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Command_resolve__name_formatter___closed__2; -x_2 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__11; +x_2 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__11; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); lean_closure_set(x_3, 1, x_2); @@ -24151,7 +24151,7 @@ static lean_object* _init_l_Lean_Parser_Command_set__option_formatter___closed__ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__11; +x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__11; x_2 = l_Lean_Parser_Command_set__option_formatter___closed__6; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -24231,7 +24231,7 @@ static lean_object* _init_l_Lean_Parser_Command_set__option_parenthesizer___clos _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__5; +x_1 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__4; x_2 = l_Lean_Parser_Term_attrArg_parenthesizer___closed__1; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -24243,7 +24243,7 @@ static lean_object* _init_l_Lean_Parser_Command_set__option_parenthesizer___clos _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__5; +x_1 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__4; x_2 = l_Lean_Parser_Command_set__option_parenthesizer___closed__2; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -24255,7 +24255,7 @@ static lean_object* _init_l_Lean_Parser_Command_set__option_parenthesizer___clos _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__19; +x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__19; x_2 = l_Lean_Parser_Command_set__option_parenthesizer___closed__3; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -25185,7 +25185,7 @@ static lean_object* _init_l_Lean_Parser_Command_export_formatter___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__11; +x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__11; x_2 = l_Lean_Parser_Command_export_formatter___closed__4; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -25289,7 +25289,7 @@ static lean_object* _init_l_Lean_Parser_Command_export_parenthesizer___closed__4 _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__19; +x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__19; x_2 = l_Lean_Parser_Command_export_parenthesizer___closed__3; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -26702,7 +26702,7 @@ static lean_object* _init_l_Lean_Parser_Command_openHiding_formatter___closed__3 _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__11; +x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__11; x_2 = l_Lean_Parser_Command_openHiding_formatter___closed__2; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -26788,7 +26788,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Command_openRenamingItem_formatter___closed__2; -x_2 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__11; +x_2 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__11; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); lean_closure_set(x_3, 1, x_2); @@ -26799,7 +26799,7 @@ static lean_object* _init_l_Lean_Parser_Command_openRenamingItem_formatter___clo _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__11; +x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__11; x_2 = l_Lean_Parser_Command_openRenamingItem_formatter___closed__3; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -26860,7 +26860,7 @@ static lean_object* _init_l_Lean_Parser_Command_openRenaming_formatter___closed_ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__11; +x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__11; x_2 = l_Lean_Parser_Command_openRenaming_formatter___closed__2; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -26958,7 +26958,7 @@ static lean_object* _init_l_Lean_Parser_Command_openOnly_formatter___closed__2() _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__11; +x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__11; x_2 = l_Lean_Parser_antiquotNestedExpr_formatter___closed__1; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -27216,7 +27216,7 @@ static lean_object* _init_l_Lean_Parser_Command_openHiding_parenthesizer___close _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__19; +x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__19; x_2 = l_Lean_Parser_antiquotNestedExpr_parenthesizer___closed__3; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -27288,7 +27288,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Term_depArrow_parenthesizer___closed__3; -x_2 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__19; +x_2 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__19; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); lean_closure_set(x_3, 1, x_2); @@ -27299,7 +27299,7 @@ static lean_object* _init_l_Lean_Parser_Command_openRenamingItem_parenthesizer__ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__19; +x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__19; x_2 = l_Lean_Parser_Command_openRenamingItem_parenthesizer___closed__2; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -28040,7 +28040,7 @@ static lean_object* _init_l_Lean_Parser_Command_mutual_formatter___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__22; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__22; x_2 = l_Lean_Parser_Command_mutual_formatter___closed__4; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -28072,7 +28072,7 @@ static lean_object* _init_l_Lean_Parser_Command_mutual_formatter___closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__22; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__22; x_2 = l_Lean_Parser_Command_mutual_formatter___closed__7; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -28196,7 +28196,7 @@ static lean_object* _init_l_Lean_Parser_Command_mutual_parenthesizer___closed__4 _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__24; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__24; x_2 = l_Lean_Parser_Command_mutual_parenthesizer___closed__3; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -28638,7 +28638,7 @@ static lean_object* _init_l_Lean_Parser_Command_initialize_formatter___closed__4 _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__11; +x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__11; x_2 = l_Lean_Parser_Command_initialize_formatter___closed__3; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -28762,7 +28762,7 @@ static lean_object* _init_l_Lean_Parser_Command_initialize_parenthesizer___close _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__19; +x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__19; x_2 = l_Lean_Parser_Command_initialize_parenthesizer___closed__2; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); diff --git a/stage0/stdlib/Lean/Parser/Do.c b/stage0/stdlib/Lean/Parser/Do.c index 5dbde5c53a..e6e00f1a9c 100644 --- a/stage0/stdlib/Lean/Parser/Do.c +++ b/stage0/stdlib/Lean/Parser/Do.c @@ -22,6 +22,7 @@ lean_object* l_Lean_Parser_Term_initFn____x40_Lean_Parser_Do___hyg_193____closed lean_object* l_Lean_Parser_Term_termReturn___closed__1; lean_object* l_Lean_Parser_Term_liftMethod_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_doSeqBracketed_formatter___closed__2; +extern lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__5; lean_object* l_Lean_Parser_Term_doIf_parenthesizer___closed__9; extern lean_object* l_Lean_Parser_Term_dbgTrace_parenthesizer___closed__4; lean_object* l_Lean_Parser_Term_doCatch___closed__1; @@ -33,6 +34,7 @@ lean_object* l_Lean_Parser_Term_doNested___elambda__1(lean_object*, lean_object* lean_object* l_Lean_Parser_Term_doSeqItem___elambda__1___closed__9; lean_object* l_Lean_Parser_Term_doSeqIndent___elambda__1___closed__1; lean_object* l_Lean_Parser_doElemParser(lean_object*); +extern lean_object* l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__5; lean_object* l_Lean_Parser_Term_doUnless_formatter___closed__2; lean_object* l_Lean_Parser_Term_doSeqBracketed___closed__1; lean_object* l_Lean_Parser_Term_doLet___closed__6; @@ -58,7 +60,6 @@ lean_object* l_Lean_Parser_Term_doDbgTrace___closed__1; lean_object* l_Lean_Parser_Term_doIf___elambda__1___closed__12; lean_object* l_Lean_Parser_ParserState_mkError(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_doIdDecl___closed__4; -extern lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__5; lean_object* l_Lean_Parser_Term_doExpr_parenthesizer___closed__1; extern lean_object* l_Lean_Syntax_isQuot_match__1___rarg___closed__1; lean_object* l_Lean_Parser_Term_doElem_quot___closed__7; @@ -66,7 +67,6 @@ lean_object* l_Lean_Parser_Term_doLet_formatter___closed__4; lean_object* l_Lean_Parser_Term_doElem_quot_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_doReturn___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_doIdDecl___elambda__1___closed__3; -extern lean_object* l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__7; lean_object* l_Lean_Parser_Term_doIdDecl_formatter___closed__2; lean_object* l_Lean_Parser_Term_doReassignArrow___closed__5; lean_object* l_Lean_Parser_Term_initFn____x40_Lean_Parser_Do___hyg_193_(lean_object*); @@ -147,7 +147,6 @@ lean_object* l_Lean_Parser_Term_doFinally___closed__3; lean_object* l_Lean_Parser_Term_doDbgTrace_formatter___closed__1; lean_object* l_Lean_Parser_Term_doMatchAlts; extern lean_object* l_Lean_Parser_Term_simpleBinder_parenthesizer___closed__2; -extern lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__9; lean_object* l_Lean_Parser_Term_doSeq___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_doTry___elambda__1___closed__8; lean_object* l_Lean_Parser_Term_initFn____x40_Lean_Parser_Do___hyg_193____closed__6; @@ -484,6 +483,7 @@ lean_object* l_Lean_Parser_Term_doLetRec___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_doSeq_formatter___closed__1; lean_object* l_Lean_Parser_Term_doIdDecl_parenthesizer___closed__2; lean_object* l_Lean_Parser_Term_doReassign_parenthesizer___closed__2; +extern lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__22; lean_object* l_Lean_Parser_Term_doIf___closed__8; lean_object* l_Lean_Parser_Term_doLetArrow_parenthesizer___closed__8; lean_object* l_Lean_Parser_Term_do___closed__1; @@ -499,7 +499,6 @@ lean_object* l_Lean_Parser_Term_doReturn_parenthesizer___closed__3; lean_object* l_Lean_Parser_Term_termReturn___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_doLet___elambda__1___closed__11; lean_object* l_Lean_Parser_Term_termUnless_formatter___closed__2; -extern lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__24; lean_object* l_Lean_Parser_Term_doIdDecl_parenthesizer___closed__6; lean_object* l___regBuiltin_Lean_Parser_Term_termTry_formatter(lean_object*); lean_object* l_Lean_Parser_Term_doSeqIndent_formatter___closed__2; @@ -511,7 +510,6 @@ extern lean_object* l_Lean_Parser_Term_structInst_formatter___closed__2; lean_object* l_Lean_Parser_Term_elseIf_formatter___closed__3; lean_object* l_Lean_Parser_Term_do___closed__2; lean_object* l_Lean_Parser_Term_doUnless___elambda__1___closed__3; -extern lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__10; uint8_t lean_nat_dec_eq(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_doFinally___closed__2; extern lean_object* l_Lean_Parser_Term_explicitBinder_formatter___closed__2; @@ -523,6 +521,7 @@ lean_object* l_Lean_Parser_Term_doContinue___closed__3; lean_object* l___regBuiltin_Lean_Parser_Term_doHave_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_doElem_quot_parenthesizer___closed__3; extern lean_object* l_Lean_Parser_Term_optType; +extern lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__6; lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Do___hyg_4_(lean_object*); lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Do___hyg_14_(lean_object*); lean_object* l_Lean_Parser_Term_doElem_quot_formatter___closed__5; @@ -564,7 +563,6 @@ lean_object* l_Lean_Parser_Term_termUnless_formatter___closed__1; lean_object* l_Lean_Parser_Term_doIdDecl_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_termReturn___elambda__1___closed__1; extern lean_object* l_Lean_Parser_Term_letDecl; -extern lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__6; lean_object* l___regBuiltin_Lean_Parser_Term_liftMethod_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Term_doDbgTrace___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_doIf_formatter___closed__9; @@ -576,6 +574,7 @@ lean_object* l_Lean_Parser_Term_doLet___elambda__1___closed__10; lean_object* l_Lean_Parser_Term_doBreak___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_doLetArrow_parenthesizer___closed__5; extern lean_object* l_Lean_Parser_Term_let___elambda__1___closed__3; +extern lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__10; lean_object* l_Lean_Parser_Term_doCatch___closed__7; lean_object* l_Lean_Parser_Term_doUnless___closed__8; lean_object* l_Lean_Parser_Term_doCatch_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -636,10 +635,10 @@ lean_object* l_Lean_Parser_Term_doUnless_formatter___closed__6; lean_object* l_Lean_Parser_Term_doFinally_formatter___closed__3; lean_object* l_Lean_Parser_Term_doMatch___closed__3; lean_object* l_Lean_PrettyPrinter_Formatter_toggleInsideQuot_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__24; lean_object* l_Lean_Parser_Term_doIdDecl_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_doHave_formatter___closed__1; lean_object* l_Lean_Parser_Term_letIdDeclNoBinders___elambda__1___closed__1; -extern lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__22; lean_object* l_Lean_Parser_Term_doSeqIndent___closed__4; lean_object* l_Lean_Parser_Term_termBeforeDo_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_doLetArrow___closed__6; @@ -914,6 +913,7 @@ lean_object* l_Lean_Parser_Term_liftMethod___elambda__1___closed__4; lean_object* l_Lean_Parser_Term_doUnless___elambda__1___closed__15; lean_object* l_Lean_Parser_Term_doHave___closed__2; lean_object* l_Lean_Parser_Term_doSeqItem___elambda__1___closed__2; +extern lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__7; extern lean_object* l_Lean_Parser_Term_letrec___closed__4; lean_object* l_Lean_Parser_many1_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Parser_Term_termReturn_parenthesizer___closed__1; @@ -940,7 +940,6 @@ lean_object* l_Lean_Parser_Term_doFor___elambda__1___closed__7; lean_object* l_Lean_Parser_Term_termBeforeDo; lean_object* l_Lean_Parser_Term_doLetRec___closed__4; lean_object* l_Lean_Parser_Term_doPatDecl_parenthesizer___closed__5; -extern lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__7; lean_object* l_Lean_Parser_Term_termUnless___closed__1; lean_object* l_Lean_Parser_Term_doPatDecl___elambda__1___closed__11; lean_object* l_Lean_Parser_Term_doUnless___elambda__1___closed__14; @@ -1147,7 +1146,6 @@ lean_object* l_Lean_Parser_Term_doSeqItem___elambda__1___closed__12; lean_object* l_Lean_Parser_Term_notFollowedByRedefinedTermToken___elambda__1___closed__36; lean_object* l_Lean_Parser_Term_doDbgTrace___closed__5; lean_object* l_Lean_Parser_Term_doElem_quot___elambda__1___closed__11; -extern lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__2; extern lean_object* l_Lean_Parser_Term_match_parenthesizer___closed__3; lean_object* l_Lean_Parser_Term_doElem_quot___closed__4; lean_object* l_Lean_Parser_Term_doHave___elambda__1___closed__2; @@ -1156,6 +1154,7 @@ lean_object* l_Lean_Parser_Term_doReturn_formatter___closed__7; lean_object* l_Lean_Parser_Term_doFor_formatter___closed__1; lean_object* l_Lean_Parser_Term_doNested_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_doSeqBracketed___elambda__1___closed__3; +extern lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__1; lean_object* l_Lean_Parser_Term_doReassignArrow___closed__2; extern lean_object* l_Lean_Parser_Term_dbgTrace___elambda__1___closed__5; lean_object* l_Lean_Parser_Term_doTry___elambda__1___closed__5; @@ -1168,7 +1167,6 @@ lean_object* l_Lean_Parser_Term_notFollowedByRedefinedTermToken; lean_object* l_Lean_Parser_Term_doUnless___elambda__1___closed__10; lean_object* l_Lean_Parser_Term_notFollowedByRedefinedTermToken___elambda__1___closed__35; lean_object* l_Lean_Parser_Term_doBreak_formatter___closed__1; -extern lean_object* l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__5; lean_object* l_Lean_Parser_Term_doIf_parenthesizer___closed__11; lean_object* l_Lean_Parser_Term_doSeqBracketed___elambda__1___closed__5; extern lean_object* l_Lean_Parser_Term_letPatDecl_formatter___closed__2; @@ -1190,13 +1188,13 @@ lean_object* l_Lean_Parser_Term_doTry___elambda__1___closed__14; lean_object* l_Lean_Parser_Term_doCatch_parenthesizer___closed__2; lean_object* l___regBuiltin_Lean_Parser_Term_doAssert_formatter___closed__1; lean_object* l_Lean_Parser_Term_doHave___closed__3; -extern lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__1; lean_object* l___regBuiltin_Lean_Parser_Term_do_formatter___closed__1; lean_object* l_Lean_Parser_Term_doTry___elambda__1___closed__6; lean_object* l_Lean_Parser_Term_doPatDecl_parenthesizer___closed__6; lean_object* l_Lean_Parser_Term_doElem_quot___closed__6; lean_object* l_Lean_Parser_Term_doPatDecl___elambda__1___closed__16; lean_object* l_Lean_Parser_Term_doContinue___elambda__1___closed__6; +extern lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__2; lean_object* l_Lean_Parser_Term_doTry; lean_object* l_Lean_Parser_Term_doLetArrow_parenthesizer___closed__7; lean_object* l_Lean_Parser_Term_do_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1232,6 +1230,7 @@ lean_object* l_Lean_Parser_Term_doLetArrow___closed__2; lean_object* l_Lean_Parser_Term_doUnless_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_doBreak_formatter___closed__2; lean_object* l_Lean_Parser_Term_doLetRec_formatter___closed__2; +extern lean_object* l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__7; lean_object* l_Lean_Parser_Term_doMatch_formatter___closed__7; lean_object* l_Lean_Parser_Term_doExpr___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_doReturn___elambda__1___closed__14; @@ -1256,7 +1255,6 @@ lean_object* l_Lean_Parser_Term_doSeqItem_parenthesizer___closed__2; lean_object* l_Lean_Parser_Term_elseIf___elambda__1___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_doIf_formatter___closed__7; lean_object* l_Lean_Parser_Term_doUnless___closed__5; -extern lean_object* l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__7; lean_object* l_Lean_Parser_Term_letIdDeclNoBinders_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_doFinally_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_doLet___elambda__1___closed__14; @@ -1295,6 +1293,7 @@ lean_object* l___regBuiltin_Lean_Parser_Term_doReassignArrow_parenthesizer___clo lean_object* l_Lean_PrettyPrinter_Parenthesizer_withPosition_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_doPatDecl_formatter___closed__10; lean_object* l___regBuiltin_Lean_Parser_Term_doNested_parenthesizer(lean_object*); +extern lean_object* l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__5; lean_object* l_Lean_Parser_Term_doLet_formatter___closed__6; lean_object* l_Lean_Parser_Term_notFollowedByRedefinedTermToken_parenthesizer___rarg(lean_object*); lean_object* l_Lean_Parser_Term_doLetArrow___elambda__1___closed__5; @@ -1336,6 +1335,7 @@ lean_object* l_Lean_Parser_Term_doNested_parenthesizer(lean_object*, lean_object lean_object* l_Lean_Parser_Term_doLetArrow___closed__4; lean_object* l_Lean_Parser_Term_doMatch___elambda__1___closed__7; lean_object* l_Lean_Parser_Term_doFinally___closed__1; +extern lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__9; lean_object* l_Lean_Parser_Term_doIf___elambda__1___closed__13; lean_object* l_Lean_Parser_Term_doHave; lean_object* l_Lean_Parser_Term_doIdDecl___closed__6; @@ -1371,7 +1371,6 @@ lean_object* l_Lean_Parser_Term_doPatDecl___closed__4; lean_object* l_Lean_Parser_Term_doLetArrow_formatter___closed__1; lean_object* l_Lean_Parser_Term_doContinue___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_termTry_formatter___closed__2; -extern lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__8; lean_object* l_Lean_Parser_Term_doIf___elambda__1___closed__23; lean_object* l_Lean_Parser_Term_doIf_parenthesizer___closed__6; lean_object* l_Lean_Parser_Term_matchAlts_formatter(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1399,6 +1398,7 @@ lean_object* l_Lean_Parser_Term_doCatch___elambda__1___closed__11; lean_object* l_Lean_Parser_Term_doLetRec___closed__1; lean_object* l_Lean_Parser_Term_liftMethod_parenthesizer___closed__2; lean_object* l_Lean_Parser_Term_termUnless_parenthesizer___closed__1; +extern lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__8; lean_object* l_Lean_Parser_Term_doIf___elambda__1___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_doDbgTrace___closed__3; lean_object* l_Lean_Parser_Term_termReturn_parenthesizer___closed__2; @@ -1428,6 +1428,7 @@ lean_object* l_Lean_Parser_Term_doMatch___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_doSeqBracketed___elambda__1___closed__4; lean_object* l_Lean_Parser_Term_notFollowedByRedefinedTermToken___elambda__1___closed__4; lean_object* l___regBuiltinParser_Lean_Parser_Term_doReassign(lean_object*); +extern lean_object* l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__7; lean_object* l_Lean_Parser_Term_doHave_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_doLetRec___elambda__1___closed__9; lean_object* l_Lean_Parser_Term_do___elambda__1(lean_object*, lean_object*); @@ -1465,7 +1466,6 @@ lean_object* l_Lean_Parser_Term_letIdDeclNoBinders_formatter___closed__3; lean_object* l_Lean_Parser_Term_doElem_quot___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_doDbgTrace___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_doCatch___elambda__1___closed__1; -extern lean_object* l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__5; lean_object* l_Lean_Parser_Term_notFollowedByRedefinedTermToken___elambda__1___closed__27; lean_object* l_Lean_Parser_unicodeSymbolFnAux(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_elseIf_formatter___closed__4; @@ -2136,7 +2136,7 @@ static lean_object* _init_l_Lean_Parser_Term_doSeqItem___elambda__1___closed__1( _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__8; +x_1 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__8; x_2 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; @@ -2146,7 +2146,7 @@ static lean_object* _init_l_Lean_Parser_Term_doSeqItem___elambda__1___closed__2( _start: { lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; -x_1 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__7; +x_1 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__7; x_2 = l_Lean_Parser_Term_doSeqItem___elambda__1___closed__1; x_3 = 1; x_4 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3); @@ -2244,7 +2244,7 @@ static lean_object* _init_l_Lean_Parser_Term_doSeqItem___elambda__1___closed__11 _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__8; +x_1 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__8; x_2 = l_Lean_Parser_Term_doSeqItem___elambda__1___closed__10; x_3 = lean_alloc_closure((void*)(l_Lean_Parser_nodeFn), 4, 2); lean_closure_set(x_3, 0, x_1); @@ -2315,7 +2315,7 @@ static lean_object* _init_l_Lean_Parser_Term_doSeqItem___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__8; +x_1 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__8; x_2 = l_Lean_Parser_Term_doSeqItem___closed__3; x_3 = l_Lean_Parser_nodeInfo(x_1, x_2); return x_3; @@ -2375,7 +2375,7 @@ static lean_object* _init_l_Lean_Parser_Term_doSeqIndent___elambda__1___closed__ _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__6; +x_1 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__6; x_2 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; @@ -2385,7 +2385,7 @@ static lean_object* _init_l_Lean_Parser_Term_doSeqIndent___elambda__1___closed__ _start: { lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; -x_1 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__5; +x_1 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__5; x_2 = l_Lean_Parser_Term_doSeqIndent___elambda__1___closed__1; x_3 = 1; x_4 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3); @@ -2451,7 +2451,7 @@ static lean_object* _init_l_Lean_Parser_Term_doSeqIndent___elambda__1___closed__ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__6; +x_1 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__6; x_2 = l_Lean_Parser_Term_doSeqIndent___elambda__1___closed__7; x_3 = lean_alloc_closure((void*)(l_Lean_Parser_nodeFn), 4, 2); lean_closure_set(x_3, 0, x_1); @@ -2491,7 +2491,7 @@ lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = l_Lean_Parser_Term_doSeqIndent___elambda__1___closed__6; x_2 = lean_ctor_get(x_1, 0); lean_inc(x_2); -x_3 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__6; +x_3 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__6; x_4 = l_Lean_Parser_nodeInfo(x_3, x_2); return x_4; } @@ -2804,7 +2804,7 @@ static lean_object* _init_l_Lean_Parser_Term_termBeforeDo___elambda__1___closed_ _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__1; +x_1 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__1; x_2 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; @@ -3061,7 +3061,7 @@ static lean_object* _init_l_Lean_Parser_Term_doSeqItem_formatter___closed__1() { _start: { lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__7; +x_1 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__7; x_2 = l_Lean_Parser_Term_doSeqItem___elambda__1___closed__1; x_3 = 1; x_4 = lean_box(x_3); @@ -3116,7 +3116,7 @@ static lean_object* _init_l_Lean_Parser_Term_doSeqItem_formatter___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__22; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__22; x_2 = l_Lean_Parser_Term_doSeqItem_formatter___closed__5; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -3128,7 +3128,7 @@ static lean_object* _init_l_Lean_Parser_Term_doSeqItem_formatter___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__8; +x_1 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__8; x_2 = lean_unsigned_to_nat(1024u); x_3 = l_Lean_Parser_Term_doSeqItem_formatter___closed__6; x_4 = lean_alloc_closure((void*)(l_Lean_Parser_leadingNode_formatter___boxed), 8, 3); @@ -3243,7 +3243,7 @@ static lean_object* _init_l_Lean_Parser_Term_doSeqIndent_formatter___closed__1() _start: { lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__5; +x_1 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__5; x_2 = l_Lean_Parser_Term_doSeqIndent___elambda__1___closed__1; x_3 = 1; x_4 = lean_box(x_3); @@ -3268,7 +3268,7 @@ static lean_object* _init_l_Lean_Parser_Term_doSeqIndent_formatter___closed__3() _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__6; +x_1 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__6; x_2 = lean_unsigned_to_nat(1024u); x_3 = l_Lean_Parser_Term_doSeqIndent_formatter___closed__2; x_4 = lean_alloc_closure((void*)(l_Lean_Parser_leadingNode_formatter___boxed), 8, 3); @@ -3362,7 +3362,7 @@ static lean_object* _init_l_Lean_Parser_Term_doSeqItem_parenthesizer___closed__4 _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__24; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__24; x_2 = l_Lean_Parser_Term_doSeqItem_parenthesizer___closed__3; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -3374,7 +3374,7 @@ static lean_object* _init_l_Lean_Parser_Term_doSeqItem_parenthesizer___closed__5 _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__8; +x_1 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__8; x_2 = lean_unsigned_to_nat(1024u); x_3 = l_Lean_Parser_Term_doSeqItem_parenthesizer___closed__4; x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer___boxed), 8, 3); @@ -3510,7 +3510,7 @@ static lean_object* _init_l_Lean_Parser_Term_doSeqIndent_parenthesizer___closed_ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__6; +x_1 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__6; x_2 = lean_unsigned_to_nat(1024u); x_3 = l_Lean_Parser_Term_doSeqIndent_parenthesizer___closed__2; x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer___boxed), 8, 3); @@ -4088,7 +4088,7 @@ static lean_object* _init_l_Lean_Parser_Term_notFollowedByRedefinedTermToken___e _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__1; +x_1 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__1; x_2 = l_String_trim(x_1); return x_2; } @@ -6269,7 +6269,7 @@ static lean_object* _init_l_Lean_Parser_Term_doPatDecl_formatter___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__5; +x_1 = l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__5; x_2 = l_Lean_Parser_Term_doPatDecl_formatter___closed__5; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -6589,7 +6589,7 @@ static lean_object* _init_l_Lean_Parser_Term_doPatDecl_parenthesizer___closed__5 _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__5; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__5; x_2 = l_Lean_Parser_Term_doPatDecl_parenthesizer___closed__4; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -10139,7 +10139,7 @@ static lean_object* _init_l_Lean_Parser_Term_doIf_formatter___closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__7; +x_1 = l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__7; x_2 = l_Lean_Parser_Term_doIf_formatter___closed__9; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -10173,7 +10173,7 @@ static lean_object* _init_l_Lean_Parser_Term_doIf_formatter___closed__13() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__7; +x_1 = l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__7; x_2 = l_Lean_Parser_Term_doIf_formatter___closed__12; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -10451,7 +10451,7 @@ static lean_object* _init_l_Lean_Parser_Term_doIf_parenthesizer___closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__7; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__7; x_2 = l_Lean_Parser_Term_doIf_parenthesizer___closed__7; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -10473,7 +10473,7 @@ static lean_object* _init_l_Lean_Parser_Term_doIf_parenthesizer___closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__7; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__7; x_2 = l_Lean_Parser_Term_doIf_parenthesizer___closed__2; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -15616,7 +15616,7 @@ static lean_object* _init_l_Lean_Parser_Term_doExpr___elambda__1___closed__1() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__10; +x_1 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__10; x_2 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; @@ -15626,7 +15626,7 @@ static lean_object* _init_l_Lean_Parser_Term_doExpr___elambda__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; -x_1 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__9; +x_1 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__9; x_2 = l_Lean_Parser_Term_doExpr___elambda__1___closed__1; x_3 = 1; x_4 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3); @@ -15649,7 +15649,7 @@ static lean_object* _init_l_Lean_Parser_Term_doExpr___elambda__1___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__10; +x_1 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__10; x_2 = l_Lean_Parser_Term_doExpr___elambda__1___closed__3; x_3 = lean_alloc_closure((void*)(l_Lean_Parser_nodeFn), 4, 2); lean_closure_set(x_3, 0, x_1); @@ -15700,7 +15700,7 @@ static lean_object* _init_l_Lean_Parser_Term_doExpr___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__10; +x_1 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__10; x_2 = l_Lean_Parser_Term_doExpr___closed__1; x_3 = l_Lean_Parser_nodeInfo(x_1, x_2); return x_3; @@ -15761,7 +15761,7 @@ _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Do___hyg_4____closed__4; -x_3 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__10; +x_3 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__10; x_4 = 1; x_5 = l_Lean_Parser_Term_doExpr; x_6 = lean_unsigned_to_nat(0u); @@ -15773,7 +15773,7 @@ static lean_object* _init_l_Lean_Parser_Term_doExpr_formatter___closed__1() { _start: { lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__9; +x_1 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__9; x_2 = l_Lean_Parser_Term_doExpr___elambda__1___closed__1; x_3 = 1; x_4 = lean_box(x_3); @@ -15800,7 +15800,7 @@ static lean_object* _init_l_Lean_Parser_Term_doExpr_formatter___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__10; +x_1 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__10; x_2 = lean_unsigned_to_nat(1024u); x_3 = l_Lean_Parser_Term_doExpr_formatter___closed__2; x_4 = lean_alloc_closure((void*)(l_Lean_Parser_leadingNode_formatter___boxed), 8, 3); @@ -15833,7 +15833,7 @@ _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_2 = l_Lean_PrettyPrinter_formatterAttribute; -x_3 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__10; +x_3 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__10; x_4 = l___regBuiltin_Lean_Parser_Term_doExpr_formatter___closed__1; x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; @@ -15868,7 +15868,7 @@ static lean_object* _init_l_Lean_Parser_Term_doExpr_parenthesizer___closed__3() _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__10; +x_1 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__10; x_2 = lean_unsigned_to_nat(1024u); x_3 = l_Lean_Parser_Term_doExpr_parenthesizer___closed__2; x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer___boxed), 8, 3); @@ -15901,7 +15901,7 @@ _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; -x_3 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__10; +x_3 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__10; x_4 = l___regBuiltin_Lean_Parser_Term_doExpr_parenthesizer___closed__1; x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; @@ -16174,7 +16174,7 @@ static lean_object* _init_l_Lean_Parser_Term_do___elambda__1___closed__1() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__2; +x_1 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__2; x_2 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; @@ -16184,7 +16184,7 @@ static lean_object* _init_l_Lean_Parser_Term_do___elambda__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; -x_1 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__1; +x_1 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__1; x_2 = l_Lean_Parser_Term_do___elambda__1___closed__1; x_3 = 1; x_4 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3); @@ -16195,7 +16195,7 @@ static lean_object* _init_l_Lean_Parser_Term_do___elambda__1___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__2; +x_1 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__2; x_2 = l_Lean_Parser_Term_doUnless___elambda__1___closed__9; x_3 = lean_alloc_closure((void*)(l_Lean_Parser_nodeFn), 4, 2); lean_closure_set(x_3, 0, x_1); @@ -16232,7 +16232,7 @@ static lean_object* _init_l_Lean_Parser_Term_do___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__2; +x_1 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__2; x_2 = l_Lean_Parser_Term_doUnless___closed__2; x_3 = l_Lean_Parser_nodeInfo(x_1, x_2); return x_3; @@ -16293,7 +16293,7 @@ _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; x_2 = l_term___u2218_____closed__6; -x_3 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__2; +x_3 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__2; x_4 = 1; x_5 = l_Lean_Parser_Term_do; x_6 = lean_unsigned_to_nat(0u); @@ -16305,7 +16305,7 @@ static lean_object* _init_l_Lean_Parser_Term_do_formatter___closed__1() { _start: { lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__1; +x_1 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__1; x_2 = l_Lean_Parser_Term_do___elambda__1___closed__1; x_3 = 1; x_4 = lean_box(x_3); @@ -16320,7 +16320,7 @@ static lean_object* _init_l_Lean_Parser_Term_do_formatter___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__2; +x_1 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__2; x_2 = l_Lean_Parser_maxPrec; x_3 = l_Lean_Parser_Term_doUnless_formatter___closed__5; x_4 = lean_alloc_closure((void*)(l_Lean_Parser_leadingNode_formatter___boxed), 8, 3); @@ -16353,7 +16353,7 @@ _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_2 = l_Lean_PrettyPrinter_formatterAttribute; -x_3 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__2; +x_3 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__2; x_4 = l___regBuiltin_Lean_Parser_Term_do_formatter___closed__1; x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; @@ -16376,7 +16376,7 @@ static lean_object* _init_l_Lean_Parser_Term_do_parenthesizer___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__2; +x_1 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__2; x_2 = l_Lean_Parser_maxPrec; x_3 = l_Lean_Parser_Term_doIf_parenthesizer___closed__2; x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer___boxed), 8, 3); @@ -16409,7 +16409,7 @@ _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_2 = l_Lean_PrettyPrinter_parenthesizerAttribute; -x_3 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__2; +x_3 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__2; x_4 = l___regBuiltin_Lean_Parser_Term_do_parenthesizer___closed__1; x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; diff --git a/stage0/stdlib/Lean/Parser/Extension.c b/stage0/stdlib/Lean/Parser/Extension.c index 98ff3c752f..1049dd497f 100644 --- a/stage0/stdlib/Lean/Parser/Extension.c +++ b/stage0/stdlib/Lean/Parser/Extension.c @@ -29,6 +29,7 @@ lean_object* l___private_Lean_Parser_Extension_0__Lean_Parser_BuiltinParserAttri lean_object* l_Lean_Parser_declareLeadingBuiltinParser___closed__1; extern lean_object* l_Lean_Syntax_strLitToAtom___closed__3; lean_object* l_Std_PersistentHashMap_containsAtAux___at_Lean_Parser_isValidSyntaxNodeKind___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_Syntax_mkAntiquotNode___closed__3; lean_object* l_Lean_Parser_parserExtension___lambda__1(lean_object*); lean_object* l_Lean_stringToMessageData(lean_object*); lean_object* l_Lean_Parser_andthenInfo(lean_object*, lean_object*); @@ -434,7 +435,6 @@ lean_object* l_Lean_registerScopedEnvExtensionUnsafe___rarg(lean_object*, lean_o lean_object* lean_panic_fn(lean_object*, lean_object*); lean_object* l_Lean_Parser_runParserCategory(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_addLeadingParser(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_Std_PersistentHashMap_mkCollisionNode___rarg___closed__1; lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_2560____closed__5; lean_object* l_Lean_Parser_ParserExtension_addEntryImpl___closed__3; lean_object* l_Std_RBNode_find___at_Lean_Parser_notFollowedByCategoryTokenFn___spec__1___boxed(lean_object*, lean_object*); @@ -10474,7 +10474,7 @@ x_12 = l_Lean_Name_toExprAux(x_4); lean_inc(x_4); x_13 = l_Lean_mkConst(x_4, x_9); x_14 = l_Lean_mkNatLit(x_5); -x_15 = l_Std_PersistentHashMap_mkCollisionNode___rarg___closed__1; +x_15 = l_Lean_Syntax_mkAntiquotNode___closed__3; x_16 = lean_array_push(x_15, x_11); x_17 = lean_array_push(x_16, x_12); x_18 = lean_array_push(x_17, x_13); diff --git a/stage0/stdlib/Lean/Parser/Extra.c b/stage0/stdlib/Lean/Parser/Extra.c index c7658974cc..acbfc69f30 100644 --- a/stage0/stdlib/Lean/Parser/Extra.c +++ b/stage0/stdlib/Lean/Parser/Extra.c @@ -13,285 +13,278 @@ #ifdef __cplusplus extern "C" { #endif +lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__23; extern lean_object* l_stx___x3c_x7c_x3e_____closed__4; lean_object* l_Lean_PrettyPrinter_Formatter_rawIdentNoAntiquot_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_mkAntiquot_formatter___closed__2; lean_object* l_Lean_PrettyPrinter_Parenthesizer_withoutInfo_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_many___closed__3; +lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__5; +lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__6; lean_object* l_Lean_PrettyPrinter_Formatter_indent___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_termIf_____x3a__Then__Else_____closed__5; lean_object* l_Lean_Parser_many1Indent_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_charLit___closed__1; -lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__13; lean_object* l_Lean_PrettyPrinter_Formatter_visitArgs(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__15; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__13; +lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__13; extern lean_object* l_Lean_scientificLitKind___closed__1; lean_object* l_Lean_PrettyPrinter_Parenthesizer_categoryParser_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_andthenInfo(lean_object*, lean_object*); -lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__5; -lean_object* l_Lean_PrettyPrinter_Parenthesizer_optionalNoAntiquot_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Formatter_numLitNoAntiquot_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_strLitNoAntiquot___closed__2; lean_object* l_Lean_Parser_ppHardSpace_parenthesizer___rarg(lean_object*); lean_object* l_Lean_Parser_optional___closed__1; -lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__16; -extern lean_object* l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__7; lean_object* l_Lean_Parser_mkAntiquot_formatter___closed__5; lean_object* l_Lean_Parser_mkAntiquot_parenthesizer(lean_object*); -lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__3; lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__4; lean_object* l_Lean_Parser_ppSpace_parenthesizer___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Formatter_identNoAntiquot_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_ppHardSpace_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_rawIdentNoAntiquot_parenthesizer___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_PrettyPrinter_Parenthesizer_withAntiquot_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_Syntax_mkAntiquotNode___closed__12; lean_object* l_Lean_PrettyPrinter_Formatter_nonReservedSymbol_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__15; extern lean_object* l_Lean_nullKind; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__42; -lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__29; extern lean_object* l_term_x5b___x5d___closed__9; lean_object* l_Lean_Parser_notFollowedByFn___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__37; +lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__3; lean_object* l_Lean_PrettyPrinter_Formatter_sepByNoAntiquot_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_many(lean_object*); +lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__22; extern lean_object* l_Lean_identKind___closed__1; lean_object* lean_name_mk_string(lean_object*, lean_object*); +lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__10; lean_object* l_Lean_Parser_antiquotExpr_formatter___closed__2; lean_object* l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_ppSpace_parenthesizer___rarg(lean_object*); +lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__27; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__15; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__30; lean_object* l_Lean_PrettyPrinter_Parenthesizer_identNoAntiquot_parenthesizer___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_PrettyPrinter_mkFormatterAttribute___closed__8; lean_object* l_Lean_Parser_sepBy1_parenthesizer(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_mkAntiquot_formatter___closed__3; lean_object* l_Lean_Parser_sepBy_formatter___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__21; lean_object* l_Lean_Parser_ppGroup___boxed(lean_object*); -lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__33; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__18; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__14; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__28; lean_object* l_Lean_Parser_charLit; +lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__20; lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__19; lean_object* l_Lean_Parser_numLit___elambda__1___closed__1; -lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__27; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__44; lean_object* l_Lean_PrettyPrinter_Formatter_indent(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__9; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__5; lean_object* l_Lean_Parser_ident_formatter___closed__1; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__25; lean_object* l_Lean_Parser_sepBy_parenthesizer___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Formatter_atomic_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_nameLitNoAntiquot___closed__2; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__41; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__34; -lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__22; lean_object* l_Lean_Parser_group_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_identKind___closed__2; lean_object* l_Lean_PrettyPrinter_Formatter_manyNoAntiquot_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__1; lean_object* l_Lean_Parser_nameLit_formatter___closed__3; extern lean_object* l_term___u2218_____closed__6; extern lean_object* l_myMacro____x40_Init_Notation___hyg_49____closed__3; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__29; +lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__33; lean_object* l_Lean_Parser_ident_formatter___closed__2; -lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__15; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__46; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__3; +lean_object* l_Lean_Parser_many___closed__2; lean_object* l_Lean_Parser_scientificLit; lean_object* l_Lean_ppSpace_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Array_empty___closed__1; lean_object* l_Lean_Parser_termRegisterParserAlias_x21_________closed__2; -extern lean_object* l_Lean_Parser_mkAntiquot___closed__17; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__44; -lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__24; lean_object* l_Lean_PrettyPrinter_Formatter_orelse_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__1; lean_object* l_Lean_Parser_group(lean_object*); +lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__12; lean_object* l_Lean_Parser_ident; -lean_object* l_Lean_Parser_withAntiquotFn(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_withAntiquotScopeAndSuffix(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__41; extern lean_object* l_myMacro____x40_Init_Notation___hyg_49____closed__12; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__13; lean_object* l_Lean_Parser_ParserState_mkNode(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__25; extern lean_object* l_Lean_Parser_nameLitNoAntiquot___closed__1; lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__14; +lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__34; lean_object* l_Lean_Parser_mkAntiquotScope_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__3; lean_object* l_Lean_Parser_antiquotNestedExpr_parenthesizer___closed__1; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__42; lean_object* l_Lean_Parser_termRegisterParserAlias_x21_________closed__1; extern lean_object* l_myMacro____x40_Init_Notation___hyg_267____closed__4; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__37; extern lean_object* l_Lean_PrettyPrinter_mkParenthesizerAttribute___closed__7; lean_object* l_Lean_PrettyPrinter_Formatter_pushLine(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkIdentFrom(lean_object*, lean_object*); lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__15; lean_object* l_Lean_Parser_scientificLit___elambda__1(lean_object*, lean_object*); -lean_object* l_Lean_PrettyPrinter_Formatter_optionalNoAntiquot_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__9; lean_object* l_Lean_Parser_strLit_formatter___closed__1; +lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__29; lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__18; lean_object* l_Lean_Parser_mkAntiquot_formatter___closed__8; lean_object* l_Lean_PrettyPrinter_Parenthesizer_nameLitNoAntiquot_parenthesizer___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__3; +lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__2; lean_object* lean_array_push(lean_object*, lean_object*); lean_object* l_Lean_Parser_optional_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__34; lean_object* lean_array_get_size(lean_object*); +lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__25; lean_object* l_Lean_Parser_ppIndent_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_charLitKind___closed__1; -lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__25; lean_object* lean_string_append(lean_object*, lean_object*); lean_object* l_Lean_Parser_mkAntiquot_formatter___closed__9; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__28; lean_object* l_Lean_Parser_strLit_formatter___closed__2; lean_object* l_Lean_PrettyPrinter_Parenthesizer_toggleInsideQuot_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_charLit___elambda__1___closed__1; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__30; -lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__13; -lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__18; lean_object* l_Lean_Parser_numLit___closed__3; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__18; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__15; +lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__30; lean_object* l_Lean_Parser_mkAntiquot_formatter___closed__1; +lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__18; lean_object* l_Lean_Parser_sepBy1_formatter(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_numLitNoAntiquot_parenthesizer___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_antiquotNestedExpr_formatter___closed__5; lean_object* l_Lean_Parser_antiquotNestedExpr_parenthesizer___closed__5; +lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__14; lean_object* l_Lean_Parser_antiquotNestedExpr_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__7; +lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__28; lean_object* l_Lean_Parser_group_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_scientificLitNoAntiquot_parenthesizer___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__30; lean_object* l_Lean_Parser_antiquotNestedExpr_parenthesizer___closed__3; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__29; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__46; lean_object* lean_string_utf8_byte_size(lean_object*); -lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__12; lean_object* l_Lean_Parser_mkAntiquot_formatter___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_leadingNode_formatter___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_nodeWithAntiquot_parenthesizer___boxed(lean_object*); lean_object* l_Lean_Parser_mkAntiquot_formatter___closed__4; -lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__14; lean_object* l_Lean_Parser_many_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_nameLitFn(lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_ppLine; -lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__28; extern lean_object* l_term___x24_______closed__5; extern lean_object* l_Lean_nameLitKind; lean_object* l_Lean_Parser_strLit___closed__1; lean_object* l_Lean_Parser_rawIdent_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__14; lean_object* l_Lean_Parser_strLit_formatter___closed__3; lean_object* l_Lean_Parser_leadingNode_formatter___closed__1; lean_object* l_Lean_Parser_optional_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__14; lean_object* l_Lean_Parser_antiquotNestedExpr_formatter___closed__3; +lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__5; lean_object* l_Lean_PrettyPrinter_Parenthesizer_sepByNoAntiquot_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__5; -lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__18; +lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__1; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__25; lean_object* l_Lean_Parser_ident___closed__1; -lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__5; lean_object* l_Lean_PrettyPrinter_Parenthesizer_atomic_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_myMacro____x40_Init_Notation___hyg_49____closed__15; -lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__20; +lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__3; lean_object* l_Lean_Parser_rawIdent___closed__3; -lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__18; lean_object* l_Lean_Parser_optional(lean_object*); lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__6; -lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__14; +lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__7; +lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__18; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__33; lean_object* l_Lean_Parser_numLit___closed__1; lean_object* l_Lean_Parser_rawIdentFn(lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Tactic_letrec___closed__4; lean_object* l_Lean_Parser_registerAliasCore___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_strLit___elambda__1(lean_object*, lean_object*); -lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__2; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__43; -lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__14; -lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__5; +lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__4; +lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__20; lean_object* l_Lean_ppIndent_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_setExpected_parenthesizer___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_termParser_formatter___boxed(lean_object*); +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__6; lean_object* l_Lean_Parser_numLit___closed__2; -lean_object* l_Lean_PrettyPrinter_Formatter_withAntiquot_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__22; lean_object* l_Lean_Parser_antiquotNestedExpr_parenthesizer___closed__2; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__20; extern lean_object* l_Lean_Parser_identNoAntiquot___closed__1; lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__21; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__24; lean_object* l_Lean_Parser_ppSpace_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__32; -lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__10; lean_object* l_Lean_Parser_ident___closed__2; extern lean_object* l___private_Lean_Data_Format_0__Lean_Format_pushNewline___closed__1; lean_object* l_Lean_Parser_sepByElemParser_formatter___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__49; lean_object* l_Lean_Parser_ppHardSpace_parenthesizer___boxed(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_PrettyPrinter_Formatter_categoryParser_formatter___lambda__2___closed__4; lean_object* l_Lean_Parser_termRegisterParserAlias_x21_________closed__7; extern lean_object* l_Lean_PrettyPrinter_mkFormatterAttribute___closed__4; -lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__1; lean_object* l_Lean_Parser_charLit_formatter___closed__2; +lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__6; lean_object* l_Lean_PrettyPrinter_Formatter_setExpected_formatter___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Formatter_strLitNoAntiquot_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_strLit_parenthesizer___closed__2; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__16; -lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__17; extern lean_object* l_Lean_Parser_rawIdentNoAntiquot___closed__1; -lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__23; lean_object* l_Lean_Parser_nodeInfo(lean_object*, lean_object*); lean_object* l_Lean_Parser_symbolFn___boxed(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_numLitKind; lean_object* l_Lean_Parser_strLit_parenthesizer___closed__1; -lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__21; +lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__24; lean_object* l_Lean_Parser_charLit_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__8; extern lean_object* l_Lean_Parser_numLitNoAntiquot___closed__1; -lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__10; lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__13; extern lean_object* l_myMacro____x40_Init_Notation___hyg_49____closed__13; lean_object* l_Lean_Parser_scientificLit_formatter___closed__3; lean_object* l_Lean_Parser_noFirstTokenInfo(lean_object*); lean_object* l_Lean_Parser_scientificLit_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__6; +lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__17; extern lean_object* l_Lean_strLitKind; lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__22; lean_object* l_Lean_Parser_strLit_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_mkAntiquotScope_parenthesizer___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__8; lean_object* l_Lean_PrettyPrinter_Formatter_checkPrec_formatter___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__10; lean_object* l_Lean_PrettyPrinter_Parenthesizer_visitArgs(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__32; lean_object* l_Lean_Parser_nodeWithAntiquot_formatter(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__16; extern lean_object* l_Lean_Parser_skip___closed__1; extern lean_object* l_Lean_Parser_numLitNoAntiquot___closed__2; lean_object* l_Lean_Parser_manyIndent_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_numLit_formatter___closed__1; lean_object* l_Lean_Parser_notSymbol_formatter___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_stx___x3f___closed__3; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__33; -lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__20; -lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__6; -lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__16; +lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__9; lean_object* l_Lean_Parser_ppHardSpace_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_nameLit___closed__3; lean_object* l_Lean_Parser_many___closed__1; lean_object* l_Lean_Parser_numLitFn(lean_object*, lean_object*); +lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__16; uint8_t l_Lean_Parser_tryAnti(lean_object*, lean_object*); lean_object* l_Lean_Parser_many1_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_numLitKind___closed__1; lean_object* l_Lean_Parser_optionaInfo(lean_object*); lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__20; +lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__15; +lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__24; extern lean_object* l_Lean_strLitKind___closed__1; lean_object* l_Lean_PrettyPrinter_Formatter_toggleInsideQuot_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__22; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__24; lean_object* l_Lean_PrettyPrinter_Parenthesizer_manyNoAntiquot_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_nameLit; lean_object* l_Lean_PrettyPrinter_Formatter_node_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__6; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__49; +lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__15; +lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__14; lean_object* l_Lean_Parser_charLitFn(lean_object*, lean_object*); -lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__13; -lean_object* l_Lean_Parser_mkAntiquotScope(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_sepByElemParser___closed__1; extern lean_object* l_Lean_Parser_charLitNoAntiquot___closed__2; lean_object* l_Lean_Parser_mkAntiquot_formatter___closed__6; lean_object* l_Lean_Parser_strLitFn(lean_object*, lean_object*); +lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__16; lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__16; lean_object* l_Lean_Parser_charLit___closed__3; lean_object* l_Lean_PrettyPrinter_Parenthesizer_charLitNoAntiquot_parenthesizer___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__6; lean_object* l_Lean_Parser_many1___elambda__1(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_manyIndent(lean_object*); lean_object* l_Lean_Parser_nameLit___closed__1; lean_object* l_Lean_Parser_antiquotNestedExpr_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__6; lean_object* l_Lean_Parser_ppSpace; lean_object* l_Lean_Parser_ppHardSpace; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__43; lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___rarg(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_parserAliasesRef; lean_object* l_Lean_Parser_mkAntiquotScope_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -304,10 +297,7 @@ extern lean_object* l_Lean_instInhabitedSourceInfo___closed__1; lean_object* l_Lean_Parser_scientificLit_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_commandParser_formatter___boxed(lean_object*); lean_object* l_Lean_Syntax_getId(lean_object*); -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__20; -lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__23; lean_object* l_Lean_Parser_termRegisterParserAlias_x21_________closed__3; -lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__4; extern lean_object* l_Lean_charLitKind; extern lean_object* l_Lean_Parser_maxPrec; lean_object* l_Lean_Parser_strLit_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -320,50 +310,47 @@ lean_object* l_Lean_PrettyPrinter_Formatter_symbol_formatter(lean_object*, lean_ lean_object* l_Lean_Parser_many1Indent_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_scientificLitFn(lean_object*, lean_object*); lean_object* l_Lean_Parser_nodeWithAntiquot_formatter___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__15; -lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__3; lean_object* l_Lean_Parser_charLit___closed__2; lean_object* l_Lean_PrettyPrinter_Formatter_scientificLitNoAntiquot_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_ppLine_parenthesizer___rarg(lean_object*); -lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__8; -lean_object* l_Lean_Parser_mkAntiquot_formatter___closed__10; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__36; +lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__18; lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__7; extern lean_object* l_Lean_Parser_charLitNoAntiquot___closed__1; lean_object* l_Lean_Parser_antiquotExpr_parenthesizer___closed__1; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__26; -lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__24; +lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__5; lean_object* l_Lean_Parser_termRegisterParserAlias_x21_________closed__6; lean_object* l_Lean_PrettyPrinter_Parenthesizer_pushNone_parenthesizer___boxed(lean_object*); -lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__1; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__11; lean_object* l_Lean_Parser_numLit_formatter___closed__3; lean_object* l_Lean_PrettyPrinter_Parenthesizer_symbol_parenthesizer___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_myMacro____x40_Init_Notation___hyg_1625____closed__2; +lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__4; lean_object* l_Lean_Parser_scientificLit___closed__3; -lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__17; +lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__19; lean_object* l_Lean_Parser_numLit_parenthesizer___closed__2; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__7; lean_object* l_Lean_Parser_ppIndent___boxed(lean_object*); lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__3; extern lean_object* l_Lean_PrettyPrinter_mkFormatterAttribute___closed__6; lean_object* l_Lean_Parser_antiquotNestedExpr_formatter___closed__1; -lean_object* l_Lean_Parser_mkAntiquot_formatter___closed__11; lean_object* l_Lean_Parser_sepBy1_parenthesizer___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_commandParser_formatter(lean_object*); lean_object* l_Lean_Parser_rawIdent_parenthesizer___closed__1; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__35; +lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__31; lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__5; lean_object* l_Lean_Parser_strLit___closed__3; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__10; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__32; lean_object* l_Lean_Parser_manyAux(lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_Syntax_mkAntiquotNode___closed__9; -lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__26; lean_object* l_Lean_Parser_numLit_parenthesizer___closed__1; lean_object* l_Lean_addMacroScope(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Formatter_nameLitNoAntiquot_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_rawIdent___closed__2; lean_object* l_Lean_Parser_antiquotNestedExpr_formatter___closed__6; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__12; extern lean_object* l_Lean_Parser_scientificLitNoAntiquot___closed__2; lean_object* l_Lean_Parser_mkAntiquot_formatter(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__2; +lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__7; lean_object* l_Lean_ppHardSpace_formatter___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_many1_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_nameLit___elambda__1___closed__1; @@ -372,80 +359,80 @@ lean_object* l_Lean_Parser_notSymbol(lean_object*); lean_object* l_Lean_Parser_sepByElemParser_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_nullKind___closed__2; lean_object* l_Lean_Parser_antiquotNestedExpr_formatter___closed__2; -lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__31; lean_object* l_Lean_Parser_termParser_formatter(lean_object*); -lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__24; extern lean_object* l_Lean_Parser_scientificLitNoAntiquot___closed__1; lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___boxed(lean_object*); -lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__7; lean_object* l_Lean_Parser_ppLine_parenthesizer___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__22; lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__10; lean_object* l_Lean_Parser_nodeWithAntiquot_parenthesizer___rarg(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_ident___elambda__1___closed__1; lean_object* l_Lean_Parser_checkColGeFn(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_ppGroup_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_identKind; +lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__26; +lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__26; lean_object* l_Lean_PrettyPrinter_Parenthesizer_nonReservedSymbol_parenthesizer___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_commandParser_formatter___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_ident___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_charLit___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_nameLit_parenthesizer___closed__1; -lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__16; -lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277_(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268_(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_numLit; +lean_object* l_Lean_Parser_many___closed__4; lean_object* l_Lean_Parser_charLit_formatter___closed__1; -extern lean_object* l_Lean_Parser_mkAntiquot___closed__16; lean_object* l_Lean_Parser_numLit___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_ppDedent___boxed(lean_object*); lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__11; lean_object* l_Lean_PrettyPrinter_Formatter_push(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646_(lean_object*); -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__32; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__10; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637_(lean_object*); extern lean_object* l_Lean_PrettyPrinter_Formatter_formatterAliasesRef; extern lean_object* l_Lean_scientificLitKind; lean_object* l_Lean_Parser_scientificLit___elambda__1___closed__1; extern lean_object* l_myMacro____x40_Init_Notation___hyg_158____closed__4; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__7; -lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__9; -lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__19; +lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__11; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__12; lean_object* l_Lean_Parser_withPosition___lambda__1(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_3736____closed__4; lean_object* l_Lean_Parser_ppGroup_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_commandParser_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_scientificLit_parenthesizer___closed__2; +lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__10; lean_object* l_Lean_Name_append(lean_object*, lean_object*); +lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__7; extern lean_object* l_Lean_PrettyPrinter_mkParenthesizerAttribute___closed__4; lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__12; lean_object* l_Lean_Parser_mkAntiquot_formatter___closed__7; +lean_object* l_Lean_Parser_withAntiquotScopeAndSuffix_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__12; lean_object* l_Lean_Parser_nameLit_parenthesizer___closed__2; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__35; lean_object* l_Lean_Parser_many___elambda__1(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__11; lean_object* l_Lean_Parser_charLit_parenthesizer___closed__1; lean_object* l_Lean_Parser_symbolInfo(lean_object*); lean_object* l_Lean_Parser_charLit_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_charLit_parenthesizer___closed__2; extern lean_object* l_myMacro____x40_Init_Notation___hyg_49____closed__4; -lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__25; lean_object* l_Lean_Parser_charLit_formatter___closed__3; lean_object* l_Lean_Parser_orelseFnCore(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); extern lean_object* l_Int_instInhabitedInt___closed__1; lean_object* l_Lean_Parser_notSymbol_parenthesizer___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Syntax_mkAntiquotNode___closed__2; lean_object* l_Lean_Format_getIndent(lean_object*); -extern lean_object* l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__3; lean_object* l_Lean_ppLine_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__36; lean_object* l_Lean_Parser_optional___closed__2; lean_object* l_Lean_Parser_many1Indent(lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_checkNoImmediateColon_parenthesizer___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__11; extern lean_object* l_myMacro____x40_Init_Notation___hyg_1625____closed__4; lean_object* l_Lean_PrettyPrinter_Formatter_pushNone_formatter___boxed(lean_object*); -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__11; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__26; +lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__13; extern lean_object* l_Lean_Parser_mkAntiquotScope___closed__1; lean_object* l_Lean_Parser_notSymbol_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__23; lean_object* l_Lean_Parser_sepBy_formatter(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__2; +lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__1; lean_object* l_Lean_Parser_leadingNode_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_sepByElemParser_parenthesizer___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_nameLit_formatter___closed__1; @@ -453,45 +440,48 @@ lean_object* l_Lean_Parser_antiquotExpr_parenthesizer(lean_object*, lean_object* lean_object* l_Lean_Parser_ident_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_optional_formatter___closed__1; lean_object* l_Lean_PrettyPrinter_Formatter_checkNoImmediateColon_formatter___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__11; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__8; +lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__19; lean_object* l_Lean_Parser_numLit_formatter___closed__2; lean_object* l_Lean_Parser_sepBy1_formatter___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__19; lean_object* l_Lean_Parser_numLit_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__1; extern lean_object* l_Lean_PrettyPrinter_mkFormatterAttribute___closed__7; -extern lean_object* l_Lean_Syntax_mkAntiquotNode___closed__13; lean_object* l_Lean_ppSpace_formatter___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__47; +lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__2; +lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__25; +lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__13; lean_object* l_String_trim(lean_object*); -lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__23; -lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__10; lean_object* l_Lean_Parser_nodeFn(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__38; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__21; +extern lean_object* l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__7; lean_object* l_Lean_Parser_optionalFn(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Formatter_withoutInfo_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__48; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__2; lean_object* l_Lean_Parser_nameLit_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__22; extern lean_object* l_myMacro____x40_Init_Notation___hyg_521____closed__23; +lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__11; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__31; uint8_t l_Lean_Syntax_isOfKind(lean_object*, lean_object*); lean_object* l_Lean_Parser_rawIdent_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__7; lean_object* l_Lean_Parser_scientificLit_formatter___closed__1; -lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__17; -lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__26; extern lean_object* l_Lean_PrettyPrinter_Parenthesizer_parenthesizerAliasesRef; lean_object* l_Lean_Parser_termRegisterParserAlias_x21_________closed__4; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__4; lean_object* l_Lean_Parser_termRegisterParserAlias_x21_________closed__8; +lean_object* l_Lean_PrettyPrinter_Parenthesizer_withAntiquotSuffixSplice_parenthesizer___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__12; lean_object* l_Lean_ppLine_formatter___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__3; lean_object* lean_int_sub(lean_object*, lean_object*); lean_object* l_Lean_Parser_nameLit___elambda__1(lean_object*, lean_object*); -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__27; lean_object* l_Lean_Parser_rawIdent___closed__1; extern lean_object* l_myMacro____x40_Init_Notation___hyg_11918____closed__9; +lean_object* l_Lean_Parser_many_formatter___closed__1; lean_object* l_Lean_Parser_scientificLit_formatter___closed__2; +extern lean_object* l_Lean_Syntax_mkAntiquotNode___closed__6; lean_object* l_Lean_ppLine_formatter___closed__1; lean_object* l_Lean_PrettyPrinter_Formatter_charLitNoAntiquot_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__3; extern lean_object* l_rawNatLit___closed__6; lean_object* l_Lean_Parser_mkAntiquot(lean_object*, lean_object*, uint8_t); lean_object* l_Lean_PrettyPrinter_Parenthesizer_withPosition_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -499,69 +489,75 @@ lean_object* l_Lean_Parser_termRegisterParserAlias_x21_________closed__9; lean_object* l_Lean_Parser_nameLit_formatter___closed__2; lean_object* l_Lean_Parser_ppGroup(lean_object*); lean_object* l_Lean_Parser_antiquotNestedExpr_parenthesizer___closed__4; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__39; +lean_object* l_Lean_Parser_withAntiquotScopeAndSuffix_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_getArg(lean_object*, lean_object*); lean_object* l_Lean_Parser_many_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_antiquotNestedExpr_formatter___closed__4; lean_object* l_Lean_Parser_ident_parenthesizer___closed__1; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__45; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__40; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__9; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__23; +extern lean_object* l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__3; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__17; lean_object* l_Lean_Parser_optional___closed__4; -lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__7; -lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__12; +lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__9; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__4; lean_object* l_Lean_PrettyPrinter_Parenthesizer_strLitNoAntiquot_parenthesizer___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__12; +lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__16; +lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__9; lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__1; lean_object* l_Lean_Parser_mkAntiquotScope_formatter___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__39; lean_object* l_Lean_Parser_rawIdent_formatter___closed__1; -lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__2; -lean_object* l_Lean_Parser_mkAntiquot_formatter___closed__12; lean_object* l_Lean_Parser_mkAntiquotScope_formatter___closed__2; -lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__4; extern lean_object* l_stx___x2a___closed__3; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__23; +lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__17; +lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__3; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__9; lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__2; lean_object* l_Lean_Parser_notSymbol_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__8; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__17; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__40; lean_object* l_Lean_Parser_antiquotExpr_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_instInhabitedParser___closed__1; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__31; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__45; lean_object* l_Lean_Parser_numLit_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_optional___elambda__1(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_sepBy_parenthesizer(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__17; +lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__8; extern lean_object* l_Lean_MessageData_formatAux___closed__3; lean_object* l_Lean_Parser_ident___closed__3; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__27; +lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__4; lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__9; +lean_object* l_Lean_PrettyPrinter_Formatter_withAntiquotSuffixSplice_formatter___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_ident_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__7; lean_object* l_Lean_Parser_scientificLit___closed__2; lean_object* l_Lean_Parser_many1Indent___closed__1; -lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__19; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__38; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__21; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__47; +lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__35; lean_object* l_Lean_PrettyPrinter_Formatter_group(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__21; lean_object* l_Lean_Parser_identFn(lean_object*, lean_object*); lean_object* l_Lean_Parser_nameLit_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_nat_to_int(lean_object*); lean_object* l_Lean_Parser_scientificLit_parenthesizer___closed__1; -lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__36; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__2; lean_object* l_Lean_Parser_notSymbol_parenthesizer___rarg(lean_object*); lean_object* l_Lean_Parser_rawIdent___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__17; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__34; lean_object* l_Lean_Parser_strLit; lean_object* l_Lean_Parser_many1(lean_object*); lean_object* l_Lean_PrettyPrinter_Formatter_andthen_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_termRegisterParserAlias_x21_________closed__5; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__48; lean_object* l_Lean_Parser_scientificLit___closed__1; extern lean_object* l_Lean_Parser_identNoAntiquot___closed__2; lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__8; lean_object* l_Lean_Parser_sepByElemParser_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__35; lean_object* l_Lean_Parser_nodeWithAntiquot_parenthesizer(lean_object*); lean_object* l_Lean_Parser_strLit___closed__2; lean_object* l_Lean_Parser_ppDedent_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__1; extern lean_object* l_term_x5b___x5d___closed__3; lean_object* l_Lean_Parser_nodeWithAntiquot_parenthesizer___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -569,20 +565,19 @@ lean_object* l_Lean_Parser_notSymbol_formatter___rarg(lean_object*); lean_object* l_Lean_Parser_antiquotExpr_formatter___closed__1; lean_object* l_Lean_Parser_mkAntiquotScope_formatter___closed__1; lean_object* l_Lean_Parser_termParser_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__8; lean_object* l_Lean_ppDedent_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_nameLitKind___closed__1; -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__8; lean_object* l_Lean_Parser_manyIndent_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__36; lean_object* l_Lean_PrettyPrinter_Parenthesizer_node_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957_(lean_object*); -lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870_(lean_object*); +lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948_(lean_object*); +lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861_(lean_object*); lean_object* l_Lean_Parser_ppLine_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__21; +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__19; lean_object* l_Lean_PrettyPrinter_Formatter_categoryParser_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__11; lean_object* l_Lean_Parser_andthenFn(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_many1Indent___closed__2; -lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__4; static lean_object* _init_l_Lean_Parser_leadingNode_formatter___closed__1() { _start: { @@ -748,7 +743,7 @@ lean_object* l_Lean_Parser_antiquotNestedExpr_formatter(lean_object* x_1, lean_o _start: { lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_6 = l_Lean_Syntax_mkAntiquotNode___closed__13; +x_6 = l_Lean_Syntax_mkAntiquotNode___closed__6; x_7 = l_Lean_Parser_antiquotNestedExpr_formatter___closed__6; x_8 = l_Lean_PrettyPrinter_Formatter_node_formatter(x_6, x_7, x_1, x_2, x_3, x_4, x_5); return x_8; @@ -804,7 +799,7 @@ static lean_object* _init_l_Lean_Parser_mkAntiquot_formatter___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__3; +x_1 = l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__3; x_2 = l_Lean_Parser_mkAntiquot_formatter___closed__1; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -826,7 +821,7 @@ static lean_object* _init_l_Lean_Parser_mkAntiquot_formatter___closed__5() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_stx___x2a___closed__3; +x_1 = l_myMacro____x40_Init_Notation___hyg_11918____closed__9; x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_symbol_formatter), 6, 1); lean_closure_set(x_2, 0, x_1); return x_2; @@ -835,44 +830,12 @@ return x_2; static lean_object* _init_l_Lean_Parser_mkAntiquot_formatter___closed__6() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__3; -x_2 = l_Lean_Parser_mkAntiquot_formatter___closed__5; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_mkAntiquot_formatter___closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_mkAntiquot_formatter___closed__6; -x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_optionalNoAntiquot_formatter), 6, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_mkAntiquot_formatter___closed__8() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_myMacro____x40_Init_Notation___hyg_11918____closed__9; -x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_symbol_formatter), 6, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_mkAntiquot_formatter___closed__9() { -_start: -{ lean_object* x_1; x_1 = lean_alloc_closure((void*)(l_Lean_Parser_antiquotExpr_formatter), 5, 0); return x_1; } } -static lean_object* _init_l_Lean_Parser_mkAntiquot_formatter___closed__10() { +static lean_object* _init_l_Lean_Parser_mkAntiquot_formatter___closed__7() { _start: { lean_object* x_1; @@ -880,7 +843,7 @@ x_1 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_checkNoImmediate return x_1; } } -static lean_object* _init_l_Lean_Parser_mkAntiquot_formatter___closed__11() { +static lean_object* _init_l_Lean_Parser_mkAntiquot_formatter___closed__8() { _start: { lean_object* x_1; @@ -888,12 +851,12 @@ x_1 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_pushNone_formatt return x_1; } } -static lean_object* _init_l_Lean_Parser_mkAntiquot_formatter___closed__12() { +static lean_object* _init_l_Lean_Parser_mkAntiquot_formatter___closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_mkAntiquot_formatter___closed__10; -x_2 = l_Lean_Parser_mkAntiquot_formatter___closed__11; +x_1 = l_Lean_Parser_mkAntiquot_formatter___closed__7; +x_2 = l_Lean_Parser_mkAntiquot_formatter___closed__8; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); lean_closure_set(x_3, 1, x_2); @@ -906,21 +869,21 @@ _start: lean_object* x_9; if (lean_obj_tag(x_2) == 0) { -lean_object* x_53; -x_53 = lean_box(0); -x_9 = x_53; -goto block_52; +lean_object* x_49; +x_49 = lean_box(0); +x_9 = x_49; +goto block_48; } else { -lean_object* x_54; -x_54 = lean_ctor_get(x_2, 0); -lean_inc(x_54); +lean_object* x_50; +x_50 = lean_ctor_get(x_2, 0); +lean_inc(x_50); lean_dec(x_2); -x_9 = x_54; -goto block_52; +x_9 = x_50; +goto block_48; } -block_52: +block_48: { lean_object* x_10; lean_object* x_11; x_10 = l_Lean_Syntax_mkAntiquotNode___closed__2; @@ -928,91 +891,83 @@ x_11 = l_Lean_Name_append(x_9, x_10); lean_dec(x_9); if (x_3 == 0) { -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_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_12 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_nonReservedSymbol_formatter), 6, 1); lean_closure_set(x_12, 0, x_1); -x_13 = l_Lean_Parser_mkAntiquot_formatter___closed__8; +x_13 = l_Lean_Parser_mkAntiquot_formatter___closed__5; x_14 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_14, 0, x_13); lean_closure_set(x_14, 1, x_12); -x_15 = l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__3; +x_15 = l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__3; x_16 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_16, 0, x_15); lean_closure_set(x_16, 1, x_14); -x_17 = l_Lean_Syntax_mkAntiquotNode___closed__9; +x_17 = l_Lean_Syntax_mkAntiquotNode___closed__12; x_18 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_node_formatter), 7, 2); lean_closure_set(x_18, 0, x_17); lean_closure_set(x_18, 1, x_16); -x_19 = l_Lean_Parser_mkAntiquot_formatter___closed__7; +x_19 = l_Lean_Parser_mkAntiquot_formatter___closed__6; x_20 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); -lean_closure_set(x_20, 0, x_18); -lean_closure_set(x_20, 1, x_19); -x_21 = l_Lean_Parser_mkAntiquot_formatter___closed__9; -x_22 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); -lean_closure_set(x_22, 0, x_21); -lean_closure_set(x_22, 1, x_20); +lean_closure_set(x_20, 0, x_19); +lean_closure_set(x_20, 1, x_18); +x_21 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); +lean_closure_set(x_21, 0, x_15); +lean_closure_set(x_21, 1, x_20); +x_22 = l_Lean_Parser_mkAntiquot_formatter___closed__4; x_23 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); -lean_closure_set(x_23, 0, x_15); -lean_closure_set(x_23, 1, x_22); -x_24 = l_Lean_Parser_mkAntiquot_formatter___closed__4; +lean_closure_set(x_23, 0, x_22); +lean_closure_set(x_23, 1, x_21); +x_24 = l_Lean_Parser_mkAntiquot_formatter___closed__2; x_25 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_25, 0, x_24); lean_closure_set(x_25, 1, x_23); -x_26 = l_Lean_Parser_mkAntiquot_formatter___closed__2; -x_27 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); -lean_closure_set(x_27, 0, x_26); -lean_closure_set(x_27, 1, x_25); -x_28 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_atomic_formatter), 6, 1); -lean_closure_set(x_28, 0, x_27); -x_29 = l_Lean_Parser_maxPrec; -x_30 = l_Lean_Parser_leadingNode_formatter(x_11, x_29, x_28, x_4, x_5, x_6, x_7, x_8); -return x_30; +x_26 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_atomic_formatter), 6, 1); +lean_closure_set(x_26, 0, x_25); +x_27 = l_Lean_Parser_maxPrec; +x_28 = l_Lean_Parser_leadingNode_formatter(x_11, x_27, x_26, x_4, x_5, x_6, x_7, x_8); +return x_28; } else { -lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; -x_31 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_nonReservedSymbol_formatter), 6, 1); -lean_closure_set(x_31, 0, x_1); -x_32 = l_Lean_Parser_mkAntiquot_formatter___closed__8; +lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; +x_29 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_nonReservedSymbol_formatter), 6, 1); +lean_closure_set(x_29, 0, x_1); +x_30 = l_Lean_Parser_mkAntiquot_formatter___closed__5; +x_31 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); +lean_closure_set(x_31, 0, x_30); +lean_closure_set(x_31, 1, x_29); +x_32 = l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__3; x_33 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_33, 0, x_32); lean_closure_set(x_33, 1, x_31); -x_34 = l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__3; -x_35 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); +x_34 = l_Lean_Syntax_mkAntiquotNode___closed__12; +x_35 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_node_formatter), 7, 2); lean_closure_set(x_35, 0, x_34); lean_closure_set(x_35, 1, x_33); -x_36 = l_Lean_Syntax_mkAntiquotNode___closed__9; -x_37 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_node_formatter), 7, 2); -lean_closure_set(x_37, 0, x_36); -lean_closure_set(x_37, 1, x_35); -x_38 = l_Lean_Parser_mkAntiquot_formatter___closed__12; -x_39 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_orelse_formatter), 7, 2); -lean_closure_set(x_39, 0, x_37); -lean_closure_set(x_39, 1, x_38); -x_40 = l_Lean_Parser_mkAntiquot_formatter___closed__7; -x_41 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); -lean_closure_set(x_41, 0, x_39); -lean_closure_set(x_41, 1, x_40); -x_42 = l_Lean_Parser_mkAntiquot_formatter___closed__9; -x_43 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); -lean_closure_set(x_43, 0, x_42); -lean_closure_set(x_43, 1, x_41); +x_36 = l_Lean_Parser_mkAntiquot_formatter___closed__9; +x_37 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_orelse_formatter), 7, 2); +lean_closure_set(x_37, 0, x_35); +lean_closure_set(x_37, 1, x_36); +x_38 = l_Lean_Parser_mkAntiquot_formatter___closed__6; +x_39 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); +lean_closure_set(x_39, 0, x_38); +lean_closure_set(x_39, 1, x_37); +x_40 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); +lean_closure_set(x_40, 0, x_32); +lean_closure_set(x_40, 1, x_39); +x_41 = l_Lean_Parser_mkAntiquot_formatter___closed__4; +x_42 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); +lean_closure_set(x_42, 0, x_41); +lean_closure_set(x_42, 1, x_40); +x_43 = l_Lean_Parser_mkAntiquot_formatter___closed__2; x_44 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); -lean_closure_set(x_44, 0, x_34); -lean_closure_set(x_44, 1, x_43); -x_45 = l_Lean_Parser_mkAntiquot_formatter___closed__4; -x_46 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); -lean_closure_set(x_46, 0, x_45); -lean_closure_set(x_46, 1, x_44); -x_47 = l_Lean_Parser_mkAntiquot_formatter___closed__2; -x_48 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); -lean_closure_set(x_48, 0, x_47); -lean_closure_set(x_48, 1, x_46); -x_49 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_atomic_formatter), 6, 1); -lean_closure_set(x_49, 0, x_48); -x_50 = l_Lean_Parser_maxPrec; -x_51 = l_Lean_Parser_leadingNode_formatter(x_11, x_50, x_49, x_4, x_5, x_6, x_7, x_8); -return x_51; +lean_closure_set(x_44, 0, x_43); +lean_closure_set(x_44, 1, x_42); +x_45 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_atomic_formatter), 6, 1); +lean_closure_set(x_45, 0, x_44); +x_46 = l_Lean_Parser_maxPrec; +x_47 = l_Lean_Parser_leadingNode_formatter(x_11, x_46, x_45, x_4, x_5, x_6, x_7, x_8); +return x_47; } } } @@ -1083,7 +1038,7 @@ lean_object* l_Lean_Parser_antiquotNestedExpr_parenthesizer(lean_object* x_1, le _start: { lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_6 = l_Lean_Syntax_mkAntiquotNode___closed__13; +x_6 = l_Lean_Syntax_mkAntiquotNode___closed__6; x_7 = l_Lean_Parser_antiquotNestedExpr_parenthesizer___closed__5; x_8 = l_Lean_PrettyPrinter_Parenthesizer_node_parenthesizer(x_6, x_7, x_1, x_2, x_3, x_4, x_5); return x_8; @@ -1129,7 +1084,7 @@ static lean_object* _init_l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__3; x_2 = l_Lean_Parser_antiquotNestedExpr_parenthesizer___closed__3; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -1150,26 +1105,28 @@ return x_2; static lean_object* _init_l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__4() { _start: { -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__2; -x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_optionalNoAntiquot_parenthesizer), 6, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_nonReservedSymbol_parenthesizer___rarg___boxed), 5, 0); +return x_1; } } static lean_object* _init_l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__5() { _start: { -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_nonReservedSymbol_parenthesizer___rarg___boxed), 5, 0); -return x_1; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_antiquotNestedExpr_parenthesizer___closed__3; +x_2 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__4; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; } } static lean_object* _init_l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_antiquotNestedExpr_parenthesizer___closed__3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__3; x_2 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__5; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -1181,9 +1138,9 @@ static lean_object* _init_l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__3; +x_1 = l_Lean_Syntax_mkAntiquotNode___closed__12; x_2 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__6; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_node_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); lean_closure_set(x_3, 1, x_2); return x_3; @@ -1192,13 +1149,9 @@ return x_3; static lean_object* _init_l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__8() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Syntax_mkAntiquotNode___closed__9; -x_2 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__7; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_node_parenthesizer), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_Parser_antiquotExpr_parenthesizer), 5, 0); +return x_1; } } static lean_object* _init_l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__9() { @@ -1206,7 +1159,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__8; -x_2 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__4; +x_2 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__7; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); lean_closure_set(x_3, 1, x_2); @@ -1216,17 +1169,21 @@ return x_3; static lean_object* _init_l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__10() { _start: { -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_antiquotExpr_parenthesizer), 5, 0); -return x_1; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__3; +x_2 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__9; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; } } static lean_object* _init_l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__10; -x_2 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__9; +x_1 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__3; +x_2 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__10; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); lean_closure_set(x_3, 1, x_2); @@ -1237,7 +1194,7 @@ static lean_object* _init_l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__3; +x_1 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__1; x_2 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__11; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -1248,38 +1205,14 @@ return x_3; static lean_object* _init_l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__13() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__3; -x_2 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__12; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__14() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__1; -x_2 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__13; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__15() { -_start: -{ lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__14; +x_1 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__12; x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_atomic_parenthesizer), 6, 1); lean_closure_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__16() { +static lean_object* _init_l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__14() { _start: { lean_object* x_1; @@ -1287,7 +1220,7 @@ x_1 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_checkNoImmed return x_1; } } -static lean_object* _init_l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__17() { +static lean_object* _init_l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__15() { _start: { lean_object* x_1; @@ -1295,11 +1228,35 @@ x_1 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_pushNone_par return x_1; } } +static lean_object* _init_l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__16() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__14; +x_2 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__15; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__17() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__7; +x_2 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__16; +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer), 7, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} static lean_object* _init_l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__18() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__16; +x_1 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__8; x_2 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__17; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -1311,9 +1268,9 @@ static lean_object* _init_l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__8; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__3; x_2 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__18; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer), 7, 2); +x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); lean_closure_set(x_3, 1, x_2); return x_3; @@ -1323,8 +1280,8 @@ static lean_object* _init_l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__19; -x_2 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__4; +x_1 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__3; +x_2 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__19; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); lean_closure_set(x_3, 1, x_2); @@ -1335,7 +1292,7 @@ static lean_object* _init_l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__10; +x_1 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__1; x_2 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__20; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -1346,44 +1303,8 @@ return x_3; static lean_object* _init_l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__22() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__3; -x_2 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__21; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__23() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__3; -x_2 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__22; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__24() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__1; -x_2 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__23; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__25() { -_start: -{ lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__24; +x_1 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__21; x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_atomic_parenthesizer), 6, 1); lean_closure_set(x_2, 0, x_1); return x_2; @@ -1419,7 +1340,7 @@ if (x_2 == 0) { lean_object* x_11; lean_object* x_12; lean_object* x_13; x_11 = l_Lean_Parser_maxPrec; -x_12 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__15; +x_12 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__13; x_13 = l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer(x_10, x_11, x_12, x_3, x_4, x_5, x_6, x_7); return x_13; } @@ -1427,7 +1348,7 @@ else { lean_object* x_14; lean_object* x_15; lean_object* x_16; x_14 = l_Lean_Parser_maxPrec; -x_15 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__25; +x_15 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__22; x_16 = l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer(x_10, x_14, x_15, x_3, x_4, x_5, x_6, x_7); return x_16; } @@ -1558,43 +1479,41 @@ return x_2; lean_object* l_Lean_Parser_mkAntiquotScope_formatter(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { -lean_object* x_9; 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_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; x_9 = l_Lean_Parser_mkAntiquotScope___closed__1; x_10 = l_Lean_Name_append(x_1, x_9); -x_11 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_withoutInfo_formatter), 6, 1); -lean_closure_set(x_11, 0, x_2); -x_12 = l_Lean_nullKind; -x_13 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_node_formatter), 7, 2); -lean_closure_set(x_13, 0, x_12); -lean_closure_set(x_13, 1, x_11); -x_14 = l_Lean_Parser_mkAntiquotScope_formatter___closed__2; +x_11 = l_Lean_nullKind; +x_12 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_node_formatter), 7, 2); +lean_closure_set(x_12, 0, x_11); +lean_closure_set(x_12, 1, x_2); +x_13 = l_Lean_Parser_mkAntiquotScope_formatter___closed__2; +x_14 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); +lean_closure_set(x_14, 0, x_13); +lean_closure_set(x_14, 1, x_3); x_15 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); -lean_closure_set(x_15, 0, x_14); -lean_closure_set(x_15, 1, x_3); -x_16 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); -lean_closure_set(x_16, 0, x_13); -lean_closure_set(x_16, 1, x_15); -x_17 = l_Lean_Parser_mkAntiquotScope_formatter___closed__1; -x_18 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); -lean_closure_set(x_18, 0, x_17); -lean_closure_set(x_18, 1, x_16); -x_19 = l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__3; -x_20 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); -lean_closure_set(x_20, 0, x_19); -lean_closure_set(x_20, 1, x_18); -x_21 = l_Lean_Parser_mkAntiquot_formatter___closed__4; -x_22 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); -lean_closure_set(x_22, 0, x_21); -lean_closure_set(x_22, 1, x_20); -x_23 = l_Lean_Parser_mkAntiquot_formatter___closed__2; -x_24 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); +lean_closure_set(x_15, 0, x_12); +lean_closure_set(x_15, 1, x_14); +x_16 = l_Lean_Parser_mkAntiquotScope_formatter___closed__1; +x_17 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); +lean_closure_set(x_17, 0, x_16); +lean_closure_set(x_17, 1, x_15); +x_18 = l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__3; +x_19 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); +lean_closure_set(x_19, 0, x_18); +lean_closure_set(x_19, 1, x_17); +x_20 = l_Lean_Parser_mkAntiquot_formatter___closed__4; +x_21 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); +lean_closure_set(x_21, 0, x_20); +lean_closure_set(x_21, 1, x_19); +x_22 = l_Lean_Parser_mkAntiquot_formatter___closed__2; +x_23 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); +lean_closure_set(x_23, 0, x_22); +lean_closure_set(x_23, 1, x_21); +x_24 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_atomic_formatter), 6, 1); lean_closure_set(x_24, 0, x_23); -lean_closure_set(x_24, 1, x_22); -x_25 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_atomic_formatter), 6, 1); -lean_closure_set(x_25, 0, x_24); -x_26 = l_Lean_Parser_maxPrec; -x_27 = l_Lean_Parser_leadingNode_formatter(x_10, x_26, x_25, x_4, x_5, x_6, x_7, x_8); -return x_27; +x_25 = l_Lean_Parser_maxPrec; +x_26 = l_Lean_Parser_leadingNode_formatter(x_10, x_25, x_24, x_4, x_5, x_6, x_7, x_8); +return x_26; } } lean_object* l_Lean_Parser_mkAntiquotScope_formatter___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { @@ -1606,23 +1525,37 @@ lean_dec(x_1); return x_9; } } +lean_object* l_Lean_Parser_withAntiquotScopeAndSuffix_formatter(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +_start: +{ +lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; +lean_inc(x_2); +x_9 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_withoutInfo_formatter), 6, 1); +lean_closure_set(x_9, 0, x_2); +lean_inc(x_3); +x_10 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquotScope_formatter___boxed), 8, 3); +lean_closure_set(x_10, 0, x_1); +lean_closure_set(x_10, 1, x_9); +lean_closure_set(x_10, 2, x_3); +x_11 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_withAntiquotSuffixSplice_formatter___rarg), 7, 2); +lean_closure_set(x_11, 0, x_2); +lean_closure_set(x_11, 1, x_3); +x_12 = l_Lean_PrettyPrinter_Formatter_orelse_formatter(x_10, x_11, x_4, x_5, x_6, x_7, x_8); +return x_12; +} +} lean_object* l_Lean_Parser_sepByElemParser_formatter(lean_object* x_1, 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_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; x_8 = l_String_trim(x_2); x_9 = l_stx___x2a___closed__3; x_10 = lean_string_append(x_8, x_9); x_11 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_symbol_formatter), 6, 1); lean_closure_set(x_11, 0, x_10); x_12 = l_Lean_Parser_sepByElemParser___closed__1; -lean_inc(x_1); -x_13 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquotScope_formatter___boxed), 8, 3); -lean_closure_set(x_13, 0, x_12); -lean_closure_set(x_13, 1, x_1); -lean_closure_set(x_13, 2, x_11); -x_14 = l_Lean_PrettyPrinter_Formatter_orelse_formatter(x_13, x_1, x_3, x_4, x_5, x_6, x_7); -return x_14; +x_13 = l_Lean_Parser_withAntiquotScopeAndSuffix_formatter(x_12, x_1, x_11, x_3, x_4, x_5, x_6, x_7); +return x_13; } } lean_object* l_Lean_Parser_sepByElemParser_formatter___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { @@ -1658,42 +1591,40 @@ return x_11; lean_object* l_Lean_Parser_mkAntiquotScope_parenthesizer(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { -lean_object* x_9; 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_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; x_9 = l_Lean_Parser_mkAntiquotScope___closed__1; x_10 = l_Lean_Name_append(x_1, x_9); -x_11 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_withoutInfo_parenthesizer), 6, 1); -lean_closure_set(x_11, 0, x_2); -x_12 = l_Lean_nullKind; -x_13 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_node_parenthesizer), 7, 2); -lean_closure_set(x_13, 0, x_12); -lean_closure_set(x_13, 1, x_11); -x_14 = l_Lean_Parser_antiquotNestedExpr_parenthesizer___closed__3; +x_11 = l_Lean_nullKind; +x_12 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_node_parenthesizer), 7, 2); +lean_closure_set(x_12, 0, x_11); +lean_closure_set(x_12, 1, x_2); +x_13 = l_Lean_Parser_antiquotNestedExpr_parenthesizer___closed__3; +x_14 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); +lean_closure_set(x_14, 0, x_13); +lean_closure_set(x_14, 1, x_3); x_15 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); -lean_closure_set(x_15, 0, x_14); -lean_closure_set(x_15, 1, x_3); +lean_closure_set(x_15, 0, x_12); +lean_closure_set(x_15, 1, x_14); x_16 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_16, 0, x_13); lean_closure_set(x_16, 1, x_15); -x_17 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); -lean_closure_set(x_17, 0, x_14); -lean_closure_set(x_17, 1, x_16); -x_18 = l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__3; -x_19 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); -lean_closure_set(x_19, 0, x_18); -lean_closure_set(x_19, 1, x_17); -x_20 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__3; -x_21 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); -lean_closure_set(x_21, 0, x_20); -lean_closure_set(x_21, 1, x_19); -x_22 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__1; -x_23 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); +x_17 = l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__3; +x_18 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); +lean_closure_set(x_18, 0, x_17); +lean_closure_set(x_18, 1, x_16); +x_19 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__3; +x_20 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); +lean_closure_set(x_20, 0, x_19); +lean_closure_set(x_20, 1, x_18); +x_21 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__1; +x_22 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); +lean_closure_set(x_22, 0, x_21); +lean_closure_set(x_22, 1, x_20); +x_23 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_atomic_parenthesizer), 6, 1); lean_closure_set(x_23, 0, x_22); -lean_closure_set(x_23, 1, x_21); -x_24 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_atomic_parenthesizer), 6, 1); -lean_closure_set(x_24, 0, x_23); -x_25 = l_Lean_Parser_maxPrec; -x_26 = l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer(x_10, x_25, x_24, x_4, x_5, x_6, x_7, x_8); -return x_26; +x_24 = l_Lean_Parser_maxPrec; +x_25 = l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer(x_10, x_24, x_23, x_4, x_5, x_6, x_7, x_8); +return x_25; } } lean_object* l_Lean_Parser_mkAntiquotScope_parenthesizer___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { @@ -1705,19 +1636,33 @@ lean_dec(x_1); return x_9; } } +lean_object* l_Lean_Parser_withAntiquotScopeAndSuffix_parenthesizer(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +_start: +{ +lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; +lean_inc(x_2); +x_9 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_withoutInfo_parenthesizer), 6, 1); +lean_closure_set(x_9, 0, x_2); +lean_inc(x_3); +x_10 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquotScope_parenthesizer___boxed), 8, 3); +lean_closure_set(x_10, 0, x_1); +lean_closure_set(x_10, 1, x_9); +lean_closure_set(x_10, 2, x_3); +x_11 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_withAntiquotSuffixSplice_parenthesizer___rarg), 7, 2); +lean_closure_set(x_11, 0, x_2); +lean_closure_set(x_11, 1, x_3); +x_12 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_10, x_11, x_4, x_5, x_6, x_7, x_8); +return x_12; +} +} lean_object* l_Lean_Parser_sepByElemParser_parenthesizer(lean_object* x_1, 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_8; lean_object* x_9; lean_object* x_10; x_8 = l_Lean_Parser_sepByElemParser___closed__1; x_9 = l_Lean_Parser_antiquotNestedExpr_parenthesizer___closed__3; -lean_inc(x_1); -x_10 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquotScope_parenthesizer___boxed), 8, 3); -lean_closure_set(x_10, 0, x_8); -lean_closure_set(x_10, 1, x_1); -lean_closure_set(x_10, 2, x_9); -x_11 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_10, x_1, x_3, x_4, x_5, x_6, x_7); -return x_11; +x_10 = l_Lean_Parser_withAntiquotScopeAndSuffix_parenthesizer(x_8, x_1, x_9, x_3, x_4, x_5, x_6, x_7); +return x_10; } } lean_object* l_Lean_Parser_sepByElemParser_parenthesizer___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { @@ -1805,37 +1750,29 @@ return x_2; lean_object* l_Lean_Parser_optional_formatter(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_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; x_7 = l_myMacro____x40_Init_Notation___hyg_267____closed__4; x_8 = l_Lean_Parser_optional_formatter___closed__1; -lean_inc(x_1); -x_9 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquotScope_formatter___boxed), 8, 3); +x_9 = lean_alloc_closure((void*)(l_Lean_Parser_withAntiquotScopeAndSuffix_formatter), 8, 3); lean_closure_set(x_9, 0, x_7); lean_closure_set(x_9, 1, x_1); lean_closure_set(x_9, 2, x_8); -x_10 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_withAntiquot_formatter), 7, 2); -lean_closure_set(x_10, 0, x_9); -lean_closure_set(x_10, 1, x_1); -x_11 = l_Lean_PrettyPrinter_Formatter_visitArgs(x_10, x_2, x_3, x_4, x_5, x_6); -return x_11; +x_10 = l_Lean_PrettyPrinter_Formatter_visitArgs(x_9, x_2, x_3, x_4, x_5, x_6); +return x_10; } } lean_object* l_Lean_Parser_optional_parenthesizer(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_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; x_7 = l_myMacro____x40_Init_Notation___hyg_267____closed__4; x_8 = l_Lean_Parser_antiquotNestedExpr_parenthesizer___closed__3; -lean_inc(x_1); -x_9 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquotScope_parenthesizer___boxed), 8, 3); +x_9 = lean_alloc_closure((void*)(l_Lean_Parser_withAntiquotScopeAndSuffix_parenthesizer), 8, 3); lean_closure_set(x_9, 0, x_7); lean_closure_set(x_9, 1, x_1); lean_closure_set(x_9, 2, x_8); -x_10 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_withAntiquot_parenthesizer), 7, 2); -lean_closure_set(x_10, 0, x_9); -lean_closure_set(x_10, 1, x_1); -x_11 = l_Lean_PrettyPrinter_Parenthesizer_visitArgs(x_10, x_2, x_3, x_4, x_5, x_6); -return x_11; +x_10 = l_Lean_PrettyPrinter_Parenthesizer_visitArgs(x_9, x_2, x_3, x_4, x_5, x_6); +return x_10; } } lean_object* l_Lean_Parser_optional___elambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { @@ -1889,68 +1826,60 @@ return x_3; lean_object* l_Lean_Parser_optional(lean_object* x_1) { _start: { -lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; x_2 = l_myMacro____x40_Init_Notation___hyg_267____closed__4; x_3 = l_Lean_Parser_optional___closed__4; -lean_inc(x_1); -x_4 = l_Lean_Parser_mkAntiquotScope(x_2, x_1, x_3); +x_4 = l_Lean_Parser_withAntiquotScopeAndSuffix(x_2, x_1, x_3); x_5 = lean_ctor_get(x_4, 0); lean_inc(x_5); -x_6 = lean_ctor_get(x_1, 0); -lean_inc(x_6); -x_7 = l_Lean_Parser_orelseInfo(x_5, x_6); -x_8 = lean_ctor_get(x_4, 1); -lean_inc(x_8); +x_6 = l_Lean_Parser_optionaInfo(x_5); +x_7 = lean_ctor_get(x_4, 1); +lean_inc(x_7); lean_dec(x_4); -x_9 = lean_ctor_get(x_1, 1); -lean_inc(x_9); -lean_dec(x_1); -x_10 = lean_alloc_closure((void*)(l_Lean_Parser_withAntiquotFn), 4, 2); -lean_closure_set(x_10, 0, x_8); -lean_closure_set(x_10, 1, x_9); -x_11 = l_Lean_Parser_optionaInfo(x_7); -x_12 = lean_alloc_closure((void*)(l_Lean_Parser_optional___elambda__1), 3, 1); -lean_closure_set(x_12, 0, x_10); -x_13 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_13, 0, x_11); -lean_ctor_set(x_13, 1, x_12); -return x_13; +x_8 = lean_alloc_closure((void*)(l_Lean_Parser_optional___elambda__1), 3, 1); +lean_closure_set(x_8, 0, x_7); +x_9 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_9, 0, x_6); +lean_ctor_set(x_9, 1, x_8); +return x_9; +} +} +static lean_object* _init_l_Lean_Parser_many_formatter___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_stx___x2a___closed__3; +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_symbol_formatter), 6, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; } } lean_object* l_Lean_Parser_many_formatter(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_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; x_7 = l_myMacro____x40_Init_Notation___hyg_158____closed__4; -x_8 = l_Lean_Parser_mkAntiquot_formatter___closed__5; -lean_inc(x_1); -x_9 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquotScope_formatter___boxed), 8, 3); +x_8 = l_Lean_Parser_many_formatter___closed__1; +x_9 = lean_alloc_closure((void*)(l_Lean_Parser_withAntiquotScopeAndSuffix_formatter), 8, 3); lean_closure_set(x_9, 0, x_7); lean_closure_set(x_9, 1, x_1); lean_closure_set(x_9, 2, x_8); -x_10 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_withAntiquot_formatter), 7, 2); -lean_closure_set(x_10, 0, x_9); -lean_closure_set(x_10, 1, x_1); -x_11 = l_Lean_PrettyPrinter_Formatter_manyNoAntiquot_formatter(x_10, x_2, x_3, x_4, x_5, x_6); -return x_11; +x_10 = l_Lean_PrettyPrinter_Formatter_manyNoAntiquot_formatter(x_9, x_2, x_3, x_4, x_5, x_6); +return x_10; } } lean_object* l_Lean_Parser_many_parenthesizer(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_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; x_7 = l_myMacro____x40_Init_Notation___hyg_158____closed__4; x_8 = l_Lean_Parser_antiquotNestedExpr_parenthesizer___closed__3; -lean_inc(x_1); -x_9 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquotScope_parenthesizer___boxed), 8, 3); +x_9 = lean_alloc_closure((void*)(l_Lean_Parser_withAntiquotScopeAndSuffix_parenthesizer), 8, 3); lean_closure_set(x_9, 0, x_7); lean_closure_set(x_9, 1, x_1); lean_closure_set(x_9, 2, x_8); -x_10 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_withAntiquot_parenthesizer), 7, 2); -lean_closure_set(x_10, 0, x_9); -lean_closure_set(x_10, 1, x_1); -x_11 = l_Lean_PrettyPrinter_Parenthesizer_manyNoAntiquot_parenthesizer(x_10, x_2, x_3, x_4, x_5, x_6); -return x_11; +x_10 = l_Lean_PrettyPrinter_Parenthesizer_manyNoAntiquot_parenthesizer(x_9, x_2, x_3, x_4, x_5, x_6); +return x_10; } } lean_object* l_Lean_Parser_many___elambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { @@ -1970,9 +1899,37 @@ return x_8; static lean_object* _init_l_Lean_Parser_many___closed__1() { _start: { +lean_object* x_1; lean_object* x_2; +x_1 = l_stx___x2a___closed__3; +x_2 = l_String_trim(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Parser_many___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_many___closed__1; +x_2 = l_Lean_Parser_symbolInfo(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Parser_many___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Parser_many___closed__1; +x_2 = lean_alloc_closure((void*)(l_Lean_Parser_symbolFn___boxed), 3, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Parser_many___closed__4() { +_start: +{ lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_mkAntiquot___closed__16; -x_2 = l_Lean_Parser_mkAntiquot___closed__17; +x_1 = l_Lean_Parser_many___closed__2; +x_2 = l_Lean_Parser_many___closed__3; x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); @@ -1982,68 +1939,50 @@ return x_3; lean_object* l_Lean_Parser_many(lean_object* x_1) { _start: { -lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; +lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; x_2 = l_myMacro____x40_Init_Notation___hyg_158____closed__4; -x_3 = l_Lean_Parser_many___closed__1; -lean_inc(x_1); -x_4 = l_Lean_Parser_mkAntiquotScope(x_2, x_1, x_3); +x_3 = l_Lean_Parser_many___closed__4; +x_4 = l_Lean_Parser_withAntiquotScopeAndSuffix(x_2, x_1, x_3); x_5 = lean_ctor_get(x_4, 0); lean_inc(x_5); -x_6 = lean_ctor_get(x_1, 0); -lean_inc(x_6); -x_7 = l_Lean_Parser_orelseInfo(x_5, x_6); -x_8 = lean_ctor_get(x_4, 1); -lean_inc(x_8); +x_6 = l_Lean_Parser_noFirstTokenInfo(x_5); +x_7 = lean_ctor_get(x_4, 1); +lean_inc(x_7); lean_dec(x_4); -x_9 = lean_ctor_get(x_1, 1); -lean_inc(x_9); -lean_dec(x_1); -x_10 = lean_alloc_closure((void*)(l_Lean_Parser_withAntiquotFn), 4, 2); -lean_closure_set(x_10, 0, x_8); -lean_closure_set(x_10, 1, x_9); -x_11 = l_Lean_Parser_noFirstTokenInfo(x_7); -x_12 = lean_alloc_closure((void*)(l_Lean_Parser_many___elambda__1), 3, 1); -lean_closure_set(x_12, 0, x_10); -x_13 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_13, 0, x_11); -lean_ctor_set(x_13, 1, x_12); -return x_13; +x_8 = lean_alloc_closure((void*)(l_Lean_Parser_many___elambda__1), 3, 1); +lean_closure_set(x_8, 0, x_7); +x_9 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_9, 0, x_6); +lean_ctor_set(x_9, 1, x_8); +return x_9; } } lean_object* l_Lean_Parser_many1_formatter(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_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; x_7 = l_myMacro____x40_Init_Notation___hyg_158____closed__4; -x_8 = l_Lean_Parser_mkAntiquot_formatter___closed__5; -lean_inc(x_1); -x_9 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquotScope_formatter___boxed), 8, 3); +x_8 = l_Lean_Parser_many_formatter___closed__1; +x_9 = lean_alloc_closure((void*)(l_Lean_Parser_withAntiquotScopeAndSuffix_formatter), 8, 3); lean_closure_set(x_9, 0, x_7); lean_closure_set(x_9, 1, x_1); lean_closure_set(x_9, 2, x_8); -x_10 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_withAntiquot_formatter), 7, 2); -lean_closure_set(x_10, 0, x_9); -lean_closure_set(x_10, 1, x_1); -x_11 = l_Lean_PrettyPrinter_Formatter_manyNoAntiquot_formatter(x_10, x_2, x_3, x_4, x_5, x_6); -return x_11; +x_10 = l_Lean_PrettyPrinter_Formatter_manyNoAntiquot_formatter(x_9, x_2, x_3, x_4, x_5, x_6); +return x_10; } } lean_object* l_Lean_Parser_many1_parenthesizer(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_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; x_7 = l_myMacro____x40_Init_Notation___hyg_158____closed__4; x_8 = l_Lean_Parser_antiquotNestedExpr_parenthesizer___closed__3; -lean_inc(x_1); -x_9 = lean_alloc_closure((void*)(l_Lean_Parser_mkAntiquotScope_parenthesizer___boxed), 8, 3); +x_9 = lean_alloc_closure((void*)(l_Lean_Parser_withAntiquotScopeAndSuffix_parenthesizer), 8, 3); lean_closure_set(x_9, 0, x_7); lean_closure_set(x_9, 1, x_1); lean_closure_set(x_9, 2, x_8); -x_10 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_withAntiquot_parenthesizer), 7, 2); -lean_closure_set(x_10, 0, x_9); -lean_closure_set(x_10, 1, x_1); -x_11 = l_Lean_PrettyPrinter_Parenthesizer_manyNoAntiquot_parenthesizer(x_10, x_2, x_3, x_4, x_5, x_6); -return x_11; +x_10 = l_Lean_PrettyPrinter_Parenthesizer_manyNoAntiquot_parenthesizer(x_9, x_2, x_3, x_4, x_5, x_6); +return x_10; } } lean_object* l_Lean_Parser_many1___elambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { @@ -2082,31 +2021,35 @@ return x_12; lean_object* l_Lean_Parser_many1(lean_object* x_1) { _start: { -lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; +lean_object* x_2; lean_object* x_3; lean_object* x_4; uint8_t x_5; x_2 = l_myMacro____x40_Init_Notation___hyg_158____closed__4; -x_3 = l_Lean_Parser_many___closed__1; -lean_inc(x_1); -x_4 = l_Lean_Parser_mkAntiquotScope(x_2, x_1, x_3); -x_5 = lean_ctor_get(x_4, 0); -lean_inc(x_5); -x_6 = lean_ctor_get(x_1, 0); -lean_inc(x_6); -x_7 = l_Lean_Parser_orelseInfo(x_5, x_6); -x_8 = lean_ctor_get(x_4, 1); +x_3 = l_Lean_Parser_many___closed__4; +x_4 = l_Lean_Parser_withAntiquotScopeAndSuffix(x_2, x_1, x_3); +x_5 = !lean_is_exclusive(x_4); +if (x_5 == 0) +{ +lean_object* x_6; lean_object* x_7; +x_6 = lean_ctor_get(x_4, 1); +x_7 = lean_alloc_closure((void*)(l_Lean_Parser_many1___elambda__1), 3, 1); +lean_closure_set(x_7, 0, x_6); +lean_ctor_set(x_4, 1, x_7); +return x_4; +} +else +{ +lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; +x_8 = lean_ctor_get(x_4, 0); +x_9 = lean_ctor_get(x_4, 1); +lean_inc(x_9); lean_inc(x_8); lean_dec(x_4); -x_9 = lean_ctor_get(x_1, 1); -lean_inc(x_9); -lean_dec(x_1); -x_10 = lean_alloc_closure((void*)(l_Lean_Parser_withAntiquotFn), 4, 2); -lean_closure_set(x_10, 0, x_8); -lean_closure_set(x_10, 1, x_9); -x_11 = lean_alloc_closure((void*)(l_Lean_Parser_many1___elambda__1), 3, 1); -lean_closure_set(x_11, 0, x_10); -x_12 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_12, 0, x_7); -lean_ctor_set(x_12, 1, x_11); -return x_12; +x_10 = lean_alloc_closure((void*)(l_Lean_Parser_many1___elambda__1), 3, 1); +lean_closure_set(x_10, 0, x_9); +x_11 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_11, 0, x_8); +lean_ctor_set(x_11, 1, x_10); +return x_11; +} } } static lean_object* _init_l_Lean_Parser_ident_formatter___closed__1() { @@ -3150,7 +3093,7 @@ lean_object* l_Lean_Parser_many1Indent_formatter(lean_object* x_1, lean_object* _start: { lean_object* x_7; lean_object* x_8; lean_object* x_9; -x_7 = l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__7; +x_7 = l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__7; x_8 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_8, 0, x_7); lean_closure_set(x_8, 1, x_1); @@ -3162,7 +3105,7 @@ lean_object* l_Lean_Parser_many1Indent_parenthesizer(lean_object* x_1, lean_obje _start: { lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; -x_7 = l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__7; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__7; x_8 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_8, 0, x_7); lean_closure_set(x_8, 1, x_1); @@ -3240,7 +3183,7 @@ lean_object* l_Lean_Parser_manyIndent_formatter(lean_object* x_1, lean_object* x _start: { lean_object* x_7; lean_object* x_8; lean_object* x_9; -x_7 = l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__7; +x_7 = l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__7; x_8 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_8, 0, x_7); lean_closure_set(x_8, 1, x_1); @@ -3252,7 +3195,7 @@ lean_object* l_Lean_Parser_manyIndent_parenthesizer(lean_object* x_1, lean_objec _start: { lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; -x_7 = l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__7; +x_7 = l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__7; x_8 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_8, 0, x_7); lean_closure_set(x_8, 1, x_1); @@ -3796,7 +3739,7 @@ x_1 = l_Lean_Parser_termRegisterParserAlias_x21_________closed__9; return x_1; } } -static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__1() { +static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__1() { _start: { lean_object* x_1; @@ -3804,39 +3747,39 @@ x_1 = lean_mk_string("do"); return x_1; } } -static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__2() { +static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_myMacro____x40_Init_Notation___hyg_1625____closed__2; -x_2 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__1; +x_2 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__3() { +static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_instInhabitedSourceInfo___closed__1; -x_2 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__1; +x_2 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____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; } } -static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__4() { +static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Array_empty___closed__1; -x_2 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__3; +x_2 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__5() { +static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__5() { _start: { lean_object* x_1; @@ -3844,17 +3787,17 @@ x_1 = lean_mk_string("doSeqIndent"); return x_1; } } -static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__6() { +static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_myMacro____x40_Init_Notation___hyg_1625____closed__2; -x_2 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__5; +x_2 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__5; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__7() { +static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__7() { _start: { lean_object* x_1; @@ -3862,17 +3805,17 @@ x_1 = lean_mk_string("doSeqItem"); return x_1; } } -static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__8() { +static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_myMacro____x40_Init_Notation___hyg_1625____closed__2; -x_2 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__7; +x_2 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__7; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__9() { +static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__9() { _start: { lean_object* x_1; @@ -3880,17 +3823,17 @@ x_1 = lean_mk_string("doExpr"); return x_1; } } -static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__10() { +static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_myMacro____x40_Init_Notation___hyg_1625____closed__2; -x_2 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__9; +x_2 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__9; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__11() { +static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__11() { _start: { lean_object* x_1; @@ -3898,22 +3841,22 @@ x_1 = lean_mk_string("Parser.registerAlias"); return x_1; } } -static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__12() { +static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__12() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__11; +x_1 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__11; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__13() { +static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__13() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__11; +x_1 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__11; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__12; +x_3 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____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); @@ -3921,7 +3864,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__14() { +static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__14() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -3931,7 +3874,7 @@ x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__15() { +static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__15() { _start: { lean_object* x_1; @@ -3939,51 +3882,51 @@ x_1 = lean_mk_string("registerAlias"); return x_1; } } -static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__16() { +static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__16() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__14; -x_2 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__15; +x_1 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__14; +x_2 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__15; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__17() { +static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__17() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_myMacro____x40_Init_Notation___hyg_49____closed__4; -x_2 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__15; +x_2 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__15; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__18() { +static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__18() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__17; +x_2 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__17; 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; } } -static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__19() { +static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__19() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__18; +x_2 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__18; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__20() { +static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__20() { _start: { lean_object* x_1; @@ -3991,22 +3934,22 @@ x_1 = lean_mk_string("PrettyPrinter.Formatter.registerAlias"); return x_1; } } -static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__21() { +static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__21() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__20; +x_1 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__20; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__22() { +static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__22() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__20; +x_1 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__20; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__21; +x_3 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__21; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -4014,7 +3957,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__23() { +static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__23() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -4024,51 +3967,51 @@ x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__24() { +static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__24() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__23; -x_2 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__15; +x_1 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__23; +x_2 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__15; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__25() { +static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__25() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_PrettyPrinter_mkFormatterAttribute___closed__8; -x_2 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__15; +x_2 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__15; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__26() { +static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__26() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__25; +x_2 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__25; 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; } } -static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__27() { +static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__27() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__26; +x_2 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__26; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__28() { +static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__28() { _start: { lean_object* x_1; @@ -4076,22 +4019,22 @@ x_1 = lean_mk_string("PrettyPrinter.Parenthesizer.registerAlias"); return x_1; } } -static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__29() { +static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__29() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__28; +x_1 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__28; x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__30() { +static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__30() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__28; +x_1 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__28; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__29; +x_3 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____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); @@ -4099,7 +4042,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__31() { +static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__31() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -4109,17 +4052,17 @@ x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__32() { +static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__32() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__31; -x_2 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__15; +x_1 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__31; +x_2 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__15; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__33() { +static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__33() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -4129,41 +4072,41 @@ x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__34() { +static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__34() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__33; -x_2 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__15; +x_1 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__33; +x_2 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__15; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__35() { +static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__35() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__34; +x_2 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____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; } } -static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__36() { +static lean_object* _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__36() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__35; +x_2 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____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* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -4194,13 +4137,13 @@ lean_inc(x_12); x_13 = lean_ctor_get(x_2, 1); lean_inc(x_13); lean_dec(x_2); -x_14 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__16; +x_14 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__16; lean_inc(x_12); lean_inc(x_13); x_15 = l_Lean_addMacroScope(x_13, x_14, x_12); x_16 = l_Lean_instInhabitedSourceInfo___closed__1; -x_17 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__13; -x_18 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__19; +x_17 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__13; +x_18 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__19; x_19 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_19, 0, x_16); lean_ctor_set(x_19, 1, x_17); @@ -4222,24 +4165,24 @@ x_28 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_28, 0, x_27); lean_ctor_set(x_28, 1, x_26); x_29 = lean_array_push(x_20, x_28); -x_30 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__10; +x_30 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__10; 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_20, x_31); x_33 = l_myMacro____x40_Init_Notation___hyg_521____closed__23; x_34 = lean_array_push(x_32, x_33); -x_35 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__8; +x_35 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__8; x_36 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_36, 0, x_35); lean_ctor_set(x_36, 1, x_34); x_37 = lean_array_push(x_20, x_36); -x_38 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__24; +x_38 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__24; lean_inc(x_12); lean_inc(x_13); x_39 = l_Lean_addMacroScope(x_13, x_38, x_12); -x_40 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__22; -x_41 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__27; +x_40 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__22; +x_41 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__27; x_42 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_42, 0, x_16); lean_ctor_set(x_42, 1, x_40); @@ -4269,10 +4212,10 @@ x_56 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_56, 0, x_35); lean_ctor_set(x_56, 1, x_55); x_57 = lean_array_push(x_37, x_56); -x_58 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__32; +x_58 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__32; x_59 = l_Lean_addMacroScope(x_13, x_58, x_12); -x_60 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__30; -x_61 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__36; +x_60 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__30; +x_61 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__36; x_62 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_62, 0, x_16); lean_ctor_set(x_62, 1, x_60); @@ -4306,13 +4249,13 @@ x_77 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_77, 0, x_24); lean_ctor_set(x_77, 1, x_76); x_78 = lean_array_push(x_20, x_77); -x_79 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__6; +x_79 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__6; x_80 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_80, 0, x_79); lean_ctor_set(x_80, 1, x_78); -x_81 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__4; +x_81 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__4; x_82 = lean_array_push(x_81, x_80); -x_83 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__2; +x_83 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__2; x_84 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_84, 0, x_83); lean_ctor_set(x_84, 1, x_82); @@ -4323,7 +4266,7 @@ return x_85; } } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__1() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__1() { _start: { lean_object* x_1; @@ -4331,17 +4274,17 @@ x_1 = lean_alloc_closure((void*)(l_Lean_Parser_group), 1, 0); return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__2() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__1; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__1; x_2 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__3() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__3() { _start: { lean_object* x_1; @@ -4349,17 +4292,17 @@ x_1 = lean_alloc_closure((void*)(l_Lean_Parser_group_formatter), 6, 0); return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__4() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__4() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__3; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__3; x_2 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__5() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__5() { _start: { lean_object* x_1; @@ -4367,17 +4310,17 @@ x_1 = lean_alloc_closure((void*)(l_Lean_Parser_group_parenthesizer), 6, 0); return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__6() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__6() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__5; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__5; x_2 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__7() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__7() { _start: { lean_object* x_1; @@ -4385,17 +4328,17 @@ x_1 = lean_mk_string("ppHardSpace"); return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__8() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__7; +x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__7; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__9() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__9() { _start: { lean_object* x_1; lean_object* x_2; @@ -4405,7 +4348,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__10() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__10() { _start: { lean_object* x_1; @@ -4413,17 +4356,17 @@ x_1 = lean_alloc_closure((void*)(l_Lean_ppHardSpace_formatter___boxed), 5, 0); return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__11() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__11() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__10; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__10; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__12() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__12() { _start: { lean_object* x_1; @@ -4431,17 +4374,17 @@ x_1 = lean_alloc_closure((void*)(l_Lean_Parser_ppHardSpace_parenthesizer___boxed return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__13() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__13() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__12; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__12; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__14() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__14() { _start: { lean_object* x_1; @@ -4449,17 +4392,17 @@ x_1 = lean_mk_string("ppSpace"); return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__15() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__15() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__14; +x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__14; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__16() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__16() { _start: { lean_object* x_1; @@ -4467,17 +4410,17 @@ x_1 = lean_alloc_closure((void*)(l_Lean_ppSpace_formatter___boxed), 5, 0); return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__17() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__17() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__16; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__16; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__18() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__18() { _start: { lean_object* x_1; @@ -4485,17 +4428,17 @@ x_1 = lean_alloc_closure((void*)(l_Lean_Parser_ppSpace_parenthesizer___boxed), 4 return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__19() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__19() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__18; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__18; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__20() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__20() { _start: { lean_object* x_1; @@ -4503,17 +4446,17 @@ x_1 = lean_mk_string("ppLine"); return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__21() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__21() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__20; +x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__20; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__22() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__22() { _start: { lean_object* x_1; @@ -4521,17 +4464,17 @@ x_1 = lean_alloc_closure((void*)(l_Lean_ppLine_formatter___boxed), 5, 0); return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__23() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__23() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__22; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__22; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__24() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__24() { _start: { lean_object* x_1; @@ -4539,17 +4482,17 @@ x_1 = lean_alloc_closure((void*)(l_Lean_Parser_ppLine_parenthesizer___boxed), 4, return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__25() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__25() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__24; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__24; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__26() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__26() { _start: { lean_object* x_1; @@ -4557,17 +4500,17 @@ x_1 = lean_mk_string("ppGroup"); return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__27() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__27() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__26; +x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__26; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__28() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__28() { _start: { lean_object* x_1; @@ -4575,17 +4518,17 @@ x_1 = lean_alloc_closure((void*)(l_Lean_Parser_ppGroup___boxed), 1, 0); return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__29() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__29() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__28; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__28; x_2 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__30() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__30() { _start: { lean_object* x_1; @@ -4593,17 +4536,17 @@ x_1 = lean_alloc_closure((void*)(l_Lean_ppGroup_formatter), 6, 0); return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__31() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__31() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__30; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__30; x_2 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__32() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__32() { _start: { lean_object* x_1; @@ -4611,17 +4554,17 @@ x_1 = lean_alloc_closure((void*)(l_Lean_Parser_ppGroup_parenthesizer), 6, 0); return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__33() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__33() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__32; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__32; x_2 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__34() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__34() { _start: { lean_object* x_1; @@ -4629,17 +4572,17 @@ x_1 = lean_mk_string("ppIndent"); return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__35() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__35() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__34; +x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__34; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__36() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__36() { _start: { lean_object* x_1; @@ -4647,17 +4590,17 @@ x_1 = lean_alloc_closure((void*)(l_Lean_Parser_ppIndent___boxed), 1, 0); return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__37() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__37() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__36; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__36; x_2 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__38() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__38() { _start: { lean_object* x_1; @@ -4665,17 +4608,17 @@ x_1 = lean_alloc_closure((void*)(l_Lean_ppIndent_formatter), 6, 0); return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__39() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__39() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__38; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__38; x_2 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__40() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__40() { _start: { lean_object* x_1; @@ -4683,17 +4626,17 @@ x_1 = lean_alloc_closure((void*)(l_Lean_Parser_ppIndent_parenthesizer), 6, 0); return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__41() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__41() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__40; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__40; x_2 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__42() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__42() { _start: { lean_object* x_1; @@ -4701,17 +4644,17 @@ x_1 = lean_mk_string("ppDedent"); return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__43() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__43() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__42; +x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__42; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__44() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__44() { _start: { lean_object* x_1; @@ -4719,17 +4662,17 @@ x_1 = lean_alloc_closure((void*)(l_Lean_Parser_ppDedent___boxed), 1, 0); return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__45() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__45() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__44; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__44; x_2 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__46() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__46() { _start: { lean_object* x_1; @@ -4737,17 +4680,17 @@ x_1 = lean_alloc_closure((void*)(l_Lean_ppDedent_formatter), 6, 0); return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__47() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__47() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__46; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__46; x_2 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__48() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__48() { _start: { lean_object* x_1; @@ -4755,23 +4698,23 @@ x_1 = lean_alloc_closure((void*)(l_Lean_Parser_ppDedent_parenthesizer), 6, 0); return x_1; } } -static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__49() { +static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__49() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__48; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__48; x_2 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646_(lean_object* x_1) { +lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637_(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_parserAliasesRef; x_3 = l_Lean_Parser_Tactic_letrec___closed__4; -x_4 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__2; +x_4 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__2; x_5 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_3, x_4, x_1); if (lean_obj_tag(x_5) == 0) { @@ -4780,7 +4723,7 @@ x_6 = lean_ctor_get(x_5, 1); lean_inc(x_6); lean_dec(x_5); x_7 = l_Lean_PrettyPrinter_Formatter_formatterAliasesRef; -x_8 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__4; +x_8 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__4; x_9 = l_Lean_Parser_registerAliasCore___rarg(x_7, x_3, x_8, x_6); if (lean_obj_tag(x_9) == 0) { @@ -4789,7 +4732,7 @@ x_10 = lean_ctor_get(x_9, 1); lean_inc(x_10); lean_dec(x_9); x_11 = l_Lean_PrettyPrinter_Parenthesizer_parenthesizerAliasesRef; -x_12 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__6; +x_12 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__6; x_13 = l_Lean_Parser_registerAliasCore___rarg(x_11, x_3, x_12, x_10); if (lean_obj_tag(x_13) == 0) { @@ -4797,8 +4740,8 @@ lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; x_14 = lean_ctor_get(x_13, 1); lean_inc(x_14); lean_dec(x_13); -x_15 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__8; -x_16 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__9; +x_15 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__8; +x_16 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__9; x_17 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_15, x_16, x_14); if (lean_obj_tag(x_17) == 0) { @@ -4806,7 +4749,7 @@ lean_object* x_18; lean_object* x_19; lean_object* x_20; x_18 = lean_ctor_get(x_17, 1); lean_inc(x_18); lean_dec(x_17); -x_19 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__11; +x_19 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__11; x_20 = l_Lean_Parser_registerAliasCore___rarg(x_7, x_15, x_19, x_18); if (lean_obj_tag(x_20) == 0) { @@ -4814,7 +4757,7 @@ lean_object* x_21; lean_object* x_22; lean_object* x_23; x_21 = lean_ctor_get(x_20, 1); lean_inc(x_21); lean_dec(x_20); -x_22 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__13; +x_22 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__13; x_23 = l_Lean_Parser_registerAliasCore___rarg(x_11, x_15, x_22, x_21); if (lean_obj_tag(x_23) == 0) { @@ -4822,7 +4765,7 @@ lean_object* x_24; lean_object* x_25; lean_object* x_26; x_24 = lean_ctor_get(x_23, 1); lean_inc(x_24); lean_dec(x_23); -x_25 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__15; +x_25 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__15; x_26 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_25, x_16, x_24); if (lean_obj_tag(x_26) == 0) { @@ -4830,7 +4773,7 @@ lean_object* x_27; lean_object* x_28; lean_object* x_29; x_27 = lean_ctor_get(x_26, 1); lean_inc(x_27); lean_dec(x_26); -x_28 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__17; +x_28 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__17; x_29 = l_Lean_Parser_registerAliasCore___rarg(x_7, x_25, x_28, x_27); if (lean_obj_tag(x_29) == 0) { @@ -4838,7 +4781,7 @@ lean_object* x_30; lean_object* x_31; lean_object* x_32; x_30 = lean_ctor_get(x_29, 1); lean_inc(x_30); lean_dec(x_29); -x_31 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__19; +x_31 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__19; x_32 = l_Lean_Parser_registerAliasCore___rarg(x_11, x_25, x_31, x_30); if (lean_obj_tag(x_32) == 0) { @@ -4846,7 +4789,7 @@ lean_object* x_33; lean_object* x_34; lean_object* x_35; x_33 = lean_ctor_get(x_32, 1); lean_inc(x_33); lean_dec(x_32); -x_34 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__21; +x_34 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__21; x_35 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_34, x_16, x_33); if (lean_obj_tag(x_35) == 0) { @@ -4854,7 +4797,7 @@ lean_object* x_36; lean_object* x_37; lean_object* x_38; x_36 = lean_ctor_get(x_35, 1); lean_inc(x_36); lean_dec(x_35); -x_37 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__23; +x_37 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__23; x_38 = l_Lean_Parser_registerAliasCore___rarg(x_7, x_34, x_37, x_36); if (lean_obj_tag(x_38) == 0) { @@ -4862,7 +4805,7 @@ lean_object* x_39; lean_object* x_40; lean_object* x_41; x_39 = lean_ctor_get(x_38, 1); lean_inc(x_39); lean_dec(x_38); -x_40 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__25; +x_40 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__25; x_41 = l_Lean_Parser_registerAliasCore___rarg(x_11, x_34, x_40, x_39); if (lean_obj_tag(x_41) == 0) { @@ -4870,8 +4813,8 @@ lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; x_42 = lean_ctor_get(x_41, 1); lean_inc(x_42); lean_dec(x_41); -x_43 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__27; -x_44 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__29; +x_43 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__27; +x_44 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__29; x_45 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_43, x_44, x_42); if (lean_obj_tag(x_45) == 0) { @@ -4879,7 +4822,7 @@ lean_object* x_46; lean_object* x_47; lean_object* x_48; x_46 = lean_ctor_get(x_45, 1); lean_inc(x_46); lean_dec(x_45); -x_47 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__31; +x_47 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__31; x_48 = l_Lean_Parser_registerAliasCore___rarg(x_7, x_43, x_47, x_46); if (lean_obj_tag(x_48) == 0) { @@ -4887,7 +4830,7 @@ lean_object* x_49; lean_object* x_50; lean_object* x_51; x_49 = lean_ctor_get(x_48, 1); lean_inc(x_49); lean_dec(x_48); -x_50 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__33; +x_50 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__33; x_51 = l_Lean_Parser_registerAliasCore___rarg(x_11, x_43, x_50, x_49); if (lean_obj_tag(x_51) == 0) { @@ -4895,8 +4838,8 @@ lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; x_52 = lean_ctor_get(x_51, 1); lean_inc(x_52); lean_dec(x_51); -x_53 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__35; -x_54 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__37; +x_53 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__35; +x_54 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__37; x_55 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_53, x_54, x_52); if (lean_obj_tag(x_55) == 0) { @@ -4904,7 +4847,7 @@ lean_object* x_56; lean_object* x_57; lean_object* x_58; x_56 = lean_ctor_get(x_55, 1); lean_inc(x_56); lean_dec(x_55); -x_57 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__39; +x_57 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__39; x_58 = l_Lean_Parser_registerAliasCore___rarg(x_7, x_53, x_57, x_56); if (lean_obj_tag(x_58) == 0) { @@ -4912,7 +4855,7 @@ lean_object* x_59; lean_object* x_60; lean_object* x_61; x_59 = lean_ctor_get(x_58, 1); lean_inc(x_59); lean_dec(x_58); -x_60 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__41; +x_60 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__41; x_61 = l_Lean_Parser_registerAliasCore___rarg(x_11, x_53, x_60, x_59); if (lean_obj_tag(x_61) == 0) { @@ -4920,8 +4863,8 @@ lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; x_62 = lean_ctor_get(x_61, 1); lean_inc(x_62); lean_dec(x_61); -x_63 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__43; -x_64 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__45; +x_63 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__43; +x_64 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__45; x_65 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_63, x_64, x_62); if (lean_obj_tag(x_65) == 0) { @@ -4929,7 +4872,7 @@ lean_object* x_66; lean_object* x_67; lean_object* x_68; x_66 = lean_ctor_get(x_65, 1); lean_inc(x_66); lean_dec(x_65); -x_67 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__47; +x_67 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__47; x_68 = l_Lean_Parser_registerAliasCore___rarg(x_7, x_63, x_67, x_66); if (lean_obj_tag(x_68) == 0) { @@ -4937,7 +4880,7 @@ lean_object* x_69; lean_object* x_70; lean_object* x_71; x_69 = lean_ctor_get(x_68, 1); lean_inc(x_69); lean_dec(x_68); -x_70 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__49; +x_70 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__49; x_71 = l_Lean_Parser_registerAliasCore___rarg(x_11, x_63, x_70, x_69); return x_71; } @@ -5402,7 +5345,7 @@ return x_151; } } } -static lean_object* _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__1() { +static lean_object* _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__1() { _start: { lean_object* x_1; @@ -5410,17 +5353,17 @@ x_1 = lean_alloc_closure((void*)(l_Lean_Parser_numLit_parenthesizer), 5, 0); return x_1; } } -static lean_object* _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__2() { +static lean_object* _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__1; +x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__1; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__3() { +static lean_object* _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__3() { _start: { lean_object* x_1; @@ -5428,17 +5371,17 @@ x_1 = lean_mk_string("scientific"); return x_1; } } -static lean_object* _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__4() { +static lean_object* _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__3; +x_2 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__3; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__5() { +static lean_object* _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__5() { _start: { lean_object* x_1; @@ -5446,17 +5389,17 @@ x_1 = lean_alloc_closure((void*)(l_Lean_Parser_scientificLit_parenthesizer), 5, return x_1; } } -static lean_object* _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__6() { +static lean_object* _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__6() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__5; +x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__5; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__7() { +static lean_object* _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__7() { _start: { lean_object* x_1; @@ -5464,17 +5407,17 @@ x_1 = lean_mk_string("str"); return x_1; } } -static lean_object* _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__8() { +static lean_object* _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__7; +x_2 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__7; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__9() { +static lean_object* _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__9() { _start: { lean_object* x_1; @@ -5482,17 +5425,17 @@ x_1 = lean_alloc_closure((void*)(l_Lean_Parser_strLit_parenthesizer), 5, 0); return x_1; } } -static lean_object* _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__10() { +static lean_object* _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__10() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__9; +x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__9; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__11() { +static lean_object* _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__11() { _start: { lean_object* x_1; @@ -5500,17 +5443,17 @@ x_1 = lean_mk_string("char"); return x_1; } } -static lean_object* _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__12() { +static lean_object* _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__12() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__11; +x_2 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__11; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__13() { +static lean_object* _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__13() { _start: { lean_object* x_1; @@ -5518,17 +5461,17 @@ x_1 = lean_alloc_closure((void*)(l_Lean_Parser_charLit_parenthesizer), 5, 0); return x_1; } } -static lean_object* _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__14() { +static lean_object* _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__14() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__13; +x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__13; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__15() { +static lean_object* _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__15() { _start: { lean_object* x_1; @@ -5536,17 +5479,17 @@ x_1 = lean_mk_string("name"); return x_1; } } -static lean_object* _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__16() { +static lean_object* _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__16() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__15; +x_2 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__15; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__17() { +static lean_object* _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__17() { _start: { lean_object* x_1; @@ -5554,17 +5497,17 @@ x_1 = lean_alloc_closure((void*)(l_Lean_Parser_nameLit_parenthesizer), 5, 0); return x_1; } } -static lean_object* _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__18() { +static lean_object* _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__18() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__17; +x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__17; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__19() { +static lean_object* _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__19() { _start: { lean_object* x_1; @@ -5572,17 +5515,17 @@ x_1 = lean_alloc_closure((void*)(l_Lean_Parser_ident_parenthesizer), 5, 0); return x_1; } } -static lean_object* _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__20() { +static lean_object* _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__20() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__19; +x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__19; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__21() { +static lean_object* _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__21() { _start: { lean_object* x_1; @@ -5590,17 +5533,17 @@ x_1 = lean_alloc_closure((void*)(l_Lean_Parser_many_parenthesizer), 6, 0); return x_1; } } -static lean_object* _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__22() { +static lean_object* _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__22() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__21; +x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__21; x_2 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__23() { +static lean_object* _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__23() { _start: { lean_object* x_1; @@ -5608,17 +5551,17 @@ x_1 = lean_alloc_closure((void*)(l_Lean_Parser_many1_parenthesizer), 6, 0); return x_1; } } -static lean_object* _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__24() { +static lean_object* _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__24() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__23; +x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__23; x_2 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__25() { +static lean_object* _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__25() { _start: { lean_object* x_1; @@ -5626,23 +5569,23 @@ x_1 = lean_alloc_closure((void*)(l_Lean_Parser_optional_parenthesizer), 6, 0); return x_1; } } -static lean_object* _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__26() { +static lean_object* _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__26() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__25; +x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__25; x_2 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870_(lean_object* x_1) { +lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_2 = l_Lean_PrettyPrinter_Parenthesizer_parenthesizerAliasesRef; x_3 = l_rawNatLit___closed__6; -x_4 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__2; +x_4 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__2; x_5 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_3, x_4, x_1); if (lean_obj_tag(x_5) == 0) { @@ -5650,8 +5593,8 @@ lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; x_6 = lean_ctor_get(x_5, 1); lean_inc(x_6); lean_dec(x_5); -x_7 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__4; -x_8 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__6; +x_7 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__4; +x_8 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__6; x_9 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_7, x_8, x_6); if (lean_obj_tag(x_9) == 0) { @@ -5659,8 +5602,8 @@ lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; x_10 = lean_ctor_get(x_9, 1); lean_inc(x_10); lean_dec(x_9); -x_11 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__8; -x_12 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__10; +x_11 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__8; +x_12 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__10; x_13 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_11, x_12, x_10); if (lean_obj_tag(x_13) == 0) { @@ -5668,8 +5611,8 @@ lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; x_14 = lean_ctor_get(x_13, 1); lean_inc(x_14); lean_dec(x_13); -x_15 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__12; -x_16 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__14; +x_15 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__12; +x_16 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__14; x_17 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_15, x_16, x_14); if (lean_obj_tag(x_17) == 0) { @@ -5677,8 +5620,8 @@ lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; x_18 = lean_ctor_get(x_17, 1); lean_inc(x_18); lean_dec(x_17); -x_19 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__16; -x_20 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__18; +x_19 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__16; +x_20 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__18; x_21 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_19, x_20, x_18); if (lean_obj_tag(x_21) == 0) { @@ -5687,7 +5630,7 @@ x_22 = lean_ctor_get(x_21, 1); lean_inc(x_22); lean_dec(x_21); x_23 = l_Lean_identKind___closed__2; -x_24 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__20; +x_24 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__20; x_25 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_23, x_24, x_22); if (lean_obj_tag(x_25) == 0) { @@ -5696,7 +5639,7 @@ x_26 = lean_ctor_get(x_25, 1); lean_inc(x_26); lean_dec(x_25); x_27 = l_myMacro____x40_Init_Notation___hyg_158____closed__4; -x_28 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__22; +x_28 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__22; x_29 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_27, x_28, x_26); if (lean_obj_tag(x_29) == 0) { @@ -5705,7 +5648,7 @@ x_30 = lean_ctor_get(x_29, 1); lean_inc(x_30); lean_dec(x_29); x_31 = l_myMacro____x40_Init_Notation___hyg_49____closed__12; -x_32 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__24; +x_32 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__24; x_33 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_31, x_32, x_30); if (lean_obj_tag(x_33) == 0) { @@ -5714,7 +5657,7 @@ x_34 = lean_ctor_get(x_33, 1); lean_inc(x_34); lean_dec(x_33); x_35 = l_myMacro____x40_Init_Notation___hyg_267____closed__4; -x_36 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__26; +x_36 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__26; x_37 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_35, x_36, x_34); return x_37; } @@ -5903,7 +5846,7 @@ return x_69; } } } -static lean_object* _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__1() { +static lean_object* _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__1() { _start: { lean_object* x_1; @@ -5911,17 +5854,17 @@ x_1 = lean_alloc_closure((void*)(l_Lean_Parser_numLit_formatter), 5, 0); return x_1; } } -static lean_object* _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__2() { +static lean_object* _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__1; +x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__1; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__3() { +static lean_object* _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__3() { _start: { lean_object* x_1; @@ -5929,17 +5872,17 @@ x_1 = lean_alloc_closure((void*)(l_Lean_Parser_scientificLit_formatter), 5, 0); return x_1; } } -static lean_object* _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__4() { +static lean_object* _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__4() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__3; +x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__3; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__5() { +static lean_object* _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__5() { _start: { lean_object* x_1; @@ -5947,17 +5890,17 @@ x_1 = lean_alloc_closure((void*)(l_Lean_Parser_strLit_formatter), 5, 0); return x_1; } } -static lean_object* _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__6() { +static lean_object* _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__6() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__5; +x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__5; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__7() { +static lean_object* _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__7() { _start: { lean_object* x_1; @@ -5965,17 +5908,17 @@ x_1 = lean_alloc_closure((void*)(l_Lean_Parser_charLit_formatter), 5, 0); return x_1; } } -static lean_object* _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__8() { +static lean_object* _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__8() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__7; +x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__7; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__9() { +static lean_object* _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__9() { _start: { lean_object* x_1; @@ -5983,17 +5926,17 @@ x_1 = lean_alloc_closure((void*)(l_Lean_Parser_nameLit_formatter), 5, 0); return x_1; } } -static lean_object* _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__10() { +static lean_object* _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__10() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__9; +x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__9; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__11() { +static lean_object* _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__11() { _start: { lean_object* x_1; @@ -6001,17 +5944,17 @@ x_1 = lean_alloc_closure((void*)(l_Lean_Parser_ident_formatter), 5, 0); return x_1; } } -static lean_object* _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__12() { +static lean_object* _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__12() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__11; +x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__11; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__13() { +static lean_object* _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__13() { _start: { lean_object* x_1; @@ -6019,17 +5962,17 @@ x_1 = lean_alloc_closure((void*)(l_Lean_Parser_many_formatter), 6, 0); return x_1; } } -static lean_object* _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__14() { +static lean_object* _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__14() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__13; +x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__13; x_2 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__15() { +static lean_object* _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__15() { _start: { lean_object* x_1; @@ -6037,17 +5980,17 @@ x_1 = lean_alloc_closure((void*)(l_Lean_Parser_many1_formatter), 6, 0); return x_1; } } -static lean_object* _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__16() { +static lean_object* _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__16() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__15; +x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__15; x_2 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__17() { +static lean_object* _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__17() { _start: { lean_object* x_1; @@ -6055,23 +5998,23 @@ x_1 = lean_alloc_closure((void*)(l_Lean_Parser_optional_formatter), 6, 0); return x_1; } } -static lean_object* _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__18() { +static lean_object* _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__18() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__17; +x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__17; x_2 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957_(lean_object* x_1) { +lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_2 = l_Lean_PrettyPrinter_Formatter_formatterAliasesRef; x_3 = l_rawNatLit___closed__6; -x_4 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__2; +x_4 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__2; x_5 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_3, x_4, x_1); if (lean_obj_tag(x_5) == 0) { @@ -6079,8 +6022,8 @@ lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; x_6 = lean_ctor_get(x_5, 1); lean_inc(x_6); lean_dec(x_5); -x_7 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__4; -x_8 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__4; +x_7 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__4; +x_8 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__4; x_9 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_7, x_8, x_6); if (lean_obj_tag(x_9) == 0) { @@ -6088,8 +6031,8 @@ lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; x_10 = lean_ctor_get(x_9, 1); lean_inc(x_10); lean_dec(x_9); -x_11 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__8; -x_12 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__6; +x_11 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__8; +x_12 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__6; x_13 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_11, x_12, x_10); if (lean_obj_tag(x_13) == 0) { @@ -6097,8 +6040,8 @@ lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; x_14 = lean_ctor_get(x_13, 1); lean_inc(x_14); lean_dec(x_13); -x_15 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__12; -x_16 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__8; +x_15 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__12; +x_16 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__8; x_17 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_15, x_16, x_14); if (lean_obj_tag(x_17) == 0) { @@ -6106,8 +6049,8 @@ lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; x_18 = lean_ctor_get(x_17, 1); lean_inc(x_18); lean_dec(x_17); -x_19 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__16; -x_20 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__10; +x_19 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__16; +x_20 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__10; x_21 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_19, x_20, x_18); if (lean_obj_tag(x_21) == 0) { @@ -6116,7 +6059,7 @@ x_22 = lean_ctor_get(x_21, 1); lean_inc(x_22); lean_dec(x_21); x_23 = l_Lean_identKind___closed__2; -x_24 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__12; +x_24 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__12; x_25 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_23, x_24, x_22); if (lean_obj_tag(x_25) == 0) { @@ -6125,7 +6068,7 @@ x_26 = lean_ctor_get(x_25, 1); lean_inc(x_26); lean_dec(x_25); x_27 = l_myMacro____x40_Init_Notation___hyg_158____closed__4; -x_28 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__14; +x_28 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__14; x_29 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_27, x_28, x_26); if (lean_obj_tag(x_29) == 0) { @@ -6134,7 +6077,7 @@ x_30 = lean_ctor_get(x_29, 1); lean_inc(x_30); lean_dec(x_29); x_31 = l_myMacro____x40_Init_Notation___hyg_49____closed__12; -x_32 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__16; +x_32 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__16; x_33 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_31, x_32, x_30); if (lean_obj_tag(x_33) == 0) { @@ -6143,7 +6086,7 @@ x_34 = lean_ctor_get(x_33, 1); lean_inc(x_34); lean_dec(x_33); x_35 = l_myMacro____x40_Init_Notation___hyg_267____closed__4; -x_36 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__18; +x_36 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__18; x_37 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_35, x_36, x_34); return x_37; } @@ -6389,12 +6332,6 @@ l_Lean_Parser_mkAntiquot_formatter___closed__8 = _init_l_Lean_Parser_mkAntiquot_ lean_mark_persistent(l_Lean_Parser_mkAntiquot_formatter___closed__8); l_Lean_Parser_mkAntiquot_formatter___closed__9 = _init_l_Lean_Parser_mkAntiquot_formatter___closed__9(); lean_mark_persistent(l_Lean_Parser_mkAntiquot_formatter___closed__9); -l_Lean_Parser_mkAntiquot_formatter___closed__10 = _init_l_Lean_Parser_mkAntiquot_formatter___closed__10(); -lean_mark_persistent(l_Lean_Parser_mkAntiquot_formatter___closed__10); -l_Lean_Parser_mkAntiquot_formatter___closed__11 = _init_l_Lean_Parser_mkAntiquot_formatter___closed__11(); -lean_mark_persistent(l_Lean_Parser_mkAntiquot_formatter___closed__11); -l_Lean_Parser_mkAntiquot_formatter___closed__12 = _init_l_Lean_Parser_mkAntiquot_formatter___closed__12(); -lean_mark_persistent(l_Lean_Parser_mkAntiquot_formatter___closed__12); l_Lean_Parser_antiquotNestedExpr_parenthesizer___closed__1 = _init_l_Lean_Parser_antiquotNestedExpr_parenthesizer___closed__1(); lean_mark_persistent(l_Lean_Parser_antiquotNestedExpr_parenthesizer___closed__1); l_Lean_Parser_antiquotNestedExpr_parenthesizer___closed__2 = _init_l_Lean_Parser_antiquotNestedExpr_parenthesizer___closed__2(); @@ -6453,12 +6390,6 @@ l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__21 = _init_l_Lean_Parser lean_mark_persistent(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__21); l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__22 = _init_l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__22(); lean_mark_persistent(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__22); -l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__23 = _init_l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__23(); -lean_mark_persistent(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__23); -l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__24 = _init_l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__24(); -lean_mark_persistent(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__24); -l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__25 = _init_l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__25(); -lean_mark_persistent(l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__25); l_Lean_Parser_mkAntiquotScope_formatter___closed__1 = _init_l_Lean_Parser_mkAntiquotScope_formatter___closed__1(); lean_mark_persistent(l_Lean_Parser_mkAntiquotScope_formatter___closed__1); l_Lean_Parser_mkAntiquotScope_formatter___closed__2 = _init_l_Lean_Parser_mkAntiquotScope_formatter___closed__2(); @@ -6473,8 +6404,16 @@ l_Lean_Parser_optional___closed__3 = _init_l_Lean_Parser_optional___closed__3(); lean_mark_persistent(l_Lean_Parser_optional___closed__3); l_Lean_Parser_optional___closed__4 = _init_l_Lean_Parser_optional___closed__4(); lean_mark_persistent(l_Lean_Parser_optional___closed__4); +l_Lean_Parser_many_formatter___closed__1 = _init_l_Lean_Parser_many_formatter___closed__1(); +lean_mark_persistent(l_Lean_Parser_many_formatter___closed__1); l_Lean_Parser_many___closed__1 = _init_l_Lean_Parser_many___closed__1(); lean_mark_persistent(l_Lean_Parser_many___closed__1); +l_Lean_Parser_many___closed__2 = _init_l_Lean_Parser_many___closed__2(); +lean_mark_persistent(l_Lean_Parser_many___closed__2); +l_Lean_Parser_many___closed__3 = _init_l_Lean_Parser_many___closed__3(); +lean_mark_persistent(l_Lean_Parser_many___closed__3); +l_Lean_Parser_many___closed__4 = _init_l_Lean_Parser_many___closed__4(); +lean_mark_persistent(l_Lean_Parser_many___closed__4); l_Lean_Parser_ident_formatter___closed__1 = _init_l_Lean_Parser_ident_formatter___closed__1(); lean_mark_persistent(l_Lean_Parser_ident_formatter___closed__1); l_Lean_Parser_ident_formatter___closed__2 = _init_l_Lean_Parser_ident_formatter___closed__2(); @@ -6635,271 +6574,271 @@ l_Lean_Parser_termRegisterParserAlias_x21_________closed__9 = _init_l_Lean_Parse lean_mark_persistent(l_Lean_Parser_termRegisterParserAlias_x21_________closed__9); l_Lean_Parser_termRegisterParserAlias_x21______ = _init_l_Lean_Parser_termRegisterParserAlias_x21______(); lean_mark_persistent(l_Lean_Parser_termRegisterParserAlias_x21______); -l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__1 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__1(); -lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__1); -l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__2 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__2(); -lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__2); -l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__3 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__3(); -lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__3); -l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__4 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__4(); -lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__4); -l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__5 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__5(); -lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__5); -l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__6 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__6(); -lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__6); -l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__7 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__7(); -lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__7); -l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__8 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__8(); -lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__8); -l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__9 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__9(); -lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__9); -l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__10 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__10(); -lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__10); -l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__11 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__11(); -lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__11); -l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__12 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__12(); -lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__12); -l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__13 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__13(); -lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__13); -l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__14 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__14(); -lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__14); -l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__15 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__15(); -lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__15); -l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__16 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__16(); -lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__16); -l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__17 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__17(); -lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__17); -l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__18 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__18(); -lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__18); -l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__19 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__19(); -lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__19); -l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__20 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__20(); -lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__20); -l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__21 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__21(); -lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__21); -l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__22 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__22(); -lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__22); -l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__23 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__23(); -lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__23); -l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__24 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__24(); -lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__24); -l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__25 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__25(); -lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__25); -l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__26 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__26(); -lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__26); -l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__27 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__27(); -lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__27); -l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__28 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__28(); -lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__28); -l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__29 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__29(); -lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__29); -l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__30 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__30(); -lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__30); -l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__31 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__31(); -lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__31); -l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__32 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__32(); -lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__32); -l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__33 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__33(); -lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__33); -l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__34 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__34(); -lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__34); -l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__35 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__35(); -lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__35); -l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__36 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__36(); -lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__36); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__1 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__1(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__1); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__2 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__2(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__2); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__3 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__3(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__3); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__4 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__4(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__4); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__5 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__5(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__5); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__6 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__6(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__6); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__7 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__7(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__7); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__8 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__8(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__8); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__9 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__9(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__9); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__10 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__10(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__10); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__11 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__11(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__11); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__12 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__12(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__12); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__13 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__13(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__13); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__14 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__14(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__14); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__15 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__15(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__15); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__16 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__16(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__16); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__17 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__17(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__17); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__18 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__18(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__18); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__19 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__19(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__19); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__20 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__20(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__20); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__21 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__21(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__21); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__22 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__22(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__22); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__23 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__23(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__23); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__24 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__24(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__24); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__25 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__25(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__25); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__26 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__26(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__26); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__27 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__27(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__27); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__28 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__28(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__28); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__29 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__29(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__29); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__30 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__30(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__30); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__31 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__31(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__31); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__32 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__32(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__32); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__33 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__33(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__33); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__34 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__34(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__34); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__35 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__35(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__35); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__36 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__36(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__36); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__37 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__37(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__37); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__38 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__38(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__38); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__39 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__39(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__39); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__40 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__40(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__40); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__41 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__41(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__41); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__42 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__42(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__42); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__43 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__43(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__43); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__44 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__44(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__44); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__45 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__45(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__45); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__46 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__46(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__46); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__47 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__47(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__47); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__48 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__48(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__48); -l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__49 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__49(); -lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__49); -res = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646_(lean_io_mk_world()); +l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__1 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__1(); +lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__1); +l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__2 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__2(); +lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__2); +l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__3 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__3(); +lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__3); +l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__4 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__4(); +lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__4); +l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__5 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__5(); +lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__5); +l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__6 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__6(); +lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__6); +l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__7 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__7(); +lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__7); +l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__8 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__8(); +lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__8); +l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__9 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__9(); +lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__9); +l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__10 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__10(); +lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__10); +l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__11 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__11(); +lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__11); +l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__12 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__12(); +lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__12); +l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__13 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__13(); +lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__13); +l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__14 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__14(); +lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__14); +l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__15 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__15(); +lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__15); +l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__16 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__16(); +lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__16); +l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__17 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__17(); +lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__17); +l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__18 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__18(); +lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__18); +l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__19 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__19(); +lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__19); +l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__20 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__20(); +lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__20); +l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__21 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__21(); +lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__21); +l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__22 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__22(); +lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__22); +l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__23 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__23(); +lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__23); +l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__24 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__24(); +lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__24); +l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__25 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__25(); +lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__25); +l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__26 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__26(); +lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__26); +l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__27 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__27(); +lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__27); +l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__28 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__28(); +lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__28); +l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__29 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__29(); +lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__29); +l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__30 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__30(); +lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__30); +l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__31 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__31(); +lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__31); +l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__32 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__32(); +lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__32); +l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__33 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__33(); +lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__33); +l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__34 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__34(); +lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__34); +l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__35 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__35(); +lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__35); +l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__36 = _init_l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__36(); +lean_mark_persistent(l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__36); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__1 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__1(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__1); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__2 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__2(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__2); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__3 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__3(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__3); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__4 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__4(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__4); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__5 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__5(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__5); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__6 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__6(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__6); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__7 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__7(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__7); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__8 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__8(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__8); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__9 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__9(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__9); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__10 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__10(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__10); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__11 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__11(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__11); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__12 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__12(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__12); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__13 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__13(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__13); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__14 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__14(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__14); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__15 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__15(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__15); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__16 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__16(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__16); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__17 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__17(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__17); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__18 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__18(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__18); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__19 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__19(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__19); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__20 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__20(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__20); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__21 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__21(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__21); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__22 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__22(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__22); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__23 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__23(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__23); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__24 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__24(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__24); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__25 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__25(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__25); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__26 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__26(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__26); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__27 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__27(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__27); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__28 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__28(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__28); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__29 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__29(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__29); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__30 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__30(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__30); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__31 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__31(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__31); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__32 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__32(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__32); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__33 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__33(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__33); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__34 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__34(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__34); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__35 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__35(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__35); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__36 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__36(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__36); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__37 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__37(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__37); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__38 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__38(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__38); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__39 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__39(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__39); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__40 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__40(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__40); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__41 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__41(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__41); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__42 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__42(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__42); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__43 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__43(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__43); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__44 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__44(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__44); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__45 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__45(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__45); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__46 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__46(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__46); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__47 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__47(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__47); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__48 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__48(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__48); +l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__49 = _init_l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__49(); +lean_mark_persistent(l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__49); +res = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__1 = _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__1(); -lean_mark_persistent(l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__1); -l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__2 = _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__2(); -lean_mark_persistent(l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__2); -l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__3 = _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__3(); -lean_mark_persistent(l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__3); -l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__4 = _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__4(); -lean_mark_persistent(l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__4); -l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__5 = _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__5(); -lean_mark_persistent(l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__5); -l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__6 = _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__6(); -lean_mark_persistent(l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__6); -l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__7 = _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__7(); -lean_mark_persistent(l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__7); -l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__8 = _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__8(); -lean_mark_persistent(l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__8); -l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__9 = _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__9(); -lean_mark_persistent(l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__9); -l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__10 = _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__10(); -lean_mark_persistent(l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__10); -l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__11 = _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__11(); -lean_mark_persistent(l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__11); -l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__12 = _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__12(); -lean_mark_persistent(l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__12); -l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__13 = _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__13(); -lean_mark_persistent(l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__13); -l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__14 = _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__14(); -lean_mark_persistent(l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__14); -l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__15 = _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__15(); -lean_mark_persistent(l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__15); -l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__16 = _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__16(); -lean_mark_persistent(l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__16); -l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__17 = _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__17(); -lean_mark_persistent(l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__17); -l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__18 = _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__18(); -lean_mark_persistent(l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__18); -l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__19 = _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__19(); -lean_mark_persistent(l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__19); -l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__20 = _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__20(); -lean_mark_persistent(l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__20); -l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__21 = _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__21(); -lean_mark_persistent(l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__21); -l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__22 = _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__22(); -lean_mark_persistent(l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__22); -l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__23 = _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__23(); -lean_mark_persistent(l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__23); -l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__24 = _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__24(); -lean_mark_persistent(l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__24); -l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__25 = _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__25(); -lean_mark_persistent(l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__25); -l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__26 = _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__26(); -lean_mark_persistent(l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__26); -res = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870_(lean_io_mk_world()); +l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__1 = _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__1(); +lean_mark_persistent(l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__1); +l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__2 = _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__2(); +lean_mark_persistent(l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__2); +l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__3 = _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__3(); +lean_mark_persistent(l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__3); +l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__4 = _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__4(); +lean_mark_persistent(l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__4); +l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__5 = _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__5(); +lean_mark_persistent(l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__5); +l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__6 = _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__6(); +lean_mark_persistent(l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__6); +l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__7 = _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__7(); +lean_mark_persistent(l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__7); +l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__8 = _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__8(); +lean_mark_persistent(l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__8); +l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__9 = _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__9(); +lean_mark_persistent(l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__9); +l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__10 = _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__10(); +lean_mark_persistent(l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__10); +l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__11 = _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__11(); +lean_mark_persistent(l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__11); +l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__12 = _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__12(); +lean_mark_persistent(l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__12); +l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__13 = _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__13(); +lean_mark_persistent(l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__13); +l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__14 = _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__14(); +lean_mark_persistent(l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__14); +l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__15 = _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__15(); +lean_mark_persistent(l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__15); +l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__16 = _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__16(); +lean_mark_persistent(l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__16); +l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__17 = _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__17(); +lean_mark_persistent(l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__17); +l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__18 = _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__18(); +lean_mark_persistent(l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__18); +l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__19 = _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__19(); +lean_mark_persistent(l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__19); +l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__20 = _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__20(); +lean_mark_persistent(l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__20); +l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__21 = _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__21(); +lean_mark_persistent(l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__21); +l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__22 = _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__22(); +lean_mark_persistent(l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__22); +l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__23 = _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__23(); +lean_mark_persistent(l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__23); +l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__24 = _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__24(); +lean_mark_persistent(l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__24); +l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__25 = _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__25(); +lean_mark_persistent(l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__25); +l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__26 = _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__26(); +lean_mark_persistent(l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__26); +res = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__1 = _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__1(); -lean_mark_persistent(l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__1); -l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__2 = _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__2(); -lean_mark_persistent(l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__2); -l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__3 = _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__3(); -lean_mark_persistent(l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__3); -l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__4 = _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__4(); -lean_mark_persistent(l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__4); -l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__5 = _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__5(); -lean_mark_persistent(l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__5); -l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__6 = _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__6(); -lean_mark_persistent(l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__6); -l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__7 = _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__7(); -lean_mark_persistent(l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__7); -l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__8 = _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__8(); -lean_mark_persistent(l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__8); -l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__9 = _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__9(); -lean_mark_persistent(l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__9); -l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__10 = _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__10(); -lean_mark_persistent(l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__10); -l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__11 = _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__11(); -lean_mark_persistent(l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__11); -l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__12 = _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__12(); -lean_mark_persistent(l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__12); -l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__13 = _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__13(); -lean_mark_persistent(l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__13); -l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__14 = _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__14(); -lean_mark_persistent(l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__14); -l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__15 = _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__15(); -lean_mark_persistent(l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__15); -l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__16 = _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__16(); -lean_mark_persistent(l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__16); -l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__17 = _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__17(); -lean_mark_persistent(l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__17); -l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__18 = _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__18(); -lean_mark_persistent(l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__18); -res = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957_(lean_io_mk_world()); +l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__1 = _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__1(); +lean_mark_persistent(l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__1); +l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__2 = _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__2(); +lean_mark_persistent(l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__2); +l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__3 = _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__3(); +lean_mark_persistent(l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__3); +l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__4 = _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__4(); +lean_mark_persistent(l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__4); +l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__5 = _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__5(); +lean_mark_persistent(l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__5); +l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__6 = _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__6(); +lean_mark_persistent(l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__6); +l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__7 = _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__7(); +lean_mark_persistent(l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__7); +l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__8 = _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__8(); +lean_mark_persistent(l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__8); +l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__9 = _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__9(); +lean_mark_persistent(l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__9); +l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__10 = _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__10(); +lean_mark_persistent(l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__10); +l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__11 = _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__11(); +lean_mark_persistent(l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__11); +l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__12 = _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__12(); +lean_mark_persistent(l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__12); +l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__13 = _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__13(); +lean_mark_persistent(l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__13); +l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__14 = _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__14(); +lean_mark_persistent(l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__14); +l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__15 = _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__15(); +lean_mark_persistent(l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__15); +l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__16 = _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__16(); +lean_mark_persistent(l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__16); +l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__17 = _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__17(); +lean_mark_persistent(l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__17); +l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__18 = _init_l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__18(); +lean_mark_persistent(l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__18); +res = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); return lean_io_result_mk_ok(lean_box(0)); diff --git a/stage0/stdlib/Lean/Parser/Level.c b/stage0/stdlib/Lean/Parser/Level.c index 1f178f9ae2..48c6cf529c 100644 --- a/stage0/stdlib/Lean/Parser/Level.c +++ b/stage0/stdlib/Lean/Parser/Level.c @@ -21,6 +21,7 @@ lean_object* l_Lean_PrettyPrinter_Parenthesizer_categoryParser_parenthesizer(lea lean_object* l_Lean_Parser_andthenInfo(lean_object*, lean_object*); lean_object* l_Lean_Parser_Level_imax_formatter___closed__2; lean_object* l_Lean_Parser_Level_ident___elambda__1(lean_object*, lean_object*); +extern lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__4; lean_object* l_Lean_Parser_Level_addLit___closed__2; lean_object* l_Lean_Parser_Level_num_parenthesizer___closed__1; lean_object* l_Lean_Parser_Level_max_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -89,6 +90,7 @@ lean_object* l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer(lean_objec extern lean_object* l_Lean_Parser_leadingNode_formatter___closed__1; lean_object* l_Lean_PrettyPrinter_Parenthesizer_checkPrec_parenthesizer___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Level_max___elambda__1___closed__2; +extern lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__1; lean_object* l_Lean_Parser_checkPrecFn(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_antiquotNestedExpr___elambda__1___closed__3; lean_object* l_Lean_Parser_Level_addLit_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -106,7 +108,6 @@ lean_object* l_Lean_Parser_Level_addLit_formatter___closed__1; lean_object* l_Lean_Parser_Level_imax___elambda__1___closed__1; lean_object* l_Lean_Parser_Level_ident___closed__3; lean_object* l___regBuiltinParser_Lean_Parser_Level_paren(lean_object*); -extern lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__1; extern lean_object* l_Lean_PrettyPrinter_Parenthesizer_level_parenthesizer___lambda__1___closed__1; lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Level___hyg_4____closed__1; lean_object* l___regBuiltin_Lean_Parser_Level_num_formatter___closed__1; @@ -154,14 +155,12 @@ lean_object* l_Lean_Parser_Level_addLit___closed__5; lean_object* l_Lean_Parser_Level_paren_formatter___closed__1; lean_object* l_Lean_Parser_Level_addLit___closed__3; lean_object* l_Lean_Parser_Level_imax___closed__2; -extern lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__1; lean_object* l_Lean_Parser_Level_num_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Level_paren_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Level_num_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_antiquotNestedExpr_formatter___closed__1; extern lean_object* l_Lean_Parser_antiquotNestedExpr___closed__3; lean_object* l___regBuiltin_Lean_Parser_Level_max_formatter___closed__1; -extern lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__5; lean_object* l_Lean_Parser_Level_paren___closed__4; extern lean_object* l_Lean_Level_LevelToFormat_Result_format___closed__4; lean_object* l_Lean_Parser_Level_imax___elambda__1___closed__3; @@ -183,7 +182,6 @@ lean_object* l_Lean_Parser_Level_paren___elambda__1___closed__3; lean_object* l_Lean_Parser_numLit___elambda__1(lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Parser_Level_hole_parenthesizer___closed__1; lean_object* l_Lean_Parser_Level_hole___closed__6; -extern lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__19; lean_object* l_Lean_Parser_Level_max; lean_object* l_Lean_Parser_Level_num; lean_object* l_Lean_Parser_categoryParser(lean_object*, lean_object*); @@ -207,6 +205,7 @@ lean_object* l_Lean_Parser_Level_hole_parenthesizer___closed__1; lean_object* l_Lean_Parser_Level_paren_formatter___closed__5; lean_object* l_Lean_Parser_levelParser_formatter___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltinParser_Lean_Parser_Level_hole(lean_object*); +extern lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__19; lean_object* l_Lean_Parser_Level_max_formatter___closed__5; lean_object* l_Lean_Parser_Level_hole___closed__1; lean_object* l_Lean_Parser_levelParser_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -220,6 +219,7 @@ lean_object* l_Lean_Parser_Level_imax_parenthesizer___closed__1; lean_object* l___regBuiltinParser_Lean_Parser_Level_ident___closed__1; lean_object* l_Lean_Parser_Level_imax___closed__5; lean_object* l_Lean_Parser_Level_addLit___closed__6; +extern lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__11; lean_object* l_Lean_Parser_Level_addLit___elambda__1___closed__3; lean_object* l___regBuiltin_Lean_Parser_Level_max_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Level_max___elambda__1(lean_object*, lean_object*); @@ -268,6 +268,7 @@ lean_object* l_Lean_PrettyPrinter_Formatter_andthen_formatter(lean_object*, lean lean_object* l_Lean_Parser_Level_addLit___closed__1; lean_object* l_Lean_Parser_Level_max___closed__1; lean_object* l_Lean_Parser_Level_paren___elambda__1___closed__5; +extern lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__1; lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Level_paren___closed__1; lean_object* l_Lean_Parser_Level_paren_parenthesizer___closed__3; @@ -275,7 +276,6 @@ lean_object* l_Lean_Parser_Level_max___closed__2; lean_object* l_Lean_Parser_Level_paren_parenthesizer___closed__4; lean_object* l_Lean_Parser_Level_hole___elambda__1___closed__6; lean_object* l_Lean_PrettyPrinter_Formatter_categoryParser_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__11; lean_object* l_Lean_Parser_andthenFn(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Level_max_parenthesizer___closed__5; static lean_object* _init_l_Lean_Parser_initFn____x40_Lean_Parser_Level___hyg_4____closed__1() { @@ -1110,7 +1110,7 @@ static lean_object* _init_l_Lean_Parser_Level_max_parenthesizer___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__5; +x_1 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__4; x_2 = l_Lean_Parser_Level_max_parenthesizer___closed__3; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -1874,7 +1874,7 @@ _start: { lean_object* x_6; lean_object* x_7; lean_object* x_8; x_6 = l_Lean_Parser_leadingNode_formatter___closed__1; -x_7 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__1; +x_7 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__1; x_8 = l_Lean_PrettyPrinter_Formatter_andthen_formatter(x_6, x_7, x_1, x_2, x_3, x_4, x_5); return x_8; } @@ -1913,7 +1913,7 @@ _start: { lean_object* x_6; lean_object* x_7; lean_object* x_8; x_6 = l_Lean_Parser_Level_num_parenthesizer___closed__1; -x_7 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__1; +x_7 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__1; x_8 = l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer(x_6, x_7, x_1, x_2, x_3, x_4, x_5); return x_8; } @@ -2027,7 +2027,7 @@ _start: { lean_object* x_6; lean_object* x_7; lean_object* x_8; x_6 = l_Lean_Parser_leadingNode_formatter___closed__1; -x_7 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__11; +x_7 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__11; x_8 = l_Lean_PrettyPrinter_Formatter_andthen_formatter(x_6, x_7, x_1, x_2, x_3, x_4, x_5); return x_8; } @@ -2056,7 +2056,7 @@ _start: { lean_object* x_6; lean_object* x_7; lean_object* x_8; x_6 = l_Lean_Parser_Level_num_parenthesizer___closed__1; -x_7 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__19; +x_7 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__19; x_8 = l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer(x_6, x_7, x_1, x_2, x_3, x_4, x_5); return x_8; } @@ -2273,7 +2273,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Level_addLit_formatter___closed__1; -x_2 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__1; +x_2 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__1; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); lean_closure_set(x_3, 1, x_2); @@ -2315,7 +2315,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_antiquotNestedExpr_parenthesizer___closed__3; -x_2 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__1; +x_2 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__1; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); lean_closure_set(x_3, 1, x_2); diff --git a/stage0/stdlib/Lean/Parser/Module.c b/stage0/stdlib/Lean/Parser/Module.c index edd2d708ff..1cbfba7e9d 100644 --- a/stage0/stdlib/Lean/Parser/Module.c +++ b/stage0/stdlib/Lean/Parser/Module.c @@ -123,13 +123,13 @@ lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Parser_testParseModuleAux_parse lean_object* l_Lean_Parser_Module_import_parenthesizer___closed__1; lean_object* l_Lean_Parser_initCacheForInput(lean_object*); lean_object* l_Lean_Parser_Module_import___elambda__1___closed__4; +extern lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__22; extern lean_object* l_Lean_Parser_Term_quot___elambda__1___closed__4; lean_object* l_Lean_Parser_testParseModuleAux_parse___closed__1; lean_object* l_Lean_Parser_Module_import___elambda__1___closed__11; lean_object* l_Lean_Parser_Module_module_parenthesizer___closed__2; lean_object* l_Lean_Parser_testParseModuleAux_parse___closed__2; extern lean_object* l_Lean_Parser_Command_exit___elambda__1___closed__2; -extern lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__24; lean_object* l_Lean_Parser_Module_header___elambda__1___closed__2; lean_object* l_Lean_Parser_parseHeader_match__1___rarg(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_ident___closed__2; @@ -150,8 +150,8 @@ lean_object* l_Lean_Parser_Module_prelude_formatter___closed__3; lean_object* l_Lean_Parser_Module_header___closed__1; lean_object* l_Lean_Parser_Module_import_parenthesizer___closed__4; lean_object* l_IO_FS_Handle_readToEnd_read___at_IO_Process_output___spec__1(lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__24; lean_object* l_Lean_Parser_Module_module___elambda__1___closed__9; -extern lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__22; lean_object* l_Lean_Parser_Module_import_parenthesizer___closed__2; lean_object* l_Lean_Syntax_updateLeading(lean_object*); lean_object* lean_io_realpath(lean_object*, lean_object*); @@ -227,7 +227,6 @@ uint8_t l_Lean_Parser_isExitCommand(lean_object*); lean_object* l_Lean_Parser_Module_module___elambda__1___closed__3; lean_object* l_Lean_Parser_Module_updateTokens(lean_object*); lean_object* l_Lean_Parser_Module_prelude___closed__3; -extern lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__19; uint8_t lean_nat_dec_le(lean_object*, lean_object*); lean_object* l_Std_PersistentArray_forMAux___at_Lean_Parser_testParseModuleAux_parse___spec__3___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Parser_testParseModuleAux_parse___spec__8___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -257,6 +256,7 @@ lean_object* l_Lean_Parser_Module_module_parenthesizer(lean_object*, lean_object lean_object* l_Lean_Parser_Module_header___elambda__1___closed__13; lean_object* l_Lean_Parser_Module_import_formatter___closed__2; lean_object* l_Lean_Parser_topLevelCommandParserFn___closed__2; +extern lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__19; extern lean_object* l_Lean_Parser_Tactic_tacticSeqBracketed_parenthesizer___closed__3; lean_object* l_Lean_Parser_topLevelCommandParserFn___closed__4; extern lean_object* l_Lean_Parser_instInhabitedParser___closed__2; @@ -272,6 +272,7 @@ lean_object* l_Lean_Parser_testParseModuleAux_parse(lean_object*, lean_object*, lean_object* l_Lean_Parser_Module_import___elambda__1___closed__16; lean_object* l_Lean_Parser_Module_updateTokens_match__1(lean_object*); extern lean_object* l_Lean_PrettyPrinter_Parenthesizer_maybeParenthesize___lambda__4___closed__1; +extern lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__11; uint8_t l_Lean_Syntax_isOfKind(lean_object*, lean_object*); lean_object* l_Lean_Parser_Module_import___closed__5; lean_object* l_Lean_Parser_Module_module_parenthesizer___closed__3; @@ -325,7 +326,6 @@ lean_object* l_Lean_Parser_Module_header___elambda__1(lean_object*, lean_object* uint8_t lean_nat_dec_lt(lean_object*, lean_object*); lean_object* l_Lean_Parser_Module_header_formatter___closed__4; lean_object* l_IO_FS_readFile___at_Lean_Parser_testParseFile___spec__1___boxed(lean_object*, lean_object*); -extern lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__11; lean_object* l_Lean_Parser_andthenFn(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Module_prelude___elambda__1___closed__9; static lean_object* _init_l_Lean_Parser_Module_prelude___elambda__1___closed__1() { @@ -1158,7 +1158,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Module_import_formatter___closed__4; -x_2 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__11; +x_2 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__11; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); lean_closure_set(x_3, 1, x_2); @@ -1229,7 +1229,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Module_header_formatter___closed__2; -x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__22; +x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__22; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); lean_closure_set(x_3, 1, x_2); @@ -1259,7 +1259,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Module_header_formatter___closed__5; -x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__22; +x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__22; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); lean_closure_set(x_3, 1, x_2); @@ -1281,7 +1281,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Module_header_formatter___closed__7; -x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__22; +x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__22; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); lean_closure_set(x_3, 1, x_2); @@ -1371,7 +1371,7 @@ static lean_object* _init_l_Lean_Parser_Module_module_formatter___closed__5() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__22; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__22; x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_2, 0, x_1); lean_closure_set(x_2, 1, x_1); @@ -1499,7 +1499,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Tactic_tacticSeqBracketed_parenthesizer___closed__3; -x_2 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__19; +x_2 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__19; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); lean_closure_set(x_3, 1, x_2); @@ -1568,7 +1568,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Module_header_parenthesizer___closed__2; -x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__24; +x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__24; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); lean_closure_set(x_3, 1, x_2); @@ -1598,7 +1598,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Module_header_parenthesizer___closed__5; -x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__24; +x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__24; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); lean_closure_set(x_3, 1, x_2); @@ -1620,7 +1620,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Module_header_parenthesizer___closed__7; -x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__24; +x_2 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__24; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); lean_closure_set(x_3, 1, x_2); @@ -1680,7 +1680,7 @@ static lean_object* _init_l_Lean_Parser_Module_module_parenthesizer___closed__2( _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__24; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__24; x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_2, 0, x_1); lean_closure_set(x_2, 1, x_1); diff --git a/stage0/stdlib/Lean/Parser/Syntax.c b/stage0/stdlib/Lean/Parser/Syntax.c index 16336a9cc9..6cbd0da156 100644 --- a/stage0/stdlib/Lean/Parser/Syntax.c +++ b/stage0/stdlib/Lean/Parser/Syntax.c @@ -83,9 +83,11 @@ lean_object* l_Lean_Parser_Command_mixfix; lean_object* l_Lean_Parser_Syntax_sepBy___closed__10; lean_object* l_Lean_Parser_Command_macroHead_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Syntax_unary___elambda__1___closed__5; +extern lean_object* l_Lean_Parser_mkAntiquot_formatter___closed__5; lean_object* l___regBuiltin_Lean_Parser_Syntax_sepBy_formatter___closed__1; lean_object* l_Lean_Parser_Command_elab___elambda__1___closed__13; lean_object* l_Lean_Parser_Command_macroTail_formatter___closed__1; +extern lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__4; lean_object* l_Lean_Parser_Syntax_binary___elambda__1___closed__7; lean_object* l_Lean_Parser_Command_notation_formatter___closed__2; lean_object* l_Lean_Parser_Command_syntaxAbbrev___elambda__1(lean_object*, lean_object*); @@ -133,6 +135,7 @@ extern lean_object* l_myMacro____x40_Init_Notation___hyg_698____closed__2; lean_object* l_Lean_Parser_Command_infixr___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_mixfix_formatter___closed__7; lean_object* l___regBuiltinParser_Lean_Parser_Command_elab__rules(lean_object*); +extern lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__18; lean_object* l_Lean_Parser_Syntax_sepBy1_formatter___closed__4; lean_object* l_Lean_Parser_Syntax_paren___elambda__1___closed__5; lean_object* l_Lean_Parser_Command_macroHead; @@ -273,7 +276,6 @@ lean_object* l_Lean_Parser_Term_stx_quot___elambda__1___closed__6; lean_object* l_Lean_Parser_Command_mixfix___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Syntax_cat___closed__2; lean_object* l_Lean_Parser_Command_notation___closed__10; -extern lean_object* l_Lean_Parser_mkAntiquot_formatter___closed__8; lean_object* l_Lean_Parser_Command_identPrec_parenthesizer___closed__2; extern lean_object* l_Lean_Parser_mkAntiquot___closed__4; lean_object* l_Lean_Parser_addBuiltinParser(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); @@ -307,7 +309,6 @@ lean_object* l_Lean_Parser_Command_macroTailDefault___elambda__1(lean_object*, l lean_object* l_Lean_Parser_maxSymbol___closed__6; lean_object* l_Lean_Parser_Command_optPrio___closed__2; lean_object* l_Lean_Parser_Syntax_paren_parenthesizer___closed__1; -extern lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__18; lean_object* l_Lean_Parser_atomicFn(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_optKindPrio___closed__10; lean_object* l_Lean_Parser_Command_elab___closed__3; @@ -379,9 +380,9 @@ lean_object* l_Lean_Parser_Command_syntaxAbbrev_parenthesizer___closed__2; lean_object* l_Lean_Parser_Command_syntaxAbbrev; lean_object* l_Lean_Parser_Command_notation_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_infix_formatter___closed__3; +extern lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__1; lean_object* l_Lean_Parser_Command_postfix___elambda__1___closed__8; lean_object* l_Lean_Parser_Command_parserKindPrio___closed__2; -extern lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__5; lean_object* l_Lean_PrettyPrinter_Parenthesizer_atomic_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_elab__rules___closed__5; lean_object* l_Lean_Parser_Syntax_sepBy___closed__4; @@ -402,7 +403,6 @@ lean_object* l___regBuiltin_Lean_Parser_Syntax_sepBy_parenthesizer(lean_object*) lean_object* l___regBuiltin_Lean_Parser_Command_syntaxAbbrev_formatter(lean_object*); lean_object* l_Lean_Parser_identEqFn(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_optional(lean_object*); -extern lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__6; lean_object* l_Lean_Parser_Command_mixfix___elambda__1___closed__1; lean_object* l_Lean_Parser_Command_mixfix___closed__8; lean_object* l_Lean_Parser_Command_elab__rules___closed__3; @@ -511,7 +511,6 @@ extern lean_object* l_Lean_Parser_ident___closed__2; lean_object* l_Lean_Parser_Command_macro__rules_formatter___closed__3; lean_object* l_Lean_Parser_Command_elabTail_parenthesizer___closed__2; lean_object* l_Lean_Parser_Command_mixfixKind___elambda__1___closed__1; -extern lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__1; lean_object* l___regBuiltin_Lean_Parser_Syntax_unary_formatter(lean_object*); lean_object* l_Lean_Parser_Command_macro___elambda__1___closed__16; lean_object* l_Lean_Parser_Syntax_binary___elambda__1___closed__3; @@ -527,7 +526,6 @@ lean_object* l___regBuiltin_Lean_Parser_Term_stx_quot_parenthesizer___closed__1; lean_object* l_Lean_Parser_Command_notation___closed__5; lean_object* l_Lean_Parser_Term_stx_quot___closed__3; lean_object* l_Lean_Parser_Command_mixfix___elambda__1___closed__6; -extern lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__16; lean_object* l_Lean_Parser_Command_notation_formatter___closed__6; lean_object* l_Lean_Parser_Syntax_sepBy_parenthesizer___closed__7; lean_object* l_Lean_Parser_Syntax_paren_parenthesizer___closed__6; @@ -590,6 +588,7 @@ lean_object* l_Lean_Parser_Command_syntaxCat___closed__7; lean_object* l_Lean_Parser_Command_syntax___closed__3; lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Syntax___hyg_15____closed__2; lean_object* l_Lean_Parser_Syntax_sepBy1___closed__4; +extern lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__16; lean_object* l_Lean_Parser_Command_optKind_formatter___closed__1; lean_object* l_Lean_Parser_Syntax_nonReserved___elambda__1___closed__3; lean_object* l_Lean_Parser_precedenceLit; @@ -783,6 +782,7 @@ lean_object* l_Lean_Parser_registerBuiltinParserAttribute(lean_object*, lean_obj lean_object* l_Lean_Parser_Command_optKindPrio_parenthesizer___closed__4; lean_object* l_Lean_Parser_Command_elab___elambda__1(lean_object*, lean_object*); extern lean_object* l_myMacro____x40_Init_Notation___hyg_1261____closed__5; +extern lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__5; lean_object* l_Lean_Parser_Command_macroTailCommand_formatter___closed__5; lean_object* l_Lean_Parser_Command_macroTailCommand_parenthesizer___closed__2; lean_object* l___regBuiltin_Lean_Parser_Command_syntax_formatter(lean_object*); @@ -804,7 +804,6 @@ lean_object* l_Lean_Parser_Command_elab__rules___elambda__1___closed__1; lean_object* l_Lean_Parser_Command_optKindPrio_formatter___closed__4; lean_object* l_Lean_Parser_Command_mixfixKind_formatter___closed__3; lean_object* l_Lean_Parser_Syntax_atom_formatter___closed__2; -extern lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__1; lean_object* l_Lean_Parser_maxSymbol___closed__3; extern lean_object* l_myMacro____x40_Init_Notation___hyg_1625____closed__2; lean_object* l_Lean_Parser_precedence_parenthesizer___closed__2; @@ -1017,8 +1016,6 @@ lean_object* l_Lean_Parser_precedenceLit_parenthesizer(lean_object*, lean_object lean_object* l_Lean_Parser_Command_syntaxCat___closed__3; lean_object* l_Lean_Parser_Syntax_cat_parenthesizer___closed__3; lean_object* l_Lean_Parser_Syntax_unary_parenthesizer___closed__3; -extern lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__9; -extern lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__19; lean_object* l_Lean_Parser_Term_stx_quot___elambda__1___closed__9; lean_object* l_Lean_Parser_Syntax_sepBy1___elambda__1___closed__1; lean_object* l_Lean_Parser_Command_macroHead_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1110,7 +1107,6 @@ lean_object* l_Lean_Parser_Term_stx_quot___closed__7; lean_object* l_Lean_Parser_Command_mixfix___closed__6; lean_object* l_Lean_Parser_Syntax_sepBy_parenthesizer___closed__3; lean_object* l_Lean_Parser_Command_elab___elambda__1___closed__5; -extern lean_object* l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__3; lean_object* l_Lean_Parser_Command_elab___closed__11; lean_object* l_Lean_Parser_Command_macroTail_parenthesizer___closed__3; lean_object* l_Lean_Parser_maxSymbol___elambda__1___closed__4; @@ -1169,6 +1165,7 @@ lean_object* l_Lean_Parser_Command_notation_parenthesizer___closed__1; lean_object* l___regBuiltin_Lean_Parser_Command_elab_formatter___closed__1; lean_object* l_Lean_Parser_Command_infixl___closed__1; lean_object* l_Lean_Parser_Syntax_unary___closed__5; +extern lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__19; lean_object* l_Lean_Parser_Command_optKind___closed__4; lean_object* l_Lean_Parser_Syntax_sepBy_parenthesizer___closed__8; lean_object* l_Lean_Parser_Command_syntax___closed__11; @@ -1226,6 +1223,7 @@ lean_object* l_Lean_Parser_precedence___closed__6; lean_object* l_Lean_Parser_Command_macro__rules_formatter___closed__1; lean_object* l_Lean_Parser_Syntax_sepBy_parenthesizer___closed__4; lean_object* l_Lean_Parser_Command_parserPrio___closed__5; +extern lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__11; lean_object* l_Lean_Parser_Command_elab__rules_parenthesizer___closed__3; lean_object* l_Lean_Parser_Command_notationItem___closed__5; lean_object* l_Lean_Parser_Command_macroTailTactic___closed__2; @@ -1251,7 +1249,6 @@ lean_object* l_Lean_Parser_maxSymbol_formatter___closed__1; lean_object* l_Lean_Parser_Command_macro_parenthesizer___closed__1; lean_object* l_Lean_Parser_Command_elabTail___elambda__1___closed__9; lean_object* l_Lean_Parser_Command_macroTailCommand___elambda__1___closed__2; -extern lean_object* l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__3; lean_object* l_Lean_Parser_Command_mixfix___elambda__1___closed__12; lean_object* l_Lean_Parser_Command_syntax_formatter___closed__3; lean_object* l_Lean_Parser_Command_parserKindPrio___elambda__1___closed__7; @@ -1266,6 +1263,7 @@ lean_object* l_Lean_Parser_Command_macro__rules___closed__3; lean_object* l_Lean_Parser_Command_syntaxCat___closed__4; lean_object* l_Lean_Parser_Command_optKindPrio_formatter___closed__1; lean_object* l___regBuiltin_Lean_Parser_Command_macro_formatter(lean_object*); +extern lean_object* l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__3; lean_object* l_Lean_Parser_mkAntiquot(lean_object*, lean_object*, uint8_t); lean_object* l_Lean_Parser_Term_stx_quot___elambda__1___closed__1; lean_object* l_Lean_Parser_Command_elab__rules___elambda__1___closed__5; @@ -1306,6 +1304,7 @@ lean_object* l_Lean_Parser_Command_postfix_formatter(lean_object*, lean_object*, lean_object* l_Lean_Parser_Syntax_binary___elambda__1___closed__8; lean_object* l_Lean_Parser_Syntax_binary_formatter___closed__3; lean_object* l_Lean_Parser_Syntax_nonReserved___closed__4; +extern lean_object* l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__3; lean_object* l_Lean_Parser_Command_elab___elambda__1___closed__10; lean_object* l_Lean_Parser_Syntax_cat___closed__3; lean_object* l_Lean_Parser_Command_elab_formatter___closed__12; @@ -1313,6 +1312,7 @@ lean_object* l_Lean_Parser_Syntax_sepBy1___elambda__1___closed__4; extern lean_object* l_Lean_Parser_Tactic_quotSeq___elambda__1___closed__6; lean_object* l_Lean_Parser_Command_notation___elambda__1___closed__5; extern lean_object* l_Lean_Parser_Term_dynamicQuot___elambda__1___closed__11; +extern lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__9; lean_object* l_Lean_Parser_Command_macroArg_parenthesizer___closed__1; lean_object* l_Lean_Parser_Command_elabTail___elambda__1___closed__4; lean_object* l_Lean_Parser_Command_optKind___closed__5; @@ -1472,6 +1472,7 @@ extern lean_object* l_Lean_Parser_strLit___closed__2; lean_object* l_Lean_Parser_Syntax_cat___elambda__1___closed__4; extern lean_object* l_Lean_Parser_antiquotNestedExpr___elambda__1___closed__2; lean_object* l_Lean_Parser_Command_mixfix___closed__7; +extern lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__1; lean_object* l_Lean_Parser_Command_prefix___elambda__1___closed__1; lean_object* l___regBuiltin_Lean_Parser_Command_syntaxAbbrev_parenthesizer___closed__1; lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1504,7 +1505,6 @@ lean_object* l_Lean_Parser_Command_syntaxAbbrev_parenthesizer(lean_object*, lean lean_object* l_Lean_Parser_syntaxParser(lean_object*); lean_object* l_Lean_PrettyPrinter_Formatter_categoryParser_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Command_syntaxCat_formatter___closed__4; -extern lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__11; lean_object* l___regBuiltin_Lean_Parser_Command_elab_formatter(lean_object*); lean_object* l_Lean_Parser_Command_macro__rules___closed__5; lean_object* l_Lean_Parser_andthenFn(lean_object*, lean_object*, lean_object*, lean_object*); @@ -2659,7 +2659,7 @@ lean_object* l_Lean_Parser_precedenceLit_formatter(lean_object* x_1, lean_object _start: { lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_6 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__1; +x_6 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__1; x_7 = l_Lean_Parser_precedenceLit_formatter___closed__1; x_8 = l_Lean_PrettyPrinter_Formatter_orelse_formatter(x_6, x_7, x_1, x_2, x_3, x_4, x_5); return x_8; @@ -2692,7 +2692,7 @@ static lean_object* _init_l_Lean_Parser_precedence_formatter___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_mkAntiquot_formatter___closed__8; +x_1 = l_Lean_Parser_mkAntiquot_formatter___closed__5; x_2 = l_Lean_Parser_precedence_formatter___closed__2; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -2778,7 +2778,7 @@ static lean_object* _init_l_Lean_Parser_Syntax_cat_formatter___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__11; +x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__11; x_2 = l_Lean_Parser_Syntax_cat_formatter___closed__2; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -2848,7 +2848,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = l_Lean_Parser_maxSymbol___elambda__1___closed__2; x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__5; +x_3 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__4; x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer___boxed), 8, 3); lean_closure_set(x_4, 0, x_1); lean_closure_set(x_4, 1, x_2); @@ -2878,7 +2878,7 @@ lean_object* l_Lean_Parser_precedenceLit_parenthesizer(lean_object* x_1, lean_ob _start: { lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_6 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__1; +x_6 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__1; x_7 = l_Lean_Parser_precedenceLit_parenthesizer___closed__1; x_8 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_6, x_7, x_1, x_2, x_3, x_4, x_5); return x_8; @@ -2993,7 +2993,7 @@ static lean_object* _init_l_Lean_Parser_Syntax_cat_parenthesizer___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__19; +x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__19; x_2 = l_Lean_Parser_Syntax_cat_parenthesizer___closed__2; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -3240,7 +3240,7 @@ static lean_object* _init_l_Lean_Parser_Syntax_unary_formatter___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__3; +x_1 = l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__3; x_2 = l_Lean_Parser_Syntax_paren_formatter___closed__5; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -3252,7 +3252,7 @@ static lean_object* _init_l_Lean_Parser_Syntax_unary_formatter___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__11; +x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__11; x_2 = l_Lean_Parser_Syntax_unary_formatter___closed__2; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -3320,7 +3320,7 @@ static lean_object* _init_l_Lean_Parser_Syntax_unary_parenthesizer___closed__2() _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__3; x_2 = l_Lean_Parser_Syntax_paren_parenthesizer___closed__5; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -3332,7 +3332,7 @@ static lean_object* _init_l_Lean_Parser_Syntax_unary_parenthesizer___closed__3() _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__19; +x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__19; x_2 = l_Lean_Parser_Syntax_unary_parenthesizer___closed__2; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -3685,7 +3685,7 @@ static lean_object* _init_l_Lean_Parser_Syntax_binary_formatter___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__3; +x_1 = l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__3; x_2 = l_Lean_Parser_Syntax_binary_formatter___closed__4; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -3697,7 +3697,7 @@ static lean_object* _init_l_Lean_Parser_Syntax_binary_formatter___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__11; +x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__11; x_2 = l_Lean_Parser_Syntax_binary_formatter___closed__5; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -3789,7 +3789,7 @@ static lean_object* _init_l_Lean_Parser_Syntax_binary_parenthesizer___closed__4( _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__3; x_2 = l_Lean_Parser_Syntax_binary_parenthesizer___closed__3; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -3801,7 +3801,7 @@ static lean_object* _init_l_Lean_Parser_Syntax_binary_parenthesizer___closed__5( _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__19; +x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__19; x_2 = l_Lean_Parser_Syntax_binary_parenthesizer___closed__4; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -4383,7 +4383,7 @@ static lean_object* _init_l_Lean_Parser_Syntax_sepBy_formatter___closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__5; +x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__5; x_2 = l_Lean_Parser_Syntax_sepBy_formatter___closed__9; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -4509,7 +4509,7 @@ static lean_object* _init_l_Lean_Parser_Syntax_sepBy_parenthesizer___closed__4() _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__6; +x_1 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__5; x_2 = lean_alloc_closure((void*)(l_Lean_Parser_optional_parenthesizer), 6, 1); lean_closure_set(x_2, 0, x_1); return x_2; @@ -4543,7 +4543,7 @@ static lean_object* _init_l_Lean_Parser_Syntax_sepBy_parenthesizer___closed__7() _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__9; +x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__9; x_2 = l_Lean_Parser_Syntax_sepBy_parenthesizer___closed__6; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -5101,7 +5101,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = l_myMacro____x40_Init_Notation___hyg_521____closed__12; x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__5; +x_3 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__5; x_4 = lean_alloc_closure((void*)(l_Lean_Parser_leadingNode_formatter___boxed), 8, 3); lean_closure_set(x_4, 0, x_1); lean_closure_set(x_4, 1, x_2); @@ -5157,7 +5157,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = l_myMacro____x40_Init_Notation___hyg_521____closed__12; x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__9; +x_3 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__9; x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer___boxed), 8, 3); lean_closure_set(x_4, 0, x_1); lean_closure_set(x_4, 1, x_2); @@ -5433,7 +5433,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Syntax_nonReserved_formatter___closed__2; -x_2 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__5; +x_2 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__5; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); lean_closure_set(x_3, 1, x_2); @@ -5501,7 +5501,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_antiquotNestedExpr_parenthesizer___closed__3; -x_2 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__9; +x_2 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__9; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); lean_closure_set(x_3, 1, x_2); @@ -7648,7 +7648,7 @@ static lean_object* _init_l_Lean_Parser_Command_optPrio_formatter___closed__1() _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__1; +x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__1; x_2 = l_Lean_Parser_mkAntiquotScope_formatter___closed__2; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -7696,7 +7696,7 @@ static lean_object* _init_l_Lean_Parser_Command_mixfix_formatter___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__5; +x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__5; x_2 = l_Lean_Parser_Term_basicFun_formatter___closed__4; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -7708,7 +7708,7 @@ static lean_object* _init_l_Lean_Parser_Command_mixfix_formatter___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__16; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__16; x_2 = l_Lean_Parser_Command_mixfix_formatter___closed__2; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -8098,7 +8098,7 @@ static lean_object* _init_l_Lean_Parser_Command_optPrio_parenthesizer___closed__ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__1; +x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__1; x_2 = l_Lean_Parser_antiquotNestedExpr_parenthesizer___closed__3; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -8144,7 +8144,7 @@ static lean_object* _init_l_Lean_Parser_Command_mixfix_parenthesizer___closed__2 _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__9; +x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__9; x_2 = l_Lean_Parser_Term_basicFun_parenthesizer___closed__4; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -8156,7 +8156,7 @@ static lean_object* _init_l_Lean_Parser_Command_mixfix_parenthesizer___closed__3 _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__18; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__18; x_2 = l_Lean_Parser_Command_mixfix_parenthesizer___closed__2; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -9015,7 +9015,7 @@ static lean_object* _init_l_Lean_Parser_Command_notationItem_formatter___closed_ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__5; +x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__5; x_2 = l_Lean_Parser_Command_notationItem_formatter___closed__2; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_orelse_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -9039,7 +9039,7 @@ lean_object* l_Lean_Parser_Command_notationItem_formatter(lean_object* x_1, lean _start: { lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_6 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__16; +x_6 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__16; x_7 = l_Lean_Parser_Command_notationItem_formatter___closed__4; x_8 = l_Lean_PrettyPrinter_Formatter_andthen_formatter(x_6, x_7, x_1, x_2, x_3, x_4, x_5); return x_8; @@ -9253,7 +9253,7 @@ static lean_object* _init_l_Lean_Parser_Command_notationItem_parenthesizer___clo _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__9; +x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__9; x_2 = l_Lean_Parser_Command_notationItem_parenthesizer___closed__2; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -9277,7 +9277,7 @@ lean_object* l_Lean_Parser_Command_notationItem_parenthesizer(lean_object* x_1, _start: { lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_6 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__18; +x_6 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__18; x_7 = l_Lean_Parser_Command_notationItem_parenthesizer___closed__4; x_8 = l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer(x_6, x_7, x_1, x_2, x_3, x_4, x_5); return x_8; @@ -9660,7 +9660,7 @@ static lean_object* _init_l_Lean_Parser_Command_optKind_formatter___closed__1() _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__11; +x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__11; x_2 = l_Lean_Parser_mkAntiquotScope_formatter___closed__2; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -10835,7 +10835,7 @@ static lean_object* _init_l_Lean_Parser_Command_parserKindPrio_formatter___close _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__11; +x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__11; x_2 = l_Lean_Parser_Term_tupleTail_formatter___closed__2; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -10858,7 +10858,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Command_parserKindPrio_formatter___closed__3; -x_2 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__1; +x_2 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__1; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); lean_closure_set(x_3, 1, x_2); @@ -10910,7 +10910,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = l_Lean_Parser_Command_parserKind___elambda__1___closed__2; x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__11; +x_3 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__11; x_4 = lean_alloc_closure((void*)(l_Lean_Parser_leadingNode_formatter___boxed), 8, 3); lean_closure_set(x_4, 0, x_1); lean_closure_set(x_4, 1, x_2); @@ -10949,7 +10949,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = l_Lean_Parser_Command_parserPrio___elambda__1___closed__2; x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__1; +x_3 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__1; x_4 = lean_alloc_closure((void*)(l_Lean_Parser_leadingNode_formatter___boxed), 8, 3); lean_closure_set(x_4, 0, x_1); lean_closure_set(x_4, 1, x_2); @@ -11078,7 +11078,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Term_typeAscription_formatter___closed__2; -x_2 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__11; +x_2 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__11; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); lean_closure_set(x_3, 1, x_2); @@ -11214,7 +11214,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Command_openHiding_parenthesizer___closed__3; -x_2 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__1; +x_2 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__1; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); lean_closure_set(x_3, 1, x_2); @@ -11264,7 +11264,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = l_Lean_Parser_Command_parserKind___elambda__1___closed__2; x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__19; +x_3 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__19; x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer___boxed), 8, 3); lean_closure_set(x_4, 0, x_1); lean_closure_set(x_4, 1, x_2); @@ -11301,7 +11301,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = l_Lean_Parser_Command_parserPrio___elambda__1___closed__2; x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__1; +x_3 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__1; x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer___boxed), 8, 3); lean_closure_set(x_4, 0, x_1); lean_closure_set(x_4, 1, x_2); @@ -11776,7 +11776,7 @@ static lean_object* _init_l_Lean_Parser_Command_syntaxAbbrev_formatter___closed_ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__11; +x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__11; x_2 = l_Lean_Parser_Command_syntaxAbbrev_formatter___closed__2; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -11856,7 +11856,7 @@ static lean_object* _init_l_Lean_Parser_Command_syntaxAbbrev_parenthesizer___clo _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__19; +x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__19; x_2 = l_Lean_Parser_Syntax_sepBy_parenthesizer___closed__2; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -12158,7 +12158,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Command_syntaxCat_formatter___closed__2; -x_2 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__11; +x_2 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__11; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); lean_closure_set(x_3, 1, x_2); @@ -13505,7 +13505,7 @@ static lean_object* _init_l_Lean_Parser_Command_macroArgSimple_formatter___close _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_mkAntiquot_formatter___closed__8; +x_1 = l_Lean_Parser_mkAntiquot_formatter___closed__5; x_2 = l_Lean_Parser_Syntax_paren_formatter___closed__2; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -13517,7 +13517,7 @@ static lean_object* _init_l_Lean_Parser_Command_macroArgSimple_formatter___close _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__3; +x_1 = l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__3; x_2 = l_Lean_Parser_Command_macroArgSimple_formatter___closed__2; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -13529,7 +13529,7 @@ static lean_object* _init_l_Lean_Parser_Command_macroArgSimple_formatter___close _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__11; +x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__11; x_2 = l_Lean_Parser_Command_macroArgSimple_formatter___closed__3; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -13583,7 +13583,7 @@ lean_object* l_Lean_Parser_Command_macroArg_formatter(lean_object* x_1, lean_obj _start: { lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_6 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__5; +x_6 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__5; x_7 = l_Lean_Parser_Command_macroArg_formatter___closed__2; x_8 = l_Lean_PrettyPrinter_Formatter_orelse_formatter(x_6, x_7, x_1, x_2, x_3, x_4, x_5); return x_8; @@ -14086,7 +14086,7 @@ static lean_object* _init_l_Lean_Parser_Command_macroArgSimple_parenthesizer___c _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__3; x_2 = l_Lean_Parser_Command_macroArgSimple_parenthesizer___closed__3; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -14098,7 +14098,7 @@ static lean_object* _init_l_Lean_Parser_Command_macroArgSimple_parenthesizer___c _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__19; +x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__19; x_2 = l_Lean_Parser_Command_macroArgSimple_parenthesizer___closed__4; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -14152,7 +14152,7 @@ lean_object* l_Lean_Parser_Command_macroArg_parenthesizer(lean_object* x_1, lean _start: { lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_6 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__9; +x_6 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__9; x_7 = l_Lean_Parser_Command_macroArg_parenthesizer___closed__2; x_8 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_6, x_7, x_1, x_2, x_3, x_4, x_5); return x_8; @@ -15695,7 +15695,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Command_elabTail_formatter___closed__1; -x_2 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__11; +x_2 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__11; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); lean_closure_set(x_3, 1, x_2); @@ -15716,7 +15716,7 @@ static lean_object* _init_l_Lean_Parser_Command_elabTail_formatter___closed__4() _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__11; +x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__11; x_2 = l_Lean_Parser_Command_elabTail_formatter___closed__3; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -15948,7 +15948,7 @@ static lean_object* _init_l_Lean_Parser_Command_elabTail_parenthesizer___closed_ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__19; +x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__19; x_2 = l_Lean_Parser_Command_elab__rules_parenthesizer___closed__2; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); diff --git a/stage0/stdlib/Lean/Parser/Tactic.c b/stage0/stdlib/Lean/Parser/Tactic.c index 0bd34f66f8..a3cd1c2ce0 100644 --- a/stage0/stdlib/Lean/Parser/Tactic.c +++ b/stage0/stdlib/Lean/Parser/Tactic.c @@ -77,7 +77,6 @@ lean_object* l_Lean_Parser_Tactic_unknown_parenthesizer(lean_object*, lean_objec lean_object* l_Lean_Parser_Tactic_initFn____x40_Lean_Parser_Tactic___hyg_5____closed__3; extern lean_object* l_Lean_PrettyPrinter_Formatter_formatterAliasesRef; lean_object* l___regBuiltin_Lean_Parser_Tactic_nestedTactic_parenthesizer___closed__1; -extern lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__19; lean_object* l___regBuiltin_Lean_Parser_Tactic_unknown_parenthesizer___closed__1; extern lean_object* l_Lean_Parser_Tactic_tacticSeq; lean_object* l_Lean_Parser_orelseFnCore(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); @@ -86,9 +85,11 @@ lean_object* l_Lean_Parser_Tactic_unknown_parenthesizer___closed__2; extern lean_object* l_Lean_Parser_FirstTokens_toStr___closed__2; lean_object* l_Lean_Parser_Tactic_unknown_formatter___closed__2; lean_object* l_Lean_Parser_Tactic_unknown___elambda__1___closed__3; +extern lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__19; lean_object* l_Lean_Parser_Tactic_nestedTactic_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Level_paren___elambda__1___closed__8; lean_object* l_Lean_Parser_nodeFn(lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__11; lean_object* l_Lean_Parser_Tactic_unknown___closed__6; extern lean_object* l_Lean_PrettyPrinter_Parenthesizer_parenthesizerAliasesRef; lean_object* l_Lean_Parser_Tactic_initFn____x40_Lean_Parser_Tactic___hyg_5_(lean_object*); @@ -104,7 +105,6 @@ lean_object* l_Lean_Parser_Tactic_unknown___elambda__1___lambda__1(lean_object*, lean_object* l_Lean_PrettyPrinter_Formatter_andthen_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Parser_Tactic_nestedTactic_formatter(lean_object*); lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__11; lean_object* l_Lean_Parser_andthenFn(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* _init_l_Lean_Parser_Tactic_initFn____x40_Lean_Parser_Tactic___hyg_5____closed__1() { _start: @@ -656,7 +656,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_unknown_formatter___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__11; +x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__11; x_2 = l_Lean_Parser_Tactic_unknown_formatter___closed__2; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -747,7 +747,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_unknown_parenthesizer___closed__3 _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__19; +x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__19; x_2 = l_Lean_Parser_Tactic_unknown_parenthesizer___closed__2; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); diff --git a/stage0/stdlib/Lean/Parser/Term.c b/stage0/stdlib/Lean/Parser/Term.c index 98cf4e2283..057882574f 100644 --- a/stage0/stdlib/Lean/Parser/Term.c +++ b/stage0/stdlib/Lean/Parser/Term.c @@ -74,6 +74,7 @@ lean_object* l_Lean_Parser_Term_matchDiscr___closed__4; lean_object* l_Lean_Parser_Term_sufficesDecl_parenthesizer___closed__1; lean_object* l___regBuiltinParser_Lean_Parser_Term_suffices(lean_object*); lean_object* l_Lean_Parser_Term_proj_formatter___closed__2; +extern lean_object* l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__5; lean_object* l_Lean_Parser_Term_stateRefT___closed__3; lean_object* l_Lean_Parser_Term_paren_formatter___closed__3; lean_object* l_Lean_Parser_Term_explicit___elambda__1___closed__4; @@ -100,6 +101,7 @@ lean_object* l_Lean_Parser_Term_unreachable___closed__2; lean_object* l_Lean_Parser_Term_structInst___elambda__1___closed__32; lean_object* l_Lean_Parser_Term_local___closed__2; extern lean_object* l_Lean_Parser_Tactic_letrec___closed__12; +extern lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__13; lean_object* l_Lean_Parser_Term_proj_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_letrec_formatter___closed__9; lean_object* l_Lean_Parser_Term_namedPattern___elambda__1___closed__2; @@ -161,10 +163,10 @@ lean_object* l_Lean_Parser_Tactic_tacticSeqBracketed___closed__9; lean_object* l_Lean_Parser_Term_pipeProj_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_letrec_formatter___closed__7; lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3590____closed__17; -extern lean_object* l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__7; lean_object* l_Lean_Parser_Term_borrowed___closed__4; lean_object* l_Lean_Parser_Term_explicitBinder_parenthesizer___closed__4; lean_object* l_Lean_Parser_Term_matchDiscr___closed__2; +extern lean_object* l_Lean_Parser_mkAntiquot_formatter___closed__5; lean_object* l_Lean_Parser_Term_arrow___closed__6; lean_object* l_Lean_Parser_Term_stateRefT___elambda__1___closed__3; lean_object* l_Lean_Parser_darrow___elambda__1___closed__1; @@ -185,6 +187,7 @@ lean_object* l_Lean_Parser_Term_basicFun_formatter___closed__5; lean_object* l_Lean_Parser_Term_structInst___closed__1; lean_object* l_Lean_Parser_Term_type_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Tactic_let_x21___closed__1; +extern lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__4; lean_object* l_Lean_Parser_Term_sorry___closed__6; lean_object* l_Lean_Parser_Term_forall_parenthesizer___closed__2; extern lean_object* l_instReprSigma___rarg___closed__2; @@ -338,6 +341,7 @@ lean_object* l_Lean_Parser_Term_match; lean_object* l_Lean_Parser_Term_depArrow; lean_object* l_Lean_Parser_Tactic_tacticSeq1Indented___elambda__1___closed__6; lean_object* l_Lean_Parser_Term_structInstField_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__18; lean_object* l___regBuiltin_Lean_Parser_Term_proj_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Term_tparser_x21_formatter___closed__2; lean_object* l_Lean_Parser_Term_scientific___closed__2; @@ -650,6 +654,7 @@ lean_object* l_Lean_Parser_Term_hole___closed__2; lean_object* l_Lean_Parser_Term_assert___elambda__1___closed__7; lean_object* l_Lean_Parser_Tactic_quotSeq_formatter___closed__4; lean_object* l_Lean_Parser_Term_local___closed__6; +extern lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__15; lean_object* l_Lean_Parser_Term_arrayRef___closed__4; lean_object* l_Lean_Parser_Tactic_tacticSeqBracketed_formatter___closed__2; lean_object* l_Lean_Parser_Term_parser_x21___closed__3; @@ -669,7 +674,6 @@ lean_object* l_Lean_Parser_Tactic_tacticSeqBracketed_formatter___closed__1; lean_object* l___regBuiltinParser_Lean_Parser_Term_syntheticHole(lean_object*); lean_object* l_Lean_Parser_Term_nomatch___elambda__1___closed__4; lean_object* l_Lean_Parser_Term_attributes_formatter___closed__1; -extern lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__9; lean_object* l_Lean_Parser_Term_optIdent_formatter___closed__1; lean_object* l_Lean_Parser_Term_let_formatter___closed__2; lean_object* l_Lean_Parser_Term_suffices_parenthesizer___closed__1; @@ -707,7 +711,6 @@ lean_object* l_Lean_Parser_Term_doubleQuotedName___closed__6; extern lean_object* l_Lean_Parser_mkAntiquot___closed__4; lean_object* l_Lean_Parser_Term_scientific_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_whereDecls___elambda__1___closed__3; -extern lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__3; lean_object* l_Lean_Parser_addBuiltinParser(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_letRecDecls_formatter___closed__1; lean_object* l_Lean_Parser_Term_optIdent___closed__4; @@ -780,7 +783,6 @@ lean_object* l_Lean_Parser_Term_have_formatter(lean_object*, lean_object*, lean_ lean_object* l___regBuiltin_Lean_Parser_Level_quot_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_funBinder_quot___elambda__1___closed__12; lean_object* l_Lean_Parser_Tactic_tacticSeqBracketed___closed__10; -extern lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__18; lean_object* l_Lean_Parser_atomicFn(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_funBinder_quot___closed__2; lean_object* l_Lean_Parser_Term_suffices___elambda__1___closed__3; @@ -838,7 +840,6 @@ lean_object* l_Lean_Parser_Term_letRecDecls___closed__5; lean_object* l_Lean_Parser_Term_simpleBinder___closed__3; lean_object* l_Lean_Parser_Term_arrayRef___elambda__1___closed__6; lean_object* l_Lean_Parser_Term_parser_x21___closed__5; -extern lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__7; lean_object* l_Lean_Parser_Tactic_seq1___elambda__1___closed__5; lean_object* l_Lean_Parser_Term_whereDecls___elambda__1___closed__15; lean_object* l_Lean_Parser_Term_paren_formatter___closed__6; @@ -945,6 +946,7 @@ lean_object* l_Lean_Parser_Term_anonymousCtor___closed__2; lean_object* l___regBuiltin_Lean_Parser_Term_app_formatter(lean_object*); lean_object* l_Lean_Parser_Term_sort___elambda__1___closed__6; lean_object* l_Lean_Parser_Term_stateRefT___closed__7; +extern lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__5; lean_object* l_Lean_Parser_Term_funBinder_quot___elambda__1___closed__10; lean_object* l_Lean_Parser_Term_match_parenthesizer___closed__9; lean_object* l_Lean_Parser_Term_optEllipsis___closed__2; @@ -953,6 +955,7 @@ lean_object* l_Lean_Parser_Term_binderTactic_parenthesizer(lean_object*, lean_ob lean_object* l_Lean_Parser_Term_attributes___elambda__1___closed__5; lean_object* l_Lean_Parser_Term_stateRefT_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Parser_Term_structInst_parenthesizer(lean_object*); +extern lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__1; lean_object* l___regBuiltin_Lean_Parser_Term_typeOf_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_explicit___closed__4; lean_object* l_Lean_Parser_Term_dbgTrace___elambda__1___closed__6; @@ -978,7 +981,6 @@ lean_object* l_Lean_Parser_checkPrecFn(lean_object*, lean_object*, lean_object*) lean_object* l_Lean_Parser_Term_panic_parenthesizer___closed__2; lean_object* l_Lean_Parser_Term_parser_x21___elambda__1___closed__8; lean_object* l_Lean_Parser_Term_typeOf_parenthesizer___closed__2; -extern lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__5; lean_object* l_Lean_PrettyPrinter_Parenthesizer_atomic_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_whereDecls___elambda__1___closed__14; lean_object* l_Lean_Parser_Term_letIdLhs_parenthesizer___closed__6; @@ -989,6 +991,7 @@ lean_object* l_Lean_Parser_Term_binderTactic___elambda__1___closed__4; lean_object* l_Lean_Parser_Term_whereDecls_formatter___closed__2; lean_object* l_Lean_Parser_Term_structInst_formatter___closed__8; lean_object* l___regBuiltin_Lean_Parser_Term_type_formatter(lean_object*); +extern lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__3; lean_object* l_Lean_Parser_Term_matchDiscr___elambda__1___closed__2; lean_object* l___regBuiltin_Lean_Parser_Term_decide_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_scientific_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1030,7 +1033,7 @@ lean_object* l_Lean_Parser_Term_typeOf_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_stateRefT_parenthesizer___closed__3; lean_object* l_Lean_Parser_Term_dynamicQuot_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_optional(lean_object*); -extern lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__6; +extern lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__7; lean_object* l_Lean_Parser_Term_explicitUniv_formatter___closed__3; lean_object* l_Lean_Parser_Term_structInstLVal___elambda__1___closed__9; lean_object* l_Lean_Parser_Term_explicitBinder_formatter___closed__4; @@ -1124,7 +1127,6 @@ lean_object* l_Lean_Parser_Term_have___elambda__1___closed__6; extern lean_object* l_Lean_Parser_mkAntiquotScope___closed__5; lean_object* l_Lean_Parser_Tactic_tacticSeq1Indented___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_dbgTrace___closed__9; -extern lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__5; lean_object* l_Lean_ppIndent_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_letrec_parenthesizer___closed__5; lean_object* l_Lean_Parser_Term_matchAlts___elambda__1___closed__2; @@ -1165,6 +1167,7 @@ lean_object* l___regBuiltin_Lean_Parser_Term_anonymousCtor_parenthesizer(lean_ob 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_letDecl___closed__6; +extern lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__22; lean_object* l_Lean_Parser_Term_subst_formatter___closed__1; lean_object* l_Lean_Parser_Term_sort___closed__1; lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3590____closed__25; @@ -1211,7 +1214,6 @@ lean_object* l_Lean_Parser_Term_typeOf___closed__5; lean_object* l_Lean_Parser_Term_anonymousCtor___closed__5; lean_object* l_Lean_Parser_Term_quotedName___closed__2; lean_object* l_Lean_Parser_Term_namedPattern; -extern lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__24; lean_object* l_Lean_Parser_Tactic_tacticSeqBracketed_parenthesizer___closed__11; lean_object* l_Lean_Parser_Term_match___elambda__1___closed__5; lean_object* l_Lean_Parser_Term_anonymousCtor___closed__3; @@ -1237,6 +1239,7 @@ lean_object* l_Lean_Parser_Term_match_parenthesizer___closed__2; lean_object* l_Lean_Parser_Term_emptyC___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_type___elambda__1___closed__15; lean_object* l_Lean_Parser_Term_attributes___closed__3; +extern lean_object* l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__1; lean_object* l_Lean_Parser_Term_matchAlt_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_structInst_formatter___closed__2; lean_object* l_Lean_Parser_Tactic_quot_parenthesizer___closed__3; @@ -1268,7 +1271,6 @@ lean_object* l_Lean_Parser_Term_structInst___elambda__1___closed__16; lean_object* l_Lean_Parser_Term_match_formatter___closed__8; extern lean_object* l_Array_forInUnsafe_loop___at___private_Init_NotationExtra_0__Lean_mkHintBody___spec__1___closed__2; lean_object* l_Lean_Parser_Term_sorry___elambda__1___closed__1; -extern lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__1; lean_object* l_Lean_Parser_Term_funBinder___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_let___closed__8; lean_object* l___regBuiltin_Lean_Parser_Term_explicitUniv_formatter___closed__1; @@ -1301,7 +1303,6 @@ lean_object* l_Lean_Parser_Term_letIdLhs___elambda__1___closed__6; lean_object* l_Lean_Parser_Term_funBinder___elambda__1___closed__1; lean_object* l_Lean_Parser_lookaheadFn(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_proj___closed__4; -extern lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__16; lean_object* l_Lean_Parser_Term_nativeRefl___closed__2; lean_object* l_Lean_Parser_Term_char___closed__1; lean_object* l_Lean_Parser_Term_stateRefT_formatter___closed__1; @@ -1420,6 +1421,7 @@ lean_object* l_Lean_Parser_Tactic_tacticSeqBracketed_formatter___closed__6; lean_object* l_Lean_Parser_Term_type___elambda__1___closed__20; lean_object* l_Lean_Parser_Term_structInstLVal___elambda__1___closed__7; lean_object* l_Lean_Parser_nodeWithAntiquot_formatter(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__16; lean_object* l_Lean_Parser_Term_explicitBinder___elambda__1(lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Parser_Term_nomatch_parenthesizer___closed__1; lean_object* l_Lean_Parser_sepBy(lean_object*, lean_object*, lean_object*, uint8_t); @@ -1492,6 +1494,7 @@ lean_object* l_Lean_Parser_Term_macroDollarArg___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_nativeRefl___closed__6; lean_object* l_Lean_Parser_Term_quotedName___elambda__1___closed__4; lean_object* l_Lean_Parser_Term_stateRefT___closed__4; +extern lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__9; lean_object* l_Lean_Parser_Term_letIdDecl___elambda__1(lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Parser_Level_quot_formatter___closed__1; lean_object* l_Lean_Parser_Term_instBinder___elambda__1___closed__6; @@ -1553,6 +1556,7 @@ lean_object* l_Lean_Parser_Term_unreachable___closed__5; lean_object* l_Lean_PrettyPrinter_Formatter_toggleInsideQuot_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_whereDecls___elambda__1___closed__10; lean_object* l_Lean_Parser_Tactic_seq1___elambda__1(lean_object*, lean_object*); +extern lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__24; lean_object* l_Lean_Parser_Term_dynamicQuot_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_forall___elambda__1___closed__16; lean_object* l_Lean_Parser_Term_stateRefT___closed__2; @@ -1562,7 +1566,6 @@ extern lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____close lean_object* l_Lean_Parser_Term_doubleQuotedName___closed__5; lean_object* l_Lean_Parser_Term_typeAscription___elambda__1___closed__7; lean_object* l_Lean_Parser_Term_macroDollarArg___closed__5; -extern lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__22; lean_object* l_Lean_Parser_Term_paren_formatter___closed__1; lean_object* l_Lean_Parser_Term_structInst_formatter___closed__1; lean_object* l_Lean_Parser_Term_structInstArrayRef___closed__1; @@ -1616,7 +1619,6 @@ lean_object* l_Lean_Parser_Term_parser_x21_parenthesizer___closed__3; lean_object* l_Lean_Parser_Term_tupleTail_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_quot_parenthesizer___closed__5; lean_object* l_Lean_Parser_Term_funImplicitBinder_parenthesizer___closed__1; -extern lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__13; lean_object* l_Lean_Parser_Term_letRecDecls_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_panic___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_structInstArrayRef___closed__3; @@ -1850,7 +1852,6 @@ lean_object* l_Lean_Parser_Term_letIdDecl_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_nativeDecide___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_binderDefault___closed__2; lean_object* l_Lean_Parser_Term_fromTerm_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__3; lean_object* l_Lean_Parser_Term_structInstField___closed__1; lean_object* l_Lean_Parser_Term_binderTactic___elambda__1___closed__9; lean_object* l_Lean_Parser_Term_structInstLVal___closed__6; @@ -1952,6 +1953,7 @@ lean_object* l_Lean_Parser_Term_cdot___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_char_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_type___closed__2; lean_object* l_Lean_Parser_Term_forall_formatter___closed__1; +extern lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__5; lean_object* l_Lean_Parser_Term_tupleTail___closed__3; lean_object* l_Lean_Parser_Term_have___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_structInstField___elambda__1___closed__4; @@ -2008,7 +2010,6 @@ lean_object* l_Lean_Parser_Term_explicitUniv___elambda__1___closed__8; lean_object* l_Lean_Parser_Tactic_quotSeq_formatter___closed__3; lean_object* l_Lean_Parser_Term_explicitBinder_parenthesizer___closed__6; lean_object* l_Lean_Parser_Term_structInstArrayRef___elambda__1(lean_object*, lean_object*); -extern lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__1; lean_object* l___regBuiltin_Lean_Parser_Term_stateRefT_formatter___closed__1; lean_object* l___regBuiltinParser_Lean_Parser_Term_arrayRef(lean_object*); lean_object* l_Lean_Parser_Term_whereDecls_formatter___closed__11; @@ -2060,7 +2061,6 @@ lean_object* l_Lean_Parser_Term_namedArgument___closed__2; lean_object* l_Lean_Parser_Term_cdot___elambda__1___closed__5; lean_object* l_Lean_Parser_Term_letEqnsDecl; lean_object* l_Lean_Parser_Term_dbgTrace___elambda__1___closed__1; -extern lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__17; lean_object* l_Lean_Parser_Term_structInstLVal_formatter___closed__12; lean_object* l_Lean_Parser_Term_depArrow_formatter___closed__6; lean_object* l_Lean_Parser_Term_app_parenthesizer___closed__2; @@ -2091,7 +2091,6 @@ lean_object* l_Lean_Parser_Term_nomatch___closed__6; lean_object* l_Lean_Parser_Term_attributes___closed__2; lean_object* l_Lean_Parser_Term_attrInstance_formatter___closed__2; extern lean_object* l_Lean_Parser_antiquotNestedExpr_formatter___closed__1; -extern lean_object* l_Lean_Parser_mkAntiquot_formatter___closed__11; lean_object* l_Lean_Parser_Term_emptyC___closed__1; lean_object* l_Lean_Parser_Term_sort_formatter___closed__2; lean_object* l_Lean_Parser_Term_instBinder_formatter___closed__4; @@ -2142,6 +2141,7 @@ lean_object* l_Lean_Parser_Term_explicit___elambda__1___closed__10; lean_object* l_Lean_Parser_Term_pipeProj_formatter___closed__2; lean_object* l_Lean_Parser_Term_structInstArrayRef_parenthesizer___closed__4; lean_object* l___regBuiltin_Lean_Parser_Term_dynamicQuot_formatter(lean_object*); +extern lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__10; lean_object* l___regBuiltin_Lean_Parser_Term_funBinder_quot_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Term_depArrow_formatter___closed__1; lean_object* l_Lean_Parser_Term_namedPattern_formatter___closed__2; @@ -2205,7 +2205,6 @@ lean_object* l_Lean_Parser_Term_forall_formatter___closed__4; lean_object* l_Lean_Parser_Term_letIdLhs___closed__1; lean_object* l_Lean_PrettyPrinter_Formatter_withPosition_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltinParser_Lean_Parser_Term_str___closed__1; -extern lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__12; lean_object* l_Lean_Parser_Term_sort___closed__5; lean_object* l_Lean_Parser_Term_funBinder_formatter___closed__4; lean_object* l_Lean_Parser_Term_matchDiscr_parenthesizer___closed__3; @@ -2470,7 +2469,6 @@ lean_object* l_Lean_Parser_Term_typeSpec_parenthesizer___closed__1; lean_object* l___regBuiltinParser_Lean_Parser_Term_show(lean_object*); lean_object* l_Lean_Parser_Term_letPatDecl___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_ensureExpectedType___elambda__1___closed__7; -extern lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__10; lean_object* l_Lean_Parser_Level_quot___elambda__1___closed__8; lean_object* l_Lean_Parser_Term_match___elambda__1___closed__4; lean_object* l_Lean_Parser_Term_explicitUniv_parenthesizer___closed__3; @@ -2490,7 +2488,6 @@ lean_object* l_Lean_Parser_Term_ensureTypeOf___elambda__1___closed__11; lean_object* l_Lean_Parser_Term_depArrow_formatter___closed__3; extern lean_object* l_Lean_Expr_ctorName___closed__10; lean_object* l_Lean_Parser_Term_inaccessible___elambda__1___closed__2; -extern lean_object* l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__1; lean_object* l_Lean_Parser_Term_optEllipsis_formatter___closed__1; lean_object* l_Lean_Parser_Term_binderDefault___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_nomatch___closed__2; @@ -2533,13 +2530,11 @@ lean_object* l_Lean_Parser_Term_cdot___elambda__1___closed__9; lean_object* l_Lean_Parser_Term_decide_formatter___closed__2; lean_object* l___regBuiltin_Lean_Parser_Term_emptyC_formatter(lean_object*); lean_object* l_Lean_Parser_Term_structInstLVal___closed__1; -extern lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__9; lean_object* l_Lean_Parser_Term_have___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_haveDecl_formatter___closed__1; lean_object* l___regBuiltin_Lean_Parser_Term_byTactic_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_local___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_sorry_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__19; lean_object* l_Lean_Parser_Term_scoped___closed__6; lean_object* l_Lean_Parser_Term_emptyC_formatter___closed__5; lean_object* l_Lean_Parser_Term_match___elambda__1___closed__2; @@ -2556,6 +2551,8 @@ lean_object* l_Lean_Parser_Term_funBinder_quot_formatter___closed__4; lean_object* l_Lean_Parser_Term_parser_x21___elambda__1___closed__10; extern lean_object* l_Lean_Expr_setPPExplicit___closed__3; lean_object* l_Lean_Parser_Term_subst___closed__3; +extern lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__11; +extern lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__12; lean_object* l_Lean_Parser_withPosition___lambda__1(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_type___elambda__1___closed__8; lean_object* l___regBuiltinParser_Lean_Parser_Term_subst(lean_object*); @@ -2609,6 +2606,7 @@ lean_object* l_Lean_Parser_Term_attributes_parenthesizer___closed__4; lean_object* l_Lean_Parser_Term_ensureTypeOf_formatter___closed__1; lean_object* l_Lean_Parser_Term_arrow_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_anonymousCtor; +extern lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__7; lean_object* l_Lean_Parser_Term_forall___closed__9; lean_object* l_Lean_Parser_Level_quot___elambda__1___closed__4; lean_object* l_Lean_Parser_Term_unreachable_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -2789,7 +2787,6 @@ lean_object* l_Lean_Parser_Term_have___closed__4; lean_object* l_Lean_Parser_Term_byTactic___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_pipeProj___elambda__1___closed__5; lean_object* l_Lean_Parser_Term_fromTerm_formatter___closed__3; -extern lean_object* l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__3; lean_object* l_Lean_Parser_Tactic_quot___closed__7; lean_object* l_Lean_Parser_Term_explicitUniv_parenthesizer___closed__5; lean_object* l_Lean_Parser_Term_letIdDecl___closed__5; @@ -2927,11 +2924,9 @@ lean_object* l_Lean_Parser_Term_haveAssign_formatter___closed__4; lean_object* l_Lean_Parser_Term_borrowed___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_fun_parenthesizer___closed__3; lean_object* l_Lean_Parser_Term_stateRefT_parenthesizer___closed__2; -extern lean_object* l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__5; lean_object* l___regBuiltin_Lean_Parser_Term_cdot_formatter(lean_object*); lean_object* l_Lean_Parser_Term_explicit_formatter___closed__3; lean_object* l_Lean_Parser_Term_assert_formatter___closed__5; -extern lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__11; lean_object* l_Lean_Parser_Tactic_seq1___closed__1; lean_object* l_Lean_Parser_Tactic_tacticSeq1Indented___closed__3; lean_object* l___regBuiltin_Lean_Parser_Level_quot_parenthesizer(lean_object*); @@ -2947,6 +2942,7 @@ lean_object* l_Lean_Parser_Term_attributes_formatter___closed__5; extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_261____closed__1; lean_object* l_Lean_Parser_Term_subst___closed__2; lean_object* l_Lean_Parser_Term_structInst___elambda__1___closed__31; +extern lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__19; lean_object* l_Lean_Parser_Term_whereDecls_formatter___closed__10; lean_object* l_Lean_Parser_Term_implicitBinder_formatter___closed__1; lean_object* l_Lean_Parser_Term_typeOf_formatter___closed__2; @@ -3052,6 +3048,7 @@ lean_object* l_Lean_Parser_Term_typeSpec___closed__1; lean_object* l_Lean_Parser_Term_assert___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_attrKind___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_panic___closed__3; +extern lean_object* l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__7; lean_object* l_Lean_Parser_Term_nomatch_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_parser_x21___elambda__1___closed__7; lean_object* l_Lean_Parser_Term_namedPattern_formatter___closed__1; @@ -3091,6 +3088,7 @@ lean_object* l_Lean_Parser_Term_fun_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_structInst_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_optIdent_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_let_parenthesizer___closed__3; +extern lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__11; lean_object* l_Lean_Parser_Tactic_quot___closed__5; lean_object* l___regBuiltin_Lean_Parser_Term_match_formatter___closed__1; lean_object* l_Lean_Parser_Term_basicFun___closed__8; @@ -3102,7 +3100,6 @@ lean_object* l___regBuiltin_Lean_Parser_Term_ensureExpectedType_formatter(lean_o lean_object* l_Lean_Parser_Term_tparser_x21_formatter___closed__4; lean_object* l_Lean_Parser_Term_borrowed___closed__6; lean_object* l_Lean_Parser_Term_byTactic_parenthesizer___closed__1; -extern lean_object* l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__7; lean_object* l_Lean_Parser_Term_unreachable___elambda__1___closed__9; lean_object* l_Lean_Parser_Term_matchAlt___closed__1; lean_object* l_Lean_Parser_Term_doubleQuotedName___closed__2; @@ -3147,7 +3144,6 @@ lean_object* l___regBuiltin_Lean_Parser_Term_parser_x21_parenthesizer(lean_objec lean_object* l_Lean_Parser_Term_macroDollarArg___closed__4; lean_object* l_Lean_Parser_Level_quot___closed__6; lean_object* l_Lean_Parser_Term_match___elambda__1___closed__10; -extern lean_object* l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__3; lean_object* l_Lean_Parser_Term_stateRefT___elambda__1___closed__4; lean_object* l___regBuiltin_Lean_Parser_Term_num_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Term_have_formatter___closed__8; @@ -3186,6 +3182,7 @@ lean_object* l_Lean_Parser_Tactic_tacticSeqBracketed___closed__6; lean_object* l_Lean_Parser_Term_app_formatter___closed__7; lean_object* l_Lean_Parser_Term_structInstArrayRef___closed__6; lean_object* l_Lean_Parser_Term_letIdDecl___closed__4; +extern lean_object* l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__3; lean_object* l___regBuiltin_Lean_Parser_Term_hole_formatter(lean_object*); lean_object* l_Lean_Parser_Term_binderTactic___closed__6; lean_object* l___regBuiltinParser_Lean_Parser_Term_dbgTrace(lean_object*); @@ -3210,6 +3207,7 @@ lean_object* l_Lean_Parser_Term_scientific___closed__1; lean_object* l_Lean_Parser_Term_suffices_parenthesizer___closed__6; extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15698____closed__4; lean_object* l_Lean_Parser_Term_attrKind___elambda__1___closed__5; +extern lean_object* l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__5; lean_object* l_Lean_Parser_Term_letRecDecls___closed__1; lean_object* l_Lean_Parser_Term_let_x21___elambda__1___closed__6; lean_object* l_Lean_Parser_Term_explicit; @@ -3284,6 +3282,7 @@ lean_object* l_Lean_Parser_Term_macroDollarArg___closed__6; lean_object* l_Lean_Parser_Term_basicFun___closed__4; lean_object* l___regBuiltin_Lean_Parser_Term_show_parenthesizer(lean_object*); lean_object* l___regBuiltin_Lean_Parser_Term_namedPattern_formatter(lean_object*); +extern lean_object* l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__3; lean_object* l_Lean_Parser_Term_have___closed__5; lean_object* l___regBuiltin_Lean_Parser_Term_unreachable_formatter___closed__1; lean_object* l_Lean_Parser_Tactic_tacticSeq1Indented___closed__2; @@ -3306,7 +3305,6 @@ lean_object* l_Lean_Parser_Term_show_formatter___closed__1; lean_object* l_Lean_Parser_Term_suffices_formatter___closed__6; lean_object* l_Lean_Parser_Term_optIdent_formatter___closed__2; lean_object* l_Lean_Parser_Term_prop_formatter___closed__1; -extern lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__7; lean_object* l_Lean_Parser_Term_funImplicitBinder___elambda__1___closed__3; lean_object* l_Lean_Parser_Tactic_quotSeq___elambda__1___closed__6; lean_object* l_Lean_Parser_Term_namedPattern___closed__2; @@ -3314,6 +3312,7 @@ lean_object* l_Lean_Parser_Term_attrKind_formatter___closed__6; lean_object* l_Lean_Parser_Term_haveAssign_formatter___closed__1; lean_object* l_Lean_Parser_Term_dynamicQuot___elambda__1___closed__11; lean_object* l_Lean_Parser_Tactic_tacticSeq1Indented___elambda__1___closed__16; +extern lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__9; lean_object* l_Lean_Parser_Term_sort_parenthesizer___closed__2; lean_object* l_Lean_Parser_Term_sorry___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_proj___closed__6; @@ -3408,6 +3407,7 @@ lean_object* l___regBuiltin_Lean_Parser_Term_borrowed_formatter(lean_object*); lean_object* l_Lean_Parser_Term_tupleTail_formatter___closed__4; lean_object* l_Lean_Parser_Term_dbgTrace___elambda__1___closed__8; lean_object* l_Lean_Parser_Term_letEqnsDecl_parenthesizer___closed__1; +extern lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__17; lean_object* l_Lean_Parser_Term_suffices; lean_object* l_Lean_Parser_Term_forall_formatter___closed__2; lean_object* l_Lean_Parser_Term_binderDefault_formatter___closed__1; @@ -3415,6 +3415,7 @@ lean_object* l_Lean_Parser_Term_paren_parenthesizer___closed__9; lean_object* l_Lean_Parser_Term_attrInstance___elambda__1___closed__5; lean_object* l_Lean_Parser_Term_paren___elambda__1___closed__5; lean_object* l_Lean_Parser_Term_letIdLhs; +extern lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__3; lean_object* l_Lean_Parser_Term_explicitBinder_formatter___closed__3; lean_object* l_Lean_Parser_Term_suffices_formatter___closed__3; lean_object* l_Lean_Parser_Term_funBinder_quot___elambda__1___closed__11; @@ -3472,6 +3473,7 @@ lean_object* l_Lean_Parser_Term_letPatDecl___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_structInst; lean_object* l_Lean_Parser_symbolFnAux(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Level_paren_parenthesizer___closed__2; +extern lean_object* l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__1; lean_object* l_Lean_Parser_Term_show___elambda__1___closed__4; lean_object* l_Lean_Parser_Term_match___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_scoped_formatter___closed__1; @@ -3546,6 +3548,7 @@ lean_object* l_Lean_Parser_Term_matchDiscr_parenthesizer___closed__5; lean_object* l_Lean_Parser_Tactic_quotSeq___closed__2; lean_object* l_Lean_Parser_Term_have_parenthesizer___closed__5; lean_object* l_Lean_PrettyPrinter_Formatter_notFollowedBy_formatter___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__7; lean_object* l_Lean_Parser_Term_byTactic___closed__2; lean_object* l_Lean_Parser_Term_attrKind___closed__5; lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3590____closed__21; @@ -3585,7 +3588,6 @@ lean_object* l_Lean_Parser_Term_suffices___closed__6; lean_object* l_Lean_Parser_Term_fun_formatter___closed__4; lean_object* l_Lean_PrettyPrinter_Formatter_withoutPosition_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_depArrow___closed__7; -extern lean_object* l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__1; lean_object* l_Lean_Parser_Tactic_tacticSeqBracketed_parenthesizer___closed__7; lean_object* l___regBuiltinParser_Lean_Parser_Term_paren(lean_object*); lean_object* l_Lean_Parser_Term_arrow___closed__3; @@ -3611,7 +3613,6 @@ lean_object* l___regBuiltin_Lean_Parser_Term_letrec_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_funSimpleBinder___closed__4; lean_object* l_Lean_Parser_Term_emptyC___elambda__1___closed__7; lean_object* l_Lean_Parser_Term_binderDefault___closed__5; -extern lean_object* l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__5; lean_object* l_Lean_Parser_Term_attrKind___elambda__1___closed__7; lean_object* l_Lean_Parser_Term_arrayRef___elambda__1___closed__5; lean_object* l_Lean_Parser_Term_structInst_parenthesizer___closed__14; @@ -3649,7 +3650,6 @@ lean_object* l_Lean_Parser_Term_namedArgument___closed__4; extern lean_object* l_Lean_PrettyPrinter_Parenthesizer_level_parenthesizer___closed__2; lean_object* l_Lean_Parser_Tactic_tacticSeq1Indented___elambda__1___closed__5; extern lean_object* l_addParenHeuristic___closed__1; -extern lean_object* l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__17; lean_object* l_Lean_Parser_Term_borrowed___elambda__1___closed__3; lean_object* l_Lean_Parser_Term_explicitBinder_parenthesizer___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_let_x2a___closed__1; @@ -3682,6 +3682,7 @@ extern lean_object* l_Lean_Parser_antiquotNestedExpr___elambda__1___closed__2; lean_object* l_Lean_Parser_Level_quot_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_emptyC_formatter___closed__1; lean_object* l_Lean_Parser_ppDedent_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__1; lean_object* l_Lean_Parser_Term_let_x21___closed__2; lean_object* l_Lean_Parser_Term_funImplicitBinder___closed__6; lean_object* l_Lean_Parser_Term_typeOf___closed__6; @@ -3764,7 +3765,6 @@ lean_object* l_Lean_Parser_Term_proj___elambda__1___closed__3; lean_object* l_Lean_PrettyPrinter_Formatter_categoryParser_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_seq1_formatter___closed__2; lean_object* l_Lean_Parser_Term_letDecl_parenthesizer___closed__6; -extern lean_object* l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__11; lean_object* l_Lean_Parser_Term_show_parenthesizer___closed__2; lean_object* l_Lean_Parser_Term_app___closed__4; lean_object* l_Lean_Parser_Term_stateRefT___closed__6; @@ -5028,7 +5028,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_tacticSeqBracketed_formatter___cl _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__22; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__22; x_2 = l_Lean_Parser_Tactic_tacticSeqBracketed_formatter___closed__6; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -5070,7 +5070,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_tacticSeqBracketed_formatter___cl _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__22; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__22; x_2 = l_Lean_Parser_Tactic_tacticSeqBracketed_formatter___closed__10; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -5371,7 +5371,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_tacticSeqBracketed_parenthesizer_ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__24; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__24; x_2 = l_Lean_Parser_Tactic_tacticSeqBracketed_parenthesizer___closed__4; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -5403,7 +5403,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_tacticSeqBracketed_parenthesizer_ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__24; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__24; x_2 = l_Lean_Parser_antiquotNestedExpr_parenthesizer___closed__3; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -5762,7 +5762,7 @@ _start: { lean_object* x_6; lean_object* x_7; lean_object* x_8; x_6 = l_Lean_Parser_leadingNode_formatter___closed__1; -x_7 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__11; +x_7 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__11; x_8 = l_Lean_PrettyPrinter_Formatter_andthen_formatter(x_6, x_7, x_1, x_2, x_3, x_4, x_5); return x_8; } @@ -5791,7 +5791,7 @@ _start: { lean_object* x_6; lean_object* x_7; lean_object* x_8; x_6 = l_Lean_Parser_Level_num_parenthesizer___closed__1; -x_7 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__19; +x_7 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__19; x_8 = l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer(x_6, x_7, x_1, x_2, x_3, x_4, x_5); return x_8; } @@ -5893,7 +5893,7 @@ _start: { lean_object* x_6; lean_object* x_7; lean_object* x_8; x_6 = l_Lean_Parser_leadingNode_formatter___closed__1; -x_7 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__1; +x_7 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__1; x_8 = l_Lean_PrettyPrinter_Formatter_andthen_formatter(x_6, x_7, x_1, x_2, x_3, x_4, x_5); return x_8; } @@ -5922,7 +5922,7 @@ _start: { lean_object* x_6; lean_object* x_7; lean_object* x_8; x_6 = l_Lean_Parser_Level_num_parenthesizer___closed__1; -x_7 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__1; +x_7 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__1; x_8 = l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer(x_6, x_7, x_1, x_2, x_3, x_4, x_5); return x_8; } @@ -6013,7 +6013,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_myMacro____x40_Init_Notation___hyg_1625____closed__2; -x_2 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__3; +x_2 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__3; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } @@ -6036,7 +6036,7 @@ _start: { lean_object* x_6; lean_object* x_7; lean_object* x_8; x_6 = l_Lean_Parser_leadingNode_formatter___closed__1; -x_7 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__3; +x_7 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__3; x_8 = l_Lean_PrettyPrinter_Formatter_andthen_formatter(x_6, x_7, x_1, x_2, x_3, x_4, x_5); return x_8; } @@ -6065,7 +6065,7 @@ _start: { lean_object* x_6; lean_object* x_7; lean_object* x_8; x_6 = l_Lean_Parser_Level_num_parenthesizer___closed__1; -x_7 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__5; +x_7 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__5; x_8 = l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer(x_6, x_7, x_1, x_2, x_3, x_4, x_5); return x_8; } @@ -6156,7 +6156,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_myMacro____x40_Init_Notation___hyg_1625____closed__2; -x_2 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__7; +x_2 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__7; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } @@ -6179,7 +6179,7 @@ _start: { lean_object* x_6; lean_object* x_7; lean_object* x_8; x_6 = l_Lean_Parser_leadingNode_formatter___closed__1; -x_7 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__5; +x_7 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__5; x_8 = l_Lean_PrettyPrinter_Formatter_andthen_formatter(x_6, x_7, x_1, x_2, x_3, x_4, x_5); return x_8; } @@ -6208,7 +6208,7 @@ _start: { lean_object* x_6; lean_object* x_7; lean_object* x_8; x_6 = l_Lean_Parser_Level_num_parenthesizer___closed__1; -x_7 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__9; +x_7 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__9; x_8 = l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer(x_6, x_7, x_1, x_2, x_3, x_4, x_5); return x_8; } @@ -6299,7 +6299,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_myMacro____x40_Init_Notation___hyg_1625____closed__2; -x_2 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__11; +x_2 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__11; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } @@ -6322,7 +6322,7 @@ _start: { lean_object* x_6; lean_object* x_7; lean_object* x_8; x_6 = l_Lean_Parser_leadingNode_formatter___closed__1; -x_7 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__7; +x_7 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__7; x_8 = l_Lean_PrettyPrinter_Formatter_andthen_formatter(x_6, x_7, x_1, x_2, x_3, x_4, x_5); return x_8; } @@ -6351,7 +6351,7 @@ _start: { lean_object* x_6; lean_object* x_7; lean_object* x_8; x_6 = l_Lean_Parser_Level_num_parenthesizer___closed__1; -x_7 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__13; +x_7 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__13; x_8 = l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer(x_6, x_7, x_1, x_2, x_3, x_4, x_5); return x_8; } @@ -6744,7 +6744,7 @@ static lean_object* _init_l_Lean_Parser_Term_type_formatter___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__5; +x_1 = l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__5; x_2 = l_Lean_Parser_Level_paren_formatter___closed__2; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -6768,7 +6768,7 @@ static lean_object* _init_l_Lean_Parser_Term_type_formatter___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__1; +x_1 = l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__1; x_2 = l_Lean_Parser_Term_type_formatter___closed__4; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -6868,7 +6868,7 @@ static lean_object* _init_l_Lean_Parser_Term_type_parenthesizer___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__5; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__5; x_2 = l_Lean_Parser_Level_max_parenthesizer___closed__2; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -6892,7 +6892,7 @@ static lean_object* _init_l_Lean_Parser_Term_type_parenthesizer___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__1; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__1; x_2 = l_Lean_Parser_Term_type_parenthesizer___closed__4; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -12478,7 +12478,7 @@ lean_object* l_Lean_Parser_Term_optSemicolon_formatter(lean_object* x_1, lean_ob _start: { lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; -x_7 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__22; +x_7 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__22; x_8 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_8, 0, x_7); lean_closure_set(x_8, 1, x_1); @@ -12789,7 +12789,7 @@ lean_object* l_Lean_Parser_Term_optSemicolon_parenthesizer(lean_object* x_1, lea _start: { lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; -x_7 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__24; +x_7 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__24; x_8 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_8, 0, x_7); lean_closure_set(x_8, 1, x_1); @@ -15938,7 +15938,7 @@ static lean_object* _init_l_Lean_Parser_Term_structInst_formatter___closed__18() _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__10; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__10; x_2 = l_Lean_Parser_Term_structInst_formatter___closed__17; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -16444,7 +16444,7 @@ static lean_object* _init_l_Lean_Parser_Term_structInst_parenthesizer___closed__ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__12; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__12; x_2 = l_Lean_Parser_Term_structInst_parenthesizer___closed__13; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -20495,7 +20495,7 @@ static lean_object* _init_l_Lean_Parser_Term_forall_formatter___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__16; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__16; x_2 = l_Lean_Parser_Term_forall_formatter___closed__5; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -20751,7 +20751,7 @@ static lean_object* _init_l_Lean_Parser_Term_forall_parenthesizer___closed__5() _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__18; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__18; x_2 = l_Lean_Parser_Term_forall_parenthesizer___closed__4; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -21972,8 +21972,8 @@ static lean_object* _init_l_Lean_Parser_Term_matchDiscr_formatter___closed__2() _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__3; -x_2 = l_Lean_Parser_mkAntiquot_formatter___closed__8; +x_1 = l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__3; +x_2 = l_Lean_Parser_mkAntiquot_formatter___closed__5; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); lean_closure_set(x_3, 1, x_2); @@ -22113,7 +22113,7 @@ static lean_object* _init_l_Lean_Parser_Term_matchAlts_formatter___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__7; +x_1 = l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__7; x_2 = l_Lean_Parser_Term_matchAlts_formatter___closed__2; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -22125,7 +22125,7 @@ static lean_object* _init_l_Lean_Parser_Term_matchAlts_formatter___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__22; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__22; x_2 = l_Lean_Parser_Term_matchAlts_formatter___closed__3; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -22177,7 +22177,7 @@ x_15 = l_Lean_Parser_Term_matchAlts_formatter___closed__5; x_16 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_16, 0, x_15); lean_closure_set(x_16, 1, x_14); -x_17 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__22; +x_17 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__22; x_18 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_18, 0, x_17); lean_closure_set(x_18, 1, x_16); @@ -22202,7 +22202,7 @@ x_26 = l_Lean_Parser_Term_matchAlts_formatter___closed__6; x_27 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_27, 0, x_26); lean_closure_set(x_27, 1, x_14); -x_28 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__22; +x_28 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__22; x_29 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_29, 0, x_28); lean_closure_set(x_29, 1, x_27); @@ -22530,7 +22530,7 @@ static lean_object* _init_l_Lean_Parser_Term_matchAlts_parenthesizer___closed__2 _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__7; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__7; x_2 = l_Lean_Parser_antiquotNestedExpr_parenthesizer___closed__3; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -22542,7 +22542,7 @@ static lean_object* _init_l_Lean_Parser_Term_matchAlts_parenthesizer___closed__3 _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__24; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__24; x_2 = l_Lean_Parser_Term_matchAlts_parenthesizer___closed__2; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -22584,7 +22584,7 @@ x_15 = l_Lean_Parser_Term_matchAlts_parenthesizer___closed__4; x_16 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_16, 0, x_15); lean_closure_set(x_16, 1, x_14); -x_17 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__24; +x_17 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__24; x_18 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_18, 0, x_17); lean_closure_set(x_18, 1, x_16); @@ -22609,7 +22609,7 @@ x_26 = l_Lean_Parser_Tactic_tacticSeqBracketed_parenthesizer___closed__3; x_27 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_27, 0, x_26); lean_closure_set(x_27, 1, x_14); -x_28 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__24; +x_28 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__24; x_29 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_29, 0, x_28); lean_closure_set(x_29, 1, x_27); @@ -24043,7 +24043,7 @@ static lean_object* _init_l_Lean_Parser_Term_basicFun_formatter___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__16; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__16; x_2 = l_Lean_Parser_Term_basicFun_formatter___closed__1; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -24381,7 +24381,7 @@ static lean_object* _init_l_Lean_Parser_Term_basicFun_parenthesizer___closed__2( _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__18; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__18; x_2 = l_Lean_Parser_Term_basicFun_parenthesizer___closed__1; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -24837,7 +24837,7 @@ static lean_object* _init_l_Lean_Parser_Term_optExprPrecedence_formatter___close _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_mkAntiquot_formatter___closed__8; +x_1 = l_Lean_Parser_mkAntiquot_formatter___closed__5; x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_atomic_formatter), 6, 1); lean_closure_set(x_2, 0, x_1); return x_2; @@ -25987,7 +25987,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = l_Lean_Parser_Term_quotedName___elambda__1___closed__2; x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__9; +x_3 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__9; x_4 = lean_alloc_closure((void*)(l_Lean_Parser_leadingNode_formatter___boxed), 8, 3); lean_closure_set(x_4, 0, x_1); lean_closure_set(x_4, 1, x_2); @@ -26043,7 +26043,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = l_Lean_Parser_Term_quotedName___elambda__1___closed__2; x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__17; +x_3 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__17; x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer___boxed), 8, 3); lean_closure_set(x_4, 0, x_1); lean_closure_set(x_4, 1, x_2); @@ -26350,8 +26350,8 @@ static lean_object* _init_l_Lean_Parser_Term_doubleQuotedName_formatter___closed _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__3; -x_2 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__9; +x_1 = l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__3; +x_2 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__9; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); lean_closure_set(x_3, 1, x_2); @@ -26430,8 +26430,8 @@ static lean_object* _init_l_Lean_Parser_Term_doubleQuotedName_parenthesizer___cl _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__3; -x_2 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__17; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__3; +x_2 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__17; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); lean_closure_set(x_3, 1, x_2); @@ -27772,7 +27772,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Term_explicitBinder_formatter___closed__3; -x_2 = l_Lean_Parser_mkAntiquot_formatter___closed__11; +x_2 = l_Lean_Parser_mkAntiquot_formatter___closed__8; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); lean_closure_set(x_3, 1, x_2); @@ -27813,7 +27813,7 @@ static lean_object* _init_l_Lean_Parser_Term_letIdLhs_formatter___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__16; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__16; x_2 = l_Lean_Parser_Term_letIdLhs_formatter___closed__2; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -27847,7 +27847,7 @@ static lean_object* _init_l_Lean_Parser_Term_letIdLhs_formatter___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__1; +x_1 = l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__1; x_2 = l_Lean_Parser_Term_letIdLhs_formatter___closed__5; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -27933,7 +27933,7 @@ static lean_object* _init_l_Lean_Parser_Term_letPatDecl_formatter___closed__2() _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_mkAntiquot_formatter___closed__11; +x_1 = l_Lean_Parser_mkAntiquot_formatter___closed__8; x_2 = l_Lean_Parser_Term_letPatDecl_formatter___closed__1; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -28214,7 +28214,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Term_explicitBinder_parenthesizer___closed__3; -x_2 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__17; +x_2 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__15; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); lean_closure_set(x_3, 1, x_2); @@ -28255,7 +28255,7 @@ static lean_object* _init_l_Lean_Parser_Term_letIdLhs_parenthesizer___closed__3( _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__18; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__18; x_2 = l_Lean_Parser_Term_letIdLhs_parenthesizer___closed__2; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -28289,7 +28289,7 @@ static lean_object* _init_l_Lean_Parser_Term_letIdLhs_parenthesizer___closed__6( _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__1; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__1; x_2 = l_Lean_Parser_Term_letIdLhs_parenthesizer___closed__5; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -28375,7 +28375,7 @@ static lean_object* _init_l_Lean_Parser_Term_letPatDecl_parenthesizer___closed__ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__17; +x_1 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__15; x_2 = l_Lean_Parser_Term_letPatDecl_parenthesizer___closed__1; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -28453,7 +28453,7 @@ static lean_object* _init_l_Lean_Parser_Term_letDecl_parenthesizer___closed__1() _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__5; +x_1 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__4; x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_notFollowedBy_parenthesizer___boxed), 5, 1); lean_closure_set(x_2, 0, x_1); return x_2; @@ -31300,8 +31300,8 @@ static lean_object* _init_l_Lean_Parser_Term_attrArg_formatter___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__5; -x_2 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__1; +x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__5; +x_2 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__1; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_orelse_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); lean_closure_set(x_3, 1, x_2); @@ -31345,7 +31345,7 @@ static lean_object* _init_l_Lean_Parser_Term_attrInstance_formatter___closed__3( _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__16; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__16; x_2 = l_Lean_Parser_Term_attrInstance_formatter___closed__2; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -31873,8 +31873,8 @@ static lean_object* _init_l_Lean_Parser_Term_attrArg_parenthesizer___closed__1() _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__9; -x_2 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__1; +x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__9; +x_2 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__1; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); lean_closure_set(x_3, 1, x_2); @@ -31916,7 +31916,7 @@ static lean_object* _init_l_Lean_Parser_Term_attrInstance_parenthesizer___closed _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_646____closed__18; +x_1 = l_Lean_Parser_initFn____x40_Lean_Parser_Extra___hyg_637____closed__18; x_2 = l_Lean_Parser_Term_attrInstance_parenthesizer___closed__2; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -32153,7 +32153,7 @@ static lean_object* _init_l_Lean_Parser_Term_letrec_parenthesizer___closed__2() _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__6; +x_1 = l_Lean_Parser_mkAntiquot_parenthesizer___rarg___closed__5; x_2 = lean_alloc_closure((void*)(l_Lean_Parser_group_parenthesizer), 6, 1); lean_closure_set(x_2, 0, x_1); return x_2; @@ -34648,7 +34648,7 @@ static lean_object* _init_l_Lean_Parser_Term_ensureTypeOf_formatter___closed__3( _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_957____closed__5; +x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_948____closed__5; x_2 = l_Lean_Parser_antiquotNestedExpr_formatter___closed__2; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -34740,7 +34740,7 @@ static lean_object* _init_l_Lean_Parser_Term_ensureTypeOf_parenthesizer___closed _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__9; +x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__9; x_2 = l_Lean_Parser_antiquotNestedExpr_parenthesizer___closed__1; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -35145,7 +35145,7 @@ static lean_object* _init_l_Lean_Parser_Term_ensureExpectedType_parenthesizer___ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_870____closed__9; +x_1 = l_Lean_initFn____x40_Lean_Parser_Extra___hyg_861____closed__9; x_2 = l_Lean_Parser_Term_explicit_parenthesizer___closed__2; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -35973,7 +35973,7 @@ static lean_object* _init_l_Lean_Parser_Term_app_formatter___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__5; +x_1 = l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__5; x_2 = l_Lean_Parser_Term_app_formatter___closed__4; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -35985,7 +35985,7 @@ static lean_object* _init_l_Lean_Parser_Term_app_formatter___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__1; +x_1 = l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__1; x_2 = l_Lean_Parser_Term_app_formatter___closed__5; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -36185,7 +36185,7 @@ static lean_object* _init_l_Lean_Parser_Term_app_parenthesizer___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__5; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__5; x_2 = l_Lean_Parser_Term_app_parenthesizer___closed__4; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -36197,7 +36197,7 @@ static lean_object* _init_l_Lean_Parser_Term_app_parenthesizer___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__1; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__1; x_2 = l_Lean_Parser_Term_app_parenthesizer___closed__5; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -36466,7 +36466,7 @@ static lean_object* _init_l_Lean_Parser_Term_proj_formatter___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__3; +x_1 = l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__3; x_2 = l_Lean_Parser_Term_proj_formatter___closed__2; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -36532,7 +36532,7 @@ static lean_object* _init_l_Lean_Parser_Term_proj_parenthesizer___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__3; x_2 = l_Lean_Parser_Term_proj_parenthesizer___closed__2; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -36792,7 +36792,7 @@ static lean_object* _init_l_Lean_Parser_Term_arrayRef_formatter___closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__3; +x_1 = l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__3; x_2 = l_Lean_Parser_Term_structInstArrayRef_formatter___closed__3; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -36834,7 +36834,7 @@ static lean_object* _init_l_Lean_Parser_Term_arrayRef_parenthesizer___closed__1( _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__3; x_2 = l_Lean_Parser_Term_structInstArrayRef_parenthesizer___closed__3; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -37631,7 +37631,7 @@ static lean_object* _init_l_Lean_Parser_Term_explicitUniv_formatter___closed__5( _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__3; +x_1 = l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__3; x_2 = l_Lean_Parser_Term_explicitUniv_formatter___closed__4; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -37734,7 +37734,7 @@ static lean_object* _init_l_Lean_Parser_Term_explicitUniv_parenthesizer___closed _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__3; x_2 = l_Lean_Parser_Term_explicitUniv_parenthesizer___closed__3; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -38010,7 +38010,7 @@ static lean_object* _init_l_Lean_Parser_Term_namedPattern_formatter___closed__1( _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__3; +x_1 = l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__3; x_2 = l_Lean_Parser_Term_explicit_formatter___closed__3; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); lean_closure_set(x_3, 0, x_1); @@ -38064,7 +38064,7 @@ static lean_object* _init_l_Lean_Parser_Term_namedPattern_parenthesizer___closed _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__3; x_2 = l_Lean_Parser_Term_explicit_parenthesizer___closed__3; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); lean_closure_set(x_3, 0, x_1); diff --git a/stage0/stdlib/Lean/PrettyPrinter/Delaborator/Builtins.c b/stage0/stdlib/Lean/PrettyPrinter/Delaborator/Builtins.c index 0e762fdd8b..35e1c91218 100644 --- a/stage0/stdlib/Lean/PrettyPrinter/Delaborator/Builtins.c +++ b/stage0/stdlib/Lean/PrettyPrinter/Delaborator/Builtins.c @@ -279,7 +279,6 @@ lean_object* l___private_Lean_PrettyPrinter_Delaborator_Builtins_0__Lean_PrettyP lean_object* l_Lean_PrettyPrinter_Delaborator_delabMVar___closed__3; uint8_t l_Array_anyMUnsafe_any___at_Lean_PrettyPrinter_Delaborator_delabLam___spec__1(lean_object*, lean_object*, size_t, size_t); lean_object* l___private_Lean_PrettyPrinter_Delaborator_Builtins_0__Lean_PrettyPrinter_Delaborator_delabBinders_match__1(lean_object*); -extern lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__10; uint8_t lean_nat_dec_eq(lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Term_syntheticHole___elambda__1___closed__1; lean_object* l___regBuiltin_Lean_PrettyPrinter_Delaborator_delabConsList___closed__1; @@ -287,6 +286,7 @@ uint8_t l_Array_anyMUnsafe_any___at_Lean_PrettyPrinter_Delaborator_hasIdent___sp lean_object* l_Std_AssocList_find_x3f___at_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander___spec__6(lean_object*, lean_object*); extern lean_object* l_Array_forInUnsafe_loop___at___private_Init_NotationExtra_0__Lean_mkHintBody___spec__1___closed__2; lean_object* l_Lean_PrettyPrinter_Delaborator_delabStructureInstance___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__6; extern lean_object* l_myMacro____x40_Init_Notation___hyg_10790____closed__15; lean_object* l_Lean_PrettyPrinter_Delaborator_delabProj_match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Delaborator_delabLit___closed__1; @@ -305,12 +305,12 @@ lean_object* l_Lean_PrettyPrinter_Delaborator_delabStructureInstance_match__3(le lean_object* l_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander_match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Delaborator_delabCoe___closed__2; lean_object* l_Lean_PrettyPrinter_Delaborator_delabCoe___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__6; extern lean_object* l_myMacro____x40_Init_Notation___hyg_9474____closed__6; lean_object* l_Lean_PrettyPrinter_Delaborator_delabAppExplicit_match__1(lean_object*); extern lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__29; lean_object* l_Lean_PrettyPrinter_Delaborator_delabMData___closed__1; lean_object* l_Lean_getConstInfo___at_Lean_PrettyPrinter_Delaborator_delabAppMatch___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__10; lean_object* l_Lean_PrettyPrinter_Delaborator_delabSort___closed__5; lean_object* l_Lean_PrettyPrinter_Delaborator_delabDo___closed__1; lean_object* l_Lean_PrettyPrinter_Delaborator_withAppFn___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -619,7 +619,6 @@ lean_object* l_Lean_PrettyPrinter_Delaborator_delabSort_match__1(lean_object*); lean_object* l_Lean_PrettyPrinter_Delaborator_delabDoElems___lambda__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_PrettyPrinter_Delaborator_getExprKind___closed__5; lean_object* l_Lean_PrettyPrinter_Delaborator_delabForall_match__1(lean_object*); -extern lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__2; lean_object* l_Lean_getPPExplicit___boxed(lean_object*); lean_object* l_Lean_PrettyPrinter_Delaborator_delabOfScientific___lambda__1___closed__1; lean_object* l_Lean_addMessageContextFull___at_Lean_Meta_instAddMessageContextMetaM___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -637,6 +636,7 @@ lean_object* l_Lean_PrettyPrinter_Delaborator_delabLam_match__1(lean_object*); lean_object* l_Lean_PrettyPrinter_Delaborator_delabAppMatch___lambda__3___closed__6; extern lean_object* l_Lean_PrettyPrinter_Delaborator_appUnexpanderAttribute; lean_object* l_Lean_PrettyPrinter_Delaborator_delabAppImplicit___closed__6; +extern lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__2; lean_object* l_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander_match__3___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Array_mapMUnsafe_map___at_Lean_PrettyPrinter_Delaborator_delabAppMatch___spec__3(size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_PrettyPrinter_Delaborator_delabBVar(lean_object*); @@ -705,14 +705,12 @@ lean_object* l_Lean_PrettyPrinter_Delaborator_delabLetE_match__1(lean_object*); lean_object* l_unsafeCast(lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_PrettyPrinter_Delaborator_Builtins_0__Lean_PrettyPrinter_Delaborator_delabBinders___closed__1; uint8_t l_List_isEmpty___rarg(lean_object*); -extern lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__4; lean_object* l_Lean_PrettyPrinter_Delaborator_delabAppExplicit___closed__4; lean_object* l_Lean_PrettyPrinter_Delaborator_delabAppImplicit___closed__5; lean_object* l_Lean_PrettyPrinter_Delaborator_getExpr(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_PrettyPrinter_Delaborator_Builtins_0__Lean_PrettyPrinter_Delaborator_unresolveOpenDecls___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Delaborator_delabLit_match__1(lean_object*); lean_object* lean_usize_to_nat(size_t); -extern lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__8; lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_withLetDeclImp___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Std_PersistentHashMap_findAtAux___at_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_throwError___at_Lean_PrettyPrinter_Delaborator_delabAppMatch___spec__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -722,6 +720,7 @@ lean_object* l_Array_mapMUnsafe_map___at_Lean_PrettyPrinter_Delaborator_delabDo_ extern lean_object* l_Lean_Parser_Tactic_rwRule___closed__3; lean_object* l_Lean_PrettyPrinter_Delaborator_delabForall___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_PrettyPrinter_Delaborator_Builtins_0__Lean_PrettyPrinter_Delaborator_delabBinders___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__8; lean_object* l_Lean_PrettyPrinter_Delaborator_delabAppImplicit___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Delaborator_delabDoElems___lambda__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_setMCtx(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -733,6 +732,7 @@ lean_object* l_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander(lean_object lean_object* l_Lean_PrettyPrinter_Delaborator_delabStructureInstance___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_mapMUnsafe_map___at_Lean_PrettyPrinter_Delaborator_delabStructureInstance___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Delaborator_delabAppExplicit___closed__1; +extern lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__4; lean_object* l_Lean_PrettyPrinter_Delaborator_delabForall___lambda__1___closed__1; lean_object* l___private_Lean_PrettyPrinter_Delaborator_Builtins_0__Lean_PrettyPrinter_Delaborator_shouldGroupWithNext_match__1(lean_object*); lean_object* l_Lean_Expr_isConstructorApp_x3f(lean_object*, lean_object*); @@ -21432,7 +21432,7 @@ lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_ x_9 = lean_ctor_get(x_7, 0); x_10 = l_Array_empty___closed__1; x_11 = lean_array_push(x_10, x_9); -x_12 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__10; +x_12 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__10; x_13 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_13, 0, x_12); lean_ctor_set(x_13, 1, x_11); @@ -21453,7 +21453,7 @@ lean_inc(x_16); lean_dec(x_7); x_18 = l_Array_empty___closed__1; x_19 = lean_array_push(x_18, x_16); -x_20 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__10; +x_20 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__10; x_21 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_21, 0, x_20); lean_ctor_set(x_21, 1, x_19); @@ -21685,7 +21685,7 @@ _start: lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; x_9 = l_Array_empty___closed__1; x_10 = lean_array_push(x_9, x_1); -x_11 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__10; +x_11 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__10; x_12 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_12, 0, x_11); lean_ctor_set(x_12, 1, x_10); @@ -22131,7 +22131,7 @@ x_17 = l_Array_empty___closed__1; x_18 = lean_array_push(x_17, x_16); x_19 = l_myMacro____x40_Init_Notation___hyg_521____closed__23; x_20 = lean_array_push(x_18, x_19); -x_21 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__8; +x_21 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__8; x_22 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_22, 0, x_21); lean_ctor_set(x_22, 1, x_20); @@ -22204,13 +22204,13 @@ 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_24, x_27); -x_29 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__6; +x_29 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__6; x_30 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_30, 0, x_29); lean_ctor_set(x_30, 1, x_28); -x_31 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__4; +x_31 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__4; x_32 = lean_array_push(x_31, x_30); -x_33 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__2; +x_33 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__2; x_34 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_34, 0, x_33); lean_ctor_set(x_34, 1, x_32); @@ -22233,13 +22233,13 @@ x_40 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_40, 0, x_39); lean_ctor_set(x_40, 1, x_38); x_41 = lean_array_push(x_37, x_40); -x_42 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__6; +x_42 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__6; x_43 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_43, 0, x_42); lean_ctor_set(x_43, 1, x_41); -x_44 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__4; +x_44 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__4; x_45 = lean_array_push(x_44, x_43); -x_46 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_277____closed__2; +x_46 = l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_268____closed__2; x_47 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_47, 0, x_46); lean_ctor_set(x_47, 1, x_45); diff --git a/stage0/stdlib/Lean/PrettyPrinter/Formatter.c b/stage0/stdlib/Lean/PrettyPrinter/Formatter.c index a455a52e29..739a970d2b 100644 --- a/stage0/stdlib/Lean/PrettyPrinter/Formatter.c +++ b/stage0/stdlib/Lean/PrettyPrinter/Formatter.c @@ -22,16 +22,16 @@ lean_object* l_Lean_PrettyPrinter_Formatter_indent___boxed(lean_object*, lean_ob extern lean_object* l_Lean_Name_toString___closed__1; lean_object* l_Lean_addMessageContextPartial___at_Lean_Core_instAddMessageContextCoreM___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Formatter_ite___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l_Lean_Syntax_isAntiquotSuffixSplice(lean_object*); lean_object* l_Lean_PrettyPrinter_Formatter_categoryParser_formatter___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_myMacro____x40_Init_Notation___hyg_1481____closed__4; lean_object* l_Lean_PrettyPrinter_Formatter_symbol_formatter___closed__9; lean_object* l_Lean_PrettyPrinter_Formatter_visitArgs(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); size_t l_USize_add(size_t, size_t); extern lean_object* l_Lean_fieldIdxKind; -lean_object* l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2437_(lean_object*); -lean_object* l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502_(lean_object*); +lean_object* l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533_(lean_object*); +lean_object* l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2468_(lean_object*); lean_object* l_Lean_PrettyPrinter_Formatter_checkTailWs_formatter___rarg(lean_object*); -lean_object* l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__21; lean_object* l_ReaderT_bind___at_Lean_PrettyPrinter_Formatter_categoryParser_formatter___spec__1(lean_object*, lean_object*); extern lean_object* l_Lean_Syntax_strLitToAtom___closed__3; lean_object* l_Lean_registerTraceClass(lean_object*, lean_object*); @@ -43,6 +43,7 @@ lean_object* l_ReaderT_bind___at_Lean_PrettyPrinter_Formatter_categoryParser_for lean_object* l_Lean_PrettyPrinter_Formatter_numLitNoAntiquot_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_MonadTraverser_getCur___at_Lean_PrettyPrinter_Formatter_visitArgs___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Formatter_eoi_formatter___rarg(lean_object*); +lean_object* l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__6; lean_object* l_Lean_PrettyPrinter_Formatter_identNoAntiquot_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Formatter_setExpected_formatter___boxed(lean_object*); lean_object* l_Lean_PrettyPrinter_mkFormatterAttribute___closed__12; @@ -55,7 +56,6 @@ lean_object* l_Lean_Syntax_MonadTraverser_goUp___at_Lean_PrettyPrinter_Formatter lean_object* l_Lean_PrettyPrinter_Formatter_symbol_formatter___closed__8; lean_object* l_Lean_PrettyPrinter_Formatter_sepByNoAntiquot_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_name_mk_string(lean_object*, lean_object*); -lean_object* l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__6; uint8_t l_USize_decEq(size_t, size_t); lean_object* lean_array_uget(lean_object*, size_t); lean_object* l_Lean_PrettyPrinter_Formatter_pushLine___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -68,21 +68,25 @@ lean_object* l_Lean_PrettyPrinter_Formatter_visitArgs___lambda__1(lean_object*, lean_object* l_Lean_PrettyPrinter_Formatter_rawIdentNoAntiquot_formatter_match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_formatTerm(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_Traverser_up(lean_object*); +lean_object* l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__23; lean_object* l_Lean_PrettyPrinter_Formatter_indent(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Formatter_visitArgs___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_mk_antiquot_formatter(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__10; lean_object* l_Lean_throwError___at_Lean_PrettyPrinter_Formatter_unicodeSymbol_formatter___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Formatter_atomic_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Formatter_trailingNode_formatter___lambda__1___closed__1; lean_object* l_Lean_PrettyPrinter_Formatter_checkInsideQuot_formatter___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Formatter_symbol_formatter_match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Formatter_manyNoAntiquot_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__21; lean_object* l_Lean_PrettyPrinter_mkFormatterAttribute___closed__1; lean_object* l_Lean_PrettyPrinter_format_match__1___rarg(lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Formatter_trailingNode_formatter___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Nat_forM_loop___at_Lean_PrettyPrinter_Formatter_manyNoAntiquot_formatter___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_extract___rarg(lean_object*, lean_object*, lean_object*); extern lean_object* l_term___u2218_____closed__6; +lean_object* l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__19; lean_object* l_Lean_PrettyPrinter_Formatter_ite___rarg(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Formatter_symbol_formatter___closed__10; extern lean_object* l_Array_empty___closed__1; @@ -91,6 +95,7 @@ lean_object* lean_environment_find(lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Formatter_orelse_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Formatter_trailingNode_formatter___lambda__1___closed__2; lean_object* lean_string_utf8_prev(lean_object*, lean_object*); +lean_object* l_Lean_PrettyPrinter_Formatter_withAntiquotSuffixSplice_formatter___boxed(lean_object*); uint8_t l_Lean_checkTraceOption(lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Formatter_instMonadTraverserFormatterM___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Formatter_checkColGt_formatter___rarg(lean_object*); @@ -98,7 +103,6 @@ lean_object* lean_st_ref_get(lean_object*, lean_object*); extern lean_object* l_Lean_instInhabitedParserDescr___closed__1; lean_object* l_Lean_Parser_mkParserState(lean_object*); lean_object* l_Lean_PrettyPrinter_Formatter_categoryParser_formatter___lambda__2___closed__1; -lean_object* l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__12; uint8_t lean_name_eq(lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Formatter_throwBacktrack(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_addTrace___at_Lean_PrettyPrinter_Formatter_categoryParser_formatter___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -111,6 +115,7 @@ lean_object* l_Lean_PrettyPrinter_Formatter_notFollowedByCategoryToken_formatter lean_object* l_Lean_PrettyPrinter_Formatter_instMonadTraverserFormatterM___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Formatter_optionalNoAntiquot_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Formatter_identNoAntiquot_formatter_match__1___rarg(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__11; lean_object* l_Lean_throwError___at_Lean_AttributeImpl_erase___default___spec__1___rarg(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*); @@ -147,13 +152,14 @@ lean_object* lean_string_utf8_byte_size(lean_object*); lean_object* l_Lean_PrettyPrinter_Formatter_categoryParser_formatter___lambda__2___closed__3; lean_object* l_Lean_PrettyPrinter_Formatter_unicodeSymbol_formatter___closed__1; lean_object* l_Lean_PrettyPrinter_Formatter_pushToken_match__2(lean_object*); +lean_object* l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__12; lean_object* l_Lean_PrettyPrinter_Formatter_checkStackTop_formatter___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_runForNodeKind___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Formatter_instCoeArrowFormatterFormatterFormatterAliasValue(lean_object*); lean_object* l_Lean_PrettyPrinter_Formatter_instMonadTraverserFormatterM___closed__4; -lean_object* l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__19; extern lean_object* l_Lean_nameLitKind; -lean_object* l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__11; +lean_object* l_Lean_PrettyPrinter_Formatter_withAntiquotSuffixSplice_formatter(lean_object*); +lean_object* l_Lean_PrettyPrinter_Formatter_withAntiquotSuffixSplice_formatter___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Formatter_visitAtom_match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Formatter_notFollowedBy_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Formatter_checkColGt_formatter___boxed(lean_object*, lean_object*, lean_object*, lean_object*); @@ -169,6 +175,7 @@ lean_object* l_Lean_PrettyPrinter_Formatter_getStack___boxed(lean_object*); lean_object* l_Lean_PrettyPrinter_Formatter_unicodeSymbol_formatter_match__1(lean_object*); lean_object* l_Lean_PrettyPrinter_Formatter_checkKind___closed__5; lean_object* l_Lean_PrettyPrinter_Formatter_checkPrec_formatter___rarg(lean_object*); +lean_object* l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__16; lean_object* l_Lean_PrettyPrinter_Formatter_instMonadTraverserFormatterM___lambda__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Formatter_trailingNode_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Formatter_getStackSize(lean_object*); @@ -181,6 +188,7 @@ lean_object* l_List_forM___at_Lean_PrettyPrinter_Formatter_sepByNoAntiquot_forma lean_object* l_Lean_Syntax_MonadTraverser_goLeft___at_Lean_PrettyPrinter_Formatter_symbol_formatter___spec__1(lean_object*); lean_object* l_Lean_PrettyPrinter_Formatter_unicodeSymbol_formatter___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_MonadTraverser_getCur___at_Lean_PrettyPrinter_Formatter_visitArgs___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__20; lean_object* l_String_trimRight(lean_object*); lean_object* l_Lean_PrettyPrinter_Formatter_rawIdentNoAntiquot_formatter_match__1(lean_object*); extern lean_object* l_term___x24_______closed__4; @@ -208,7 +216,6 @@ extern lean_object* l_Lean_numLitKind; lean_object* l_Lean_PrettyPrinter_Formatter_interpolatedStr_formatter___boxed__const__1; lean_object* lean_nat_sub(lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Formatter_formatterForKindUnsafe___closed__1; -lean_object* l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__16; lean_object* l_Lean_PrettyPrinter_Formatter_visitAtom___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_choiceKind___closed__2; extern lean_object* l_termS_x21_____closed__6; @@ -217,7 +224,6 @@ extern lean_object* l_Lean_strLitKind; lean_object* l_Lean_PrettyPrinter_Formatter_instMonadTraverserFormatterM___lambda__1(lean_object*); lean_object* l_Lean_PrettyPrinter_Formatter_checkPrec_formatter___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Formatter_instMonadTraverserFormatterM___closed__6; -lean_object* l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__24; lean_object* l_Lean_PrettyPrinter_Formatter_push___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Formatter_withForbidden_formatter___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Formatter_visitAtom(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -226,6 +232,7 @@ lean_object* l_Lean_Syntax_MonadTraverser_goLeft___at_Lean_PrettyPrinter_Formatt lean_object* l_Lean_PrettyPrinter_Formatter_checkKind___closed__6; lean_object* l_Lean_PrettyPrinter_Formatter_symbol_formatter___closed__5; lean_object* l_Lean_PrettyPrinter_Formatter_notFollowedBy_formatter___rarg(lean_object*); +lean_object* l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__22; lean_object* lean_array_get(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_mkFormatterAttribute___closed__5; lean_object* l_Lean_PrettyPrinter_mkFormatterAttribute___closed__3; @@ -233,14 +240,12 @@ lean_object* l_Lean_PrettyPrinter_Formatter_toggleInsideQuot_formatter(lean_obje lean_object* l_Lean_addTrace___at_Lean_PrettyPrinter_format___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Formatter_instMonadTraverserFormatterM___lambda__1___boxed(lean_object*); lean_object* l_Lean_PrettyPrinter_Formatter_node_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__10; lean_object* l_Lean_PrettyPrinter_Formatter_unicodeSymbol_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_KeyedDeclsAttribute_instInhabitedKeyedDeclsAttribute___closed__1; lean_object* l_Lean_PrettyPrinter_Formatter_pushNone_formatter___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_instInhabited___rarg(lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Tactic_intro___closed__10; lean_object* l_Lean_PrettyPrinter_mkFormatterAttribute___closed__13; -lean_object* l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__20; lean_object* l_Lean_PrettyPrinter_Formatter_checkInsideQuot_formatter___rarg(lean_object*); lean_object* l_List_foldl___at_Lean_moduleNameOfFileName___spec__1(lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Formatter_identEq_formatter(lean_object*); @@ -356,7 +361,6 @@ lean_object* l_Lean_PrettyPrinter_mkFormatterAttribute___lambda__1___closed__2; extern lean_object* l_Lean_scientificLitKind; lean_object* l_Lean_PrettyPrinter_Formatter_checkNoImmediateColon_formatter(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_MonadTraverser_goUp___at_Lean_PrettyPrinter_Formatter_visitArgs___spec__4___boxed(lean_object*); -lean_object* l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__22; extern lean_object* l_Lean_ParserCompiler_CombinatorAttribute_instInhabitedCombinatorAttribute___closed__1; extern lean_object* l_Lean_Format_getWidth___closed__1; lean_object* l_Lean_PrettyPrinter_Formatter_checkNoWsBefore_formatter___boxed(lean_object*); @@ -364,6 +368,7 @@ lean_object* lean_pretty_printer_formatter_interpret_parser_descr(lean_object*, uint8_t l_String_isPrefixOf(lean_object*, lean_object*); uint8_t lean_nat_dec_le(lean_object*, lean_object*); extern lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_3736____closed__4; +lean_object* l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__14; lean_object* l_Lean_PrettyPrinter_Formatter_error_formatter___rarg(lean_object*); lean_object* l_Lean_PrettyPrinter_Formatter_pushToken(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_getArgs(lean_object*); @@ -386,25 +391,24 @@ lean_object* l_Lean_PrettyPrinter_Formatter_checkNoWsBefore_formatter(lean_objec extern lean_object* l_Int_instInhabitedInt___closed__1; extern lean_object* l_Lean_Name_toStringWithSep___closed__1; lean_object* l_Lean_Format_getIndent(lean_object*); -lean_object* l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__3; lean_object* l_Lean_PrettyPrinter_Formatter_notFollowedByCategoryToken_formatter___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_throwError___at_Lean_PrettyPrinter_Formatter_unicodeSymbol_formatter___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Formatter_pushToken___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Formatter_pushNone_formatter___boxed(lean_object*); -lean_object* l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__14; +lean_object* l_IO_mkRef___at_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2468____spec__1(lean_object*, lean_object*); +lean_object* l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__17; lean_object* l_Lean_PrettyPrinter_Formatter_visitArgs___closed__1; lean_object* l_Lean_PrettyPrinter_Formatter_throwBacktrack___rarg___closed__1; lean_object* l_Lean_PrettyPrinter_format_match__1(lean_object*); -lean_object* l_IO_mkRef___at_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2437____spec__1(lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Formatter_concat___closed__1; lean_object* l_Lean_PrettyPrinter_Formatter_setStack(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Format_instInhabitedFormat; lean_object* lean_st_ref_set(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Formatter_visitAtom___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__8; lean_object* l_Array_back___at_Lean_PrettyPrinter_Formatter_indent___spec__1(lean_object*); lean_object* l_Lean_PrettyPrinter_Formatter_checkNoImmediateColon_formatter___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Formatter_checkOutsideQuot_formatter___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__5; lean_object* l_Lean_PrettyPrinter_Formatter_skip_formatter___rarg(lean_object*); lean_object* l_Lean_PrettyPrinter_Formatter_parseToken(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_mkCombinatorFormatterAttribute___closed__3; @@ -412,16 +416,15 @@ lean_object* l_Lean_PrettyPrinter_Formatter_pushTokenCore___boxed(lean_object*, lean_object* l_Lean_PrettyPrinter_instOrElseFormatterM___closed__1; lean_object* l_Lean_PrettyPrinter_Formatter_symbol_formatter___closed__6; lean_object* l_Lean_PrettyPrinter_Formatter_checkKind___closed__3; -lean_object* l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__15; lean_object* l_Substring_takeRightWhileAux___at_Lean_PrettyPrinter_Formatter_pushTokenCore___spec__1___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_mkFormatterAttribute___closed__7; -lean_object* l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__18; lean_object* l_Lean_PrettyPrinter_Formatter_trailingNode_formatter___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_String_trim(lean_object*); lean_object* l_Lean_PrettyPrinter_Formatter_instMonadTraverserFormatterM___closed__1; lean_object* l_Lean_PrettyPrinter_Formatter_fold(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Formatter_categoryParser_formatter___lambda__2___closed__6; lean_object* l_Lean_PrettyPrinter_Formatter_instMonadTraverserFormatterM___closed__2; +lean_object* l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__7; lean_object* l_Lean_PrettyPrinter_Formatter_identNoAntiquot_formatter_match__1(lean_object*); lean_object* l_Lean_PrettyPrinter_Formatter_withoutInfo_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_pop(lean_object*); @@ -429,60 +432,63 @@ lean_object* l_Lean_PrettyPrinter_Formatter_concat___lambda__1___boxed(lean_obje lean_object* l_Lean_PrettyPrinter_Formatter_categoryParser_formatter___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_throwError___at_Lean_Core_withIncRecDepth___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Formatter_parserOfStack_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__7; lean_object* l_Lean_throwError___at_Lean_PrettyPrinter_Formatter_visitAtom___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2721_(lean_object*); +lean_object* l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2752_(lean_object*); lean_object* l_Array_back___at_Lean_Syntax_Traverser_up___spec__1(lean_object*); lean_object* l_Substring_takeRightWhileAux___at_Substring_trimRight___spec__1(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Formatter_symbol_formatter___closed__1; lean_object* lean_int_sub(lean_object*, lean_object*); +lean_object* l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__15; extern lean_object* l_Array_instReprArray___rarg___closed__1; lean_object* l_Lean_indentD(lean_object*); lean_object* l_Lean_PrettyPrinter_Formatter_checkOutsideQuot_formatter___rarg(lean_object*); lean_object* l___private_Lean_Util_Trace_0__Lean_checkTraceOptionM___at_Lean_PrettyPrinter_Formatter_categoryParser_formatter___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Formatter_charLitNoAntiquot_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__3; lean_object* l_Lean_PrettyPrinter_Formatter_concat___lambda__1(lean_object*); lean_object* l_Lean_PrettyPrinter_Formatter_checkStackTop_formatter___rarg(lean_object*); lean_object* l_Lean_PrettyPrinter_Formatter_pushToken_match__1(lean_object*); lean_object* l_Lean_PrettyPrinter_Formatter_interpretParserDescr_x27___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_ReaderT_instMonadReaderT___rarg(lean_object*); lean_object* l_Lean_PrettyPrinter_Formatter_checkStackTop_formatter(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__5; extern lean_object* l_Array_term_____x5b___x3a___x5d___closed__6; lean_object* l_Lean_Syntax_MonadTraverser_goDown___at_Lean_PrettyPrinter_Formatter_visitArgs___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Formatter_symbol_formatter___closed__2; +lean_object* l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__18; lean_object* l_Lean_Syntax_getArg(lean_object*, lean_object*); -lean_object* l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__17; lean_object* l_Lean_throwError___at_Lean_PrettyPrinter_Formatter_visitAtom___spec__1(lean_object*); extern lean_object* l_myMacro____x40_Init_Notation___hyg_1261____closed__10; lean_object* lean_nat_mod(lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Formatter_interpolatedStr_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__8; lean_object* l_Lean_PrettyPrinter_Formatter_pushToken___lambda__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_simp_macro_scopes(lean_object*); +lean_object* l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__13; lean_object* l_Lean_PrettyPrinter_Formatter_pushToken___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_mkFormatterAttribute___closed__2; lean_object* l_Lean_PrettyPrinter_Formatter_checkColGe_formatter___rarg(lean_object*); lean_object* l_Lean_throwError___at_Lean_PrettyPrinter_Formatter_visitAtom___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__9; lean_object* l_Lean_KeyedDeclsAttribute_init___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Formatter_checkKind(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_foldlMUnsafe_fold___at_Lean_PrettyPrinter_Formatter_concat___spec__1(lean_object*, size_t, size_t, lean_object*); lean_object* l_Lean_throwError___at_Lean_PrettyPrinter_Formatter_unicodeSymbol_formatter___spec__1(lean_object*); -lean_object* l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__4; lean_object* l_Lean_PrettyPrinter_Formatter_symbol_formatter___closed__11; extern lean_object* l_Lean_PrettyPrinter_backtrackExceptionId; +lean_object* l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__1; lean_object* l_Lean_PrettyPrinter_Formatter_suppressInsideQuot_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_back___at_Lean_Syntax_Traverser_up___spec__2(lean_object*); -lean_object* l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__2; lean_object* l_Lean_Syntax_Traverser_left(lean_object*); lean_object* l_ReaderT_map___at_Lean_PrettyPrinter_Formatter_instMonadTraverserFormatterM___spec__1(lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Formatter_throwBacktrack___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_PrettyPrinter_Formatter_withAntiquotSuffixSplice_formatter___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Formatter_notFollowedBy_formatter___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_foldlMUnsafe_fold___at_Lean_PrettyPrinter_Formatter_concat___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Formatter_pushToken_match__2___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_format___closed__1; +lean_object* l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__24; lean_object* l_Lean_PrettyPrinter_Formatter_checkInsideQuot_formatter(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Formatter_checkKind___closed__2; +lean_object* l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__2; lean_object* l_Lean_PrettyPrinter_Formatter_unicodeSymbol_formatter___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_List_map___at_Lean_PrettyPrinter_Formatter_identNoAntiquot_formatter___spec__2___closed__1; lean_object* l_Lean_PrettyPrinter_Formatter_getStackSize___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); @@ -492,10 +498,10 @@ lean_object* l_Lean_PrettyPrinter_format___closed__2; lean_object* l_Lean_PrettyPrinter_Formatter_checkKind___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Formatter_withoutPosition_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_nat_to_int(lean_object*); -lean_object* l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__1; uint8_t l_Lean_Syntax_isToken(lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_formatTerm___closed__1; lean_object* l_Lean_Name_components(lean_object*); +lean_object* l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__4; extern lean_object* l_instInhabitedPUnit; lean_object* l_Lean_PrettyPrinter_Formatter_unicodeSymbol_formatter___closed__2; lean_object* l_List_map___at_Lean_PrettyPrinter_Formatter_identNoAntiquot_formatter___spec__2___closed__2; @@ -505,12 +511,11 @@ extern lean_object* l_Lean_interpolatedStrLitKind; lean_object* l_Lean_PrettyPrinter_Formatter_andthen_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Formatter_checkKind___closed__1; extern lean_object* l_Lean_MetavarContext_MkBinding_mkBinding___closed__1; +lean_object* l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__9; lean_object* l_Lean_PrettyPrinter_Formatter_pushTokenCore(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_mkCombinatorFormatterAttribute___closed__2; -lean_object* l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__23; lean_object* l_Lean_PrettyPrinter_Formatter_checkPrec_formatter(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Formatter_checkKind___closed__4; -lean_object* l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__13; lean_object* l_Substring_takeRightWhileAux___at_Lean_PrettyPrinter_Formatter_pushTokenCore___spec__1(lean_object*, lean_object*, lean_object*); uint8_t lean_string_dec_eq(lean_object*, lean_object*); uint8_t lean_nat_dec_lt(lean_object*, lean_object*); @@ -3299,6 +3304,100 @@ x_8 = l_Lean_PrettyPrinter_Formatter_orelse_formatter(x_1, x_2, x_3, x_4, x_5, x return x_8; } } +lean_object* l_Lean_PrettyPrinter_Formatter_withAntiquotSuffixSplice_formatter___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_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +x_8 = lean_apply_5(x_1, x_3, x_4, x_5, x_6, x_7); +if (lean_obj_tag(x_8) == 0) +{ +lean_object* x_9; lean_object* x_10; +x_9 = lean_ctor_get(x_8, 1); +lean_inc(x_9); +lean_dec(x_8); +x_10 = lean_apply_5(x_2, x_3, x_4, x_5, x_6, x_9); +return x_10; +} +else +{ +uint8_t x_11; +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_11 = !lean_is_exclusive(x_8); +if (x_11 == 0) +{ +return x_8; +} +else +{ +lean_object* x_12; lean_object* x_13; lean_object* x_14; +x_12 = lean_ctor_get(x_8, 0); +x_13 = lean_ctor_get(x_8, 1); +lean_inc(x_13); +lean_inc(x_12); +lean_dec(x_8); +x_14 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_14, 0, x_12); +lean_ctor_set(x_14, 1, x_13); +return x_14; +} +} +} +} +lean_object* l_Lean_PrettyPrinter_Formatter_withAntiquotSuffixSplice_formatter___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +_start: +{ +lean_object* x_8; lean_object* x_9; lean_object* x_10; uint8_t x_11; +x_8 = l_Lean_Syntax_MonadTraverser_getCur___at_Lean_PrettyPrinter_Formatter_visitArgs___spec__1___rarg(x_4, x_5, x_6, x_7); +x_9 = lean_ctor_get(x_8, 0); +lean_inc(x_9); +x_10 = lean_ctor_get(x_8, 1); +lean_inc(x_10); +lean_dec(x_8); +x_11 = l_Lean_Syntax_isAntiquotSuffixSplice(x_9); +lean_dec(x_9); +if (x_11 == 0) +{ +lean_object* x_12; +lean_dec(x_2); +x_12 = lean_apply_5(x_1, x_3, x_4, x_5, x_6, x_10); +return x_12; +} +else +{ +lean_object* x_13; lean_object* x_14; +x_13 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_withAntiquotSuffixSplice_formatter___rarg___lambda__1), 7, 2); +lean_closure_set(x_13, 0, x_2); +lean_closure_set(x_13, 1, x_1); +x_14 = l_Lean_PrettyPrinter_Formatter_visitArgs(x_13, x_3, x_4, x_5, x_6, x_10); +return x_14; +} +} +} +lean_object* l_Lean_PrettyPrinter_Formatter_withAntiquotSuffixSplice_formatter(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_withAntiquotSuffixSplice_formatter___rarg), 7, 0); +return x_2; +} +} +lean_object* l_Lean_PrettyPrinter_Formatter_withAntiquotSuffixSplice_formatter___boxed(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = l_Lean_PrettyPrinter_Formatter_withAntiquotSuffixSplice_formatter(x_1); +lean_dec(x_1); +return x_2; +} +} lean_object* l_ReaderT_bind___at_Lean_PrettyPrinter_Formatter_categoryParser_formatter___spec__1___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { @@ -6175,7 +6274,7 @@ _start: 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 = l_Lean_PrettyPrinter_Formatter_symbol_formatter___closed__9; x_2 = l_Lean_PrettyPrinter_Formatter_symbol_formatter___closed__10; -x_3 = lean_unsigned_to_nat(296u); +x_3 = lean_unsigned_to_nat(303u); x_4 = lean_unsigned_to_nat(42u); x_5 = l_Lean_Syntax_strLitToAtom___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -9114,7 +9213,7 @@ x_10 = l_Lean_PrettyPrinter_Formatter_ite___rarg(x_9, x_2, x_3, x_4, x_5, x_6, x return x_10; } } -lean_object* l_IO_mkRef___at_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2437____spec__1(lean_object* x_1, lean_object* x_2) { +lean_object* l_IO_mkRef___at_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2468____spec__1(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; uint8_t x_4; @@ -9139,12 +9238,12 @@ return x_7; } } } -lean_object* l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2437_(lean_object* x_1) { +lean_object* l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2468_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; x_2 = lean_box(0); -x_3 = l_IO_mkRef___at_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2437____spec__1(x_2, x_1); +x_3 = l_IO_mkRef___at_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2468____spec__1(x_2, x_1); return x_3; } } @@ -9184,7 +9283,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__1() { +static lean_object* _init_l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__1() { _start: { lean_object* x_1; @@ -9192,17 +9291,17 @@ x_1 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_checkWsBefore_fo return x_1; } } -static lean_object* _init_l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__2() { +static lean_object* _init_l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__1; +x_1 = l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__1; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__3() { +static lean_object* _init_l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__3() { _start: { lean_object* x_1; @@ -9210,17 +9309,17 @@ x_1 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_checkNoWsBefore_ return x_1; } } -static lean_object* _init_l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__4() { +static lean_object* _init_l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__4() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__3; +x_1 = l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__3; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__5() { +static lean_object* _init_l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__5() { _start: { lean_object* x_1; @@ -9228,17 +9327,17 @@ x_1 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_checkColGt_forma return x_1; } } -static lean_object* _init_l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__6() { +static lean_object* _init_l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__6() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__5; +x_1 = l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__5; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__7() { +static lean_object* _init_l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__7() { _start: { lean_object* x_1; @@ -9246,17 +9345,17 @@ x_1 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_checkColGe_forma return x_1; } } -static lean_object* _init_l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__8() { +static lean_object* _init_l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__8() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__7; +x_1 = l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__7; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__9() { +static lean_object* _init_l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__9() { _start: { lean_object* x_1; @@ -9264,17 +9363,17 @@ x_1 = lean_mk_string("lookahead"); return x_1; } } -static lean_object* _init_l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__10() { +static lean_object* _init_l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__9; +x_2 = l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__9; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__11() { +static lean_object* _init_l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__11() { _start: { lean_object* x_1; @@ -9282,17 +9381,17 @@ x_1 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_lookahead_format return x_1; } } -static lean_object* _init_l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__12() { +static lean_object* _init_l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__12() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__11; +x_1 = l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__11; x_2 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__13() { +static lean_object* _init_l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__13() { _start: { lean_object* x_1; @@ -9300,17 +9399,17 @@ x_1 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_atomic_formatter return x_1; } } -static lean_object* _init_l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__14() { +static lean_object* _init_l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__14() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__13; +x_1 = l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__13; x_2 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__15() { +static lean_object* _init_l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__15() { _start: { lean_object* x_1; @@ -9318,17 +9417,17 @@ x_1 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_notFollowedBy_fo return x_1; } } -static lean_object* _init_l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__16() { +static lean_object* _init_l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__16() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__15; +x_1 = l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__15; x_2 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__17() { +static lean_object* _init_l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__17() { _start: { lean_object* x_1; @@ -9336,17 +9435,17 @@ x_1 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_withPosition_for return x_1; } } -static lean_object* _init_l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__18() { +static lean_object* _init_l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__18() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__17; +x_1 = l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__17; x_2 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__19() { +static lean_object* _init_l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__19() { _start: { lean_object* x_1; @@ -9354,17 +9453,17 @@ x_1 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_interpolatedStr_ return x_1; } } -static lean_object* _init_l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__20() { +static lean_object* _init_l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__20() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__19; +x_1 = l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__19; x_2 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__21() { +static lean_object* _init_l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__21() { _start: { lean_object* x_1; @@ -9372,17 +9471,17 @@ x_1 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_orelse_formatter return x_1; } } -static lean_object* _init_l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__22() { +static lean_object* _init_l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__22() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__21; +x_1 = l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__21; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__23() { +static lean_object* _init_l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__23() { _start: { lean_object* x_1; @@ -9390,23 +9489,23 @@ x_1 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatte return x_1; } } -static lean_object* _init_l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__24() { +static lean_object* _init_l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__24() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__23; +x_1 = l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__23; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502_(lean_object* x_1) { +lean_object* l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_2 = l_Lean_PrettyPrinter_Formatter_formatterAliasesRef; x_3 = l_term___x24_______closed__8; -x_4 = l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__2; +x_4 = l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__2; x_5 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_3, x_4, x_1); if (lean_obj_tag(x_5) == 0) { @@ -9415,7 +9514,7 @@ x_6 = lean_ctor_get(x_5, 1); lean_inc(x_6); lean_dec(x_5); x_7 = l_Array_term_____x5b___x3a___x5d___closed__6; -x_8 = l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__4; +x_8 = l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__4; x_9 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_7, x_8, x_6); if (lean_obj_tag(x_9) == 0) { @@ -9424,7 +9523,7 @@ x_10 = lean_ctor_get(x_9, 1); lean_inc(x_10); lean_dec(x_9); x_11 = l_Lean_Parser_Tactic_intro___closed__10; -x_12 = l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__6; +x_12 = l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__6; x_13 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_11, x_12, x_10); if (lean_obj_tag(x_13) == 0) { @@ -9433,7 +9532,7 @@ x_14 = lean_ctor_get(x_13, 1); lean_inc(x_14); lean_dec(x_13); x_15 = l_myMacro____x40_Init_Notation___hyg_1261____closed__10; -x_16 = l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__8; +x_16 = l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__8; x_17 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_15, x_16, x_14); if (lean_obj_tag(x_17) == 0) { @@ -9441,8 +9540,8 @@ lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; x_18 = lean_ctor_get(x_17, 1); lean_inc(x_18); lean_dec(x_17); -x_19 = l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__10; -x_20 = l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__12; +x_19 = l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__10; +x_20 = l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__12; x_21 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_19, x_20, x_18); if (lean_obj_tag(x_21) == 0) { @@ -9451,7 +9550,7 @@ x_22 = lean_ctor_get(x_21, 1); lean_inc(x_22); lean_dec(x_21); x_23 = l_term___x24_______closed__4; -x_24 = l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__14; +x_24 = l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__14; x_25 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_23, x_24, x_22); if (lean_obj_tag(x_25) == 0) { @@ -9460,7 +9559,7 @@ x_26 = lean_ctor_get(x_25, 1); lean_inc(x_26); lean_dec(x_25); x_27 = l_myMacro____x40_Init_Notation___hyg_1481____closed__4; -x_28 = l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__16; +x_28 = l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__16; x_29 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_27, x_28, x_26); if (lean_obj_tag(x_29) == 0) { @@ -9469,7 +9568,7 @@ x_30 = lean_ctor_get(x_29, 1); lean_inc(x_30); lean_dec(x_29); x_31 = l_Lean_Parser_Tactic_location___closed__4; -x_32 = l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__18; +x_32 = l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__18; x_33 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_31, x_32, x_30); if (lean_obj_tag(x_33) == 0) { @@ -9478,7 +9577,7 @@ x_34 = lean_ctor_get(x_33, 1); lean_inc(x_34); lean_dec(x_33); x_35 = l_termS_x21_____closed__6; -x_36 = l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__20; +x_36 = l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__20; x_37 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_35, x_36, x_34); if (lean_obj_tag(x_37) == 0) { @@ -9487,7 +9586,7 @@ x_38 = lean_ctor_get(x_37, 1); lean_inc(x_38); lean_dec(x_37); x_39 = l_myMacro____x40_Init_Notation___hyg_376____closed__6; -x_40 = l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__22; +x_40 = l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__22; x_41 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_39, x_40, x_38); if (lean_obj_tag(x_41) == 0) { @@ -9496,7 +9595,7 @@ x_42 = lean_ctor_get(x_41, 1); lean_inc(x_42); lean_dec(x_41); x_43 = l_stx___x3c_x7c_x3e_____closed__4; -x_44 = l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__24; +x_44 = l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__24; x_45 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_43, x_44, x_42); return x_45; } @@ -10308,7 +10407,7 @@ x_6 = l_Lean_PrettyPrinter_format(x_5, x_1, x_2, x_3, x_4); return x_6; } } -lean_object* l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2721_(lean_object* x_1) { +lean_object* l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2752_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; @@ -10502,60 +10601,60 @@ l_Lean_PrettyPrinter_Formatter_interpolatedStr_formatter___closed__1 = _init_l_L lean_mark_persistent(l_Lean_PrettyPrinter_Formatter_interpolatedStr_formatter___closed__1); l_Lean_PrettyPrinter_Formatter_interpolatedStr_formatter___boxed__const__1 = _init_l_Lean_PrettyPrinter_Formatter_interpolatedStr_formatter___boxed__const__1(); lean_mark_persistent(l_Lean_PrettyPrinter_Formatter_interpolatedStr_formatter___boxed__const__1); -res = l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2437_(lean_io_mk_world()); +res = l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2468_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; l_Lean_PrettyPrinter_Formatter_formatterAliasesRef = lean_io_result_get_value(res); lean_mark_persistent(l_Lean_PrettyPrinter_Formatter_formatterAliasesRef); lean_dec_ref(res); -l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__1 = _init_l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__1(); -lean_mark_persistent(l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__1); -l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__2 = _init_l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__2(); -lean_mark_persistent(l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__2); -l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__3 = _init_l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__3(); -lean_mark_persistent(l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__3); -l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__4 = _init_l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__4(); -lean_mark_persistent(l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__4); -l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__5 = _init_l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__5(); -lean_mark_persistent(l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__5); -l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__6 = _init_l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__6(); -lean_mark_persistent(l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__6); -l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__7 = _init_l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__7(); -lean_mark_persistent(l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__7); -l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__8 = _init_l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__8(); -lean_mark_persistent(l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__8); -l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__9 = _init_l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__9(); -lean_mark_persistent(l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__9); -l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__10 = _init_l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__10(); -lean_mark_persistent(l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__10); -l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__11 = _init_l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__11(); -lean_mark_persistent(l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__11); -l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__12 = _init_l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__12(); -lean_mark_persistent(l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__12); -l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__13 = _init_l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__13(); -lean_mark_persistent(l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__13); -l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__14 = _init_l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__14(); -lean_mark_persistent(l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__14); -l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__15 = _init_l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__15(); -lean_mark_persistent(l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__15); -l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__16 = _init_l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__16(); -lean_mark_persistent(l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__16); -l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__17 = _init_l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__17(); -lean_mark_persistent(l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__17); -l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__18 = _init_l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__18(); -lean_mark_persistent(l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__18); -l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__19 = _init_l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__19(); -lean_mark_persistent(l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__19); -l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__20 = _init_l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__20(); -lean_mark_persistent(l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__20); -l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__21 = _init_l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__21(); -lean_mark_persistent(l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__21); -l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__22 = _init_l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__22(); -lean_mark_persistent(l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__22); -l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__23 = _init_l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__23(); -lean_mark_persistent(l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__23); -l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__24 = _init_l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__24(); -lean_mark_persistent(l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502____closed__24); -res = l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2502_(lean_io_mk_world()); +l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__1 = _init_l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__1(); +lean_mark_persistent(l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__1); +l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__2 = _init_l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__2(); +lean_mark_persistent(l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__2); +l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__3 = _init_l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__3(); +lean_mark_persistent(l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__3); +l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__4 = _init_l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__4(); +lean_mark_persistent(l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__4); +l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__5 = _init_l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__5(); +lean_mark_persistent(l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__5); +l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__6 = _init_l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__6(); +lean_mark_persistent(l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__6); +l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__7 = _init_l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__7(); +lean_mark_persistent(l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__7); +l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__8 = _init_l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__8(); +lean_mark_persistent(l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__8); +l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__9 = _init_l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__9(); +lean_mark_persistent(l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__9); +l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__10 = _init_l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__10(); +lean_mark_persistent(l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__10); +l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__11 = _init_l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__11(); +lean_mark_persistent(l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__11); +l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__12 = _init_l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__12(); +lean_mark_persistent(l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__12); +l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__13 = _init_l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__13(); +lean_mark_persistent(l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__13); +l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__14 = _init_l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__14(); +lean_mark_persistent(l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__14); +l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__15 = _init_l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__15(); +lean_mark_persistent(l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__15); +l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__16 = _init_l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__16(); +lean_mark_persistent(l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__16); +l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__17 = _init_l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__17(); +lean_mark_persistent(l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__17); +l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__18 = _init_l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__18(); +lean_mark_persistent(l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__18); +l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__19 = _init_l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__19(); +lean_mark_persistent(l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__19); +l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__20 = _init_l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__20(); +lean_mark_persistent(l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__20); +l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__21 = _init_l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__21(); +lean_mark_persistent(l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__21); +l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__22 = _init_l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__22(); +lean_mark_persistent(l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__22); +l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__23 = _init_l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__23(); +lean_mark_persistent(l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__23); +l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__24 = _init_l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__24(); +lean_mark_persistent(l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533____closed__24); +res = l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2533_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_PrettyPrinter_format___closed__1 = _init_l_Lean_PrettyPrinter_format___closed__1(); @@ -10572,7 +10671,7 @@ l_Lean_PrettyPrinter_formatTerm___closed__1 = _init_l_Lean_PrettyPrinter_formatT lean_mark_persistent(l_Lean_PrettyPrinter_formatTerm___closed__1); l_Lean_PrettyPrinter_formatCommand___closed__1 = _init_l_Lean_PrettyPrinter_formatCommand___closed__1(); lean_mark_persistent(l_Lean_PrettyPrinter_formatCommand___closed__1); -res = l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2721_(lean_io_mk_world()); +res = l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2752_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); return lean_io_result_mk_ok(lean_box(0)); diff --git a/stage0/stdlib/Lean/PrettyPrinter/Parenthesizer.c b/stage0/stdlib/Lean/PrettyPrinter/Parenthesizer.c index 7a5fcc44bb..dede4dfe62 100644 --- a/stage0/stdlib/Lean/PrettyPrinter/Parenthesizer.c +++ b/stage0/stdlib/Lean/PrettyPrinter/Parenthesizer.c @@ -24,14 +24,17 @@ extern lean_object* l_myMacro____x40_Init_Notation___hyg_49____closed__16; lean_object* l_Lean_PrettyPrinter_Parenthesizer_ite(lean_object*, lean_object*); lean_object* l_Lean_addMessageContextPartial___at_Lean_Core_instAddMessageContextCoreM___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_numLitNoAntiquot_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l_Lean_Syntax_isAntiquotSuffixSplice(lean_object*); +lean_object* l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__5; lean_object* l___regBuiltin_Lean_PrettyPrinter_Parenthesizer_term_parenthesizer___closed__1; -lean_object* l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__22; extern lean_object* l_myMacro____x40_Init_Notation___hyg_1481____closed__4; size_t l_USize_add(size_t, size_t); lean_object* l_Lean_PrettyPrinter_mkCategoryParenthesizerAttribute___lambda__1___closed__1; lean_object* l_Lean_PrettyPrinter_Parenthesizer_checkNoImmediateColon_parenthesizer___rarg(lean_object*); lean_object* l_Lean_registerTraceClass(lean_object*, lean_object*); +lean_object* l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__15; lean_object* l_Lean_PrettyPrinter_Parenthesizer_categoryParser_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__18; lean_object* l_Lean_PrettyPrinter_mkCategoryParenthesizerAttribute___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_stringToMessageData(lean_object*); lean_object* l_Lean_PrettyPrinter_categoryParenthesizerAttribute; @@ -39,11 +42,9 @@ lean_object* l_ReaderT_pure___at_Lean_PrettyPrinter_Parenthesizer_instMonadQuota lean_object* l_Lean_PrettyPrinter_Parenthesizer_nonReservedSymbol_parenthesizer___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_optionalNoAntiquot_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_List_forM___at_Lean_PrettyPrinter_Parenthesizer_sepByNoAntiquot_parenthesizer___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__7; lean_object* l_Lean_PrettyPrinter_Parenthesizer_pushNone_parenthesizer(lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_categoryParser_parenthesizer_match__1(lean_object*); lean_object* l_Lean_PrettyPrinter_parenthesize___closed__1; -lean_object* l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__24; lean_object* l_Lean_PrettyPrinter_Parenthesizer_rawIdentNoAntiquot_parenthesizer___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_mkCategoryParenthesizerAttribute___lambda__1___closed__2; lean_object* l_Lean_PrettyPrinter_Parenthesizer_withAntiquot_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -77,6 +78,8 @@ lean_object* l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(lean_object lean_object* l_Lean_PrettyPrinter_mkCategoryParenthesizerAttribute___closed__7; lean_object* l_Lean_PrettyPrinter_mkParenthesizerAttribute___closed__10; lean_object* l_Lean_PrettyPrinter_Parenthesizer_maybeParenthesize___closed__3; +lean_object* l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__13; +lean_object* l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__23; lean_object* l_Lean_Syntax_MonadTraverser_goLeft___at_Lean_PrettyPrinter_Parenthesizer_visitToken___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_unicodeSymbol_parenthesizer___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_term___u2218_____closed__6; @@ -87,9 +90,10 @@ extern lean_object* l_Array_empty___closed__1; lean_object* lean_environment_find(lean_object*, lean_object*); lean_object* l_Lean_Syntax_MonadTraverser_goUp___at_Lean_PrettyPrinter_Parenthesizer_visitArgs___spec__4___boxed(lean_object*); uint8_t l_Lean_checkTraceOption(lean_object*, lean_object*); +lean_object* l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__8; lean_object* l_Lean_PrettyPrinter_Parenthesizer_maybeParenthesize___closed__7; lean_object* lean_st_ref_get(lean_object*, lean_object*); -lean_object* l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2669_(lean_object*); +lean_object* l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2700_(lean_object*); lean_object* l_Lean_PrettyPrinter_mkCategoryParenthesizerAttribute_match__1___rarg(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_instInhabitedParserDescr___closed__1; lean_object* l_Lean_PrettyPrinter_Parenthesizer_throwError___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -114,11 +118,13 @@ lean_object* l_Lean_Syntax_MonadTraverser_goDown___at_Lean_PrettyPrinter_Parenth lean_object* l_Lean_PrettyPrinter_Parenthesizer_nameLitNoAntiquot_parenthesizer___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_throwError___at_Lean_AttributeImpl_erase___default___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_push(lean_object*, lean_object*); -lean_object* l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__20; +lean_object* l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__22; lean_object* lean_array_get_size(lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_errorAtSavedPos_parenthesizer___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__14; extern lean_object* l_Lean_Parser_leadPrec___closed__1; lean_object* lean_string_append(lean_object*, lean_object*); +lean_object* l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__6; lean_object* l_List_range(lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_toggleInsideQuot_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_MonadTraverser_getCur___at_Lean_PrettyPrinter_Parenthesizer_maybeParenthesize___spec__2___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); @@ -147,6 +153,7 @@ lean_object* l_Lean_PrettyPrinter_Parenthesizer_visitArgs___lambda__1(lean_objec lean_object* l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_maybeParenthesize___closed__10; lean_object* l_Lean_PrettyPrinter_runForNodeKind___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__17; lean_object* l_Lean_PrettyPrinter_Parenthesizer_maybeParenthesize_match__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_errorAtSavedPos_parenthesizer___rarg(lean_object*); @@ -167,7 +174,6 @@ lean_object* l_Lean_PrettyPrinter_Parenthesizer_registerAlias(lean_object*, lean lean_object* l_List_forM___at_Lean_PrettyPrinter_Parenthesizer_sepByNoAntiquot_parenthesizer___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Nat_forM_loop___at_Lean_PrettyPrinter_Parenthesizer_manyNoAntiquot_parenthesizer___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Name_toStringWithSep(lean_object*, lean_object*); -lean_object* l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__10; lean_object* l_Lean_PrettyPrinter_Parenthesizer_instMonadTraverserParenthesizerM___closed__5; lean_object* l_Lean_PrettyPrinter_Parenthesizer_interpretParserDescr_x27___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_MonadTraverser_goLeft___at_Lean_PrettyPrinter_Parenthesizer_visitArgs___spec__2(lean_object*); @@ -199,6 +205,7 @@ lean_object* l_Lean_PrettyPrinter_Parenthesizer_term_parenthesizer___lambda__1(l extern lean_object* l_term___x24_______closed__4; lean_object* l_Lean_PrettyPrinter_Parenthesizer_level_parenthesizer___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_addTrace___at_Lean_PrettyPrinter_Parenthesizer_maybeParenthesize___spec__7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__1; lean_object* l_Lean_PrettyPrinter_Parenthesizer_parenthesizerForKindUnsafe___closed__1; lean_object* l_Lean_PrettyPrinter_Parenthesizer_node_parenthesizer___closed__2; lean_object* l_Lean_PrettyPrinter_mkCategoryParenthesizerAttribute_match__1(lean_object*); @@ -206,13 +213,13 @@ uint8_t lean_nat_dec_eq(lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_level_parenthesizer___lambda__1___closed__1; lean_object* l_Lean_PrettyPrinter_mkParenthesizerAttribute___lambda__1___closed__2; extern lean_object* l_Lean_Option_format___rarg___closed__1; -lean_object* l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__12; lean_object* lean_st_ref_take(lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_identEq_parenthesizer___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_nat_sub(lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_maybeParenthesize___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_throwBacktrack___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_maybeParenthesize___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__19; extern lean_object* l_Lean_choiceKind___closed__2; extern lean_object* l_termS_x21_____closed__6; lean_object* l_Lean_PrettyPrinter_Parenthesizer_scientificLitNoAntiquot_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -229,6 +236,7 @@ lean_object* l_Lean_PrettyPrinter_Parenthesizer_charLitNoAntiquot_parenthesizer( lean_object* l_Lean_PrettyPrinter_Parenthesizer_strLitNoAntiquot_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_getHeadInfo(lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_instMonadTraverserParenthesizerM___closed__4; +lean_object* l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__9; lean_object* l_Lean_PrettyPrinter_mkParenthesizerAttribute_match__1(lean_object*); lean_object* l___regBuiltin_Lean_PrettyPrinter_Parenthesizer_level_parenthesizer___closed__1; lean_object* l_Lean_PrettyPrinter_Parenthesizer_checkWsBefore_parenthesizer___boxed(lean_object*, lean_object*, lean_object*, lean_object*); @@ -239,26 +247,27 @@ lean_object* l_Lean_PrettyPrinter_Parenthesizer_pushNone_parenthesizer___rarg___ lean_object* l_Lean_Unhygienic_run___rarg(lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_notFollowedByCategoryToken_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_mkParenthesizerAttribute___closed__12; +lean_object* l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__4; lean_object* l_Lean_PrettyPrinter_Parenthesizer_node_parenthesizer___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_myMacro____x40_Init_Notation___hyg_10790____closed__9; lean_object* l_Lean_PrettyPrinter_Parenthesizer_categoryParserOfStack_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_instMonadTraverserParenthesizerM___lambda__1(lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_manyNoAntiquot_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__21; lean_object* l_Lean_PrettyPrinter_Parenthesizer_maybeParenthesize___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_maybeParenthesize_match__3(lean_object*); extern lean_object* l_Lean_KeyedDeclsAttribute_instInhabitedKeyedDeclsAttribute___closed__1; lean_object* l_instInhabited___rarg(lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_interpolatedStr_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Tactic_intro___closed__10; +lean_object* l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__2; lean_object* l_Lean_PrettyPrinter_Parenthesizer_setExpected_parenthesizer___boxed(lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_maybeParenthesize___closed__21; lean_object* l_Lean_PrettyPrinter_Parenthesizer_identEq_parenthesizer___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Format_join___closed__1; -lean_object* l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__11; lean_object* l_Lean_PrettyPrinter_Parenthesizer_charLitNoAntiquot_parenthesizer___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_MonadTraverser_goDown___at_Lean_PrettyPrinter_Parenthesizer_visitArgs___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_withoutForbidden_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__4; lean_object* lean_st_mk_ref(lean_object*, lean_object*); lean_object* l_Lean_Syntax_getId(lean_object*); lean_object* l_Lean_PrettyPrinter_parenthesize(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -327,7 +336,6 @@ lean_object* l_Lean_PrettyPrinter_Parenthesizer_instMonadQuotationParenthesizerM lean_object* l_Lean_PrettyPrinter_mkCategoryParenthesizerAttribute___closed__9; lean_object* l_Lean_PrettyPrinter_mkParenthesizerAttribute___closed__2; lean_object* l_Lean_PrettyPrinter_Parenthesizer_throwBacktrack___rarg___closed__1; -lean_object* l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__9; lean_object* l_Lean_PrettyPrinter_Parenthesizer_checkNoWsBefore_parenthesizer___rarg(lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_instMonadTraverserParenthesizerM; lean_object* l_Lean_PrettyPrinter_mkParenthesizerAttribute(lean_object*); @@ -352,6 +360,7 @@ lean_object* l_Lean_PrettyPrinter_Parenthesizer_maybeParenthesize___lambda__2(le lean_object* l_Lean_PrettyPrinter_Parenthesizer_node_parenthesizer___closed__4; lean_object* l_Lean_Syntax_MonadTraverser_goLeft___at_Lean_PrettyPrinter_Parenthesizer_visitArgs___spec__2___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_checkNoWsBefore_parenthesizer___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__16; extern lean_object* l_myMacro____x40_Init_Notation___hyg_376____closed__6; extern lean_object* l_term_x5b___x5d___closed__5; lean_object* l_Std_PersistentArray_push___rarg(lean_object*, lean_object*); @@ -359,14 +368,14 @@ lean_object* l_Lean_Syntax_MonadTraverser_setCur___at_Lean_PrettyPrinter_Parenth lean_object* l_Lean_PrettyPrinter_Parenthesizer_maybeParenthesize___closed__19; lean_object* l_ReaderT_bind___at_Lean_PrettyPrinter_Parenthesizer_term_parenthesizer___spec__1(lean_object*, lean_object*); lean_object* l_Lean_Syntax_MonadTraverser_goLeft___at_Lean_PrettyPrinter_Parenthesizer_visitToken___spec__1(lean_object*); +lean_object* l_Lean_PrettyPrinter_Parenthesizer_withAntiquotSuffixSplice_parenthesizer___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_Traverser_down(lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_PrettyPrinter_Parenthesizer_level_parenthesizer(lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_maybeParenthesize___lambda__3___closed__2; lean_object* l_Lean_PrettyPrinter_Parenthesizer_instCoeArrowParenthesizerArrowParenthesizerParenthesizerParenthesizerAliasValue(lean_object*); -lean_object* l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__1; lean_object* l_Lean_PrettyPrinter_mkCategoryParenthesizerAttribute___lambda__1(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2401_(lean_object*); -lean_object* l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466_(lean_object*); +lean_object* l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2432_(lean_object*); +lean_object* l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497_(lean_object*); extern lean_object* l_Lean_ParserCompiler_CombinatorAttribute_instInhabitedCombinatorAttribute___closed__1; lean_object* l_Lean_Syntax_MonadTraverser_goRight___at_Lean_PrettyPrinter_Parenthesizer_maybeParenthesize___spec__6___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_setExpected_parenthesizer(lean_object*); @@ -377,8 +386,8 @@ uint8_t lean_nat_dec_le(lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_instMonadTraverserParenthesizerM___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_3736____closed__4; lean_object* l___private_Lean_Util_Trace_0__Lean_checkTraceOptionM___at_Lean_PrettyPrinter_parenthesize___spec__2(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__2; lean_object* l_Lean_PrettyPrinter_Parenthesizer_notFollowedByCategoryToken_parenthesizer___rarg(lean_object*); +lean_object* l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__11; lean_object* l_Lean_Syntax_MonadTraverser_getCur___at_Lean_PrettyPrinter_Parenthesizer_maybeParenthesize___spec__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_mkParenthesizerAttribute___closed__8; lean_object* l_Lean_PrettyPrinter_Parenthesizer_checkStackTop_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*); @@ -401,8 +410,6 @@ lean_object* lean_panic_fn(lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_instMonadTraverserParenthesizerM___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_MonadTraverser_goLeft___at_Lean_PrettyPrinter_Parenthesizer_visitArgs___spec__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_maybeParenthesize___closed__2; -lean_object* l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__23; -lean_object* l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__21; extern lean_object* l_Lean_Format_paren___closed__2; lean_object* l_ReaderT_pure___at_Lean_PrettyPrinter_Parenthesizer_instMonadQuotationParenthesizerM___spec__1(lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_withForbidden_parenthesizer___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -416,12 +423,11 @@ lean_object* l_Lean_PrettyPrinter_Parenthesizer_maybeParenthesize___boxed(lean_o lean_object* l_Lean_PrettyPrinter_Parenthesizer_checkInsideQuot_parenthesizer___rarg(lean_object*); lean_object* l_Lean_PrettyPrinter_parenthesizeCommand___closed__1; lean_object* l_Lean_PrettyPrinter_mkParenthesizerAttribute___closed__9; +lean_object* l_Lean_PrettyPrinter_Parenthesizer_withAntiquotSuffixSplice_parenthesizer___boxed(lean_object*); lean_object* l_ReaderT_pure___at_Lean_PrettyPrinter_Parenthesizer_instMonadQuotationParenthesizerM___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__19; lean_object* l_Lean_PrettyPrinter_Parenthesizer_instMonadTraverserParenthesizerM___closed__1; lean_object* l_Lean_PrettyPrinter_Parenthesizer_maybeParenthesize_match__5___rarg(lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__1; -lean_object* l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__8; lean_object* l_Lean_PrettyPrinter_Parenthesizer_maybeParenthesize___lambda__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_mkParenthesizerAttribute___lambda__1___closed__5; lean_object* l_Lean_PrettyPrinter_Parenthesizer_instMonadTraverserParenthesizerM___lambda__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -440,11 +446,11 @@ lean_object* l_Lean_PrettyPrinter_Parenthesizer_trailingNode_parenthesizer___lam lean_object* l_Nat_forM_loop___at_Lean_PrettyPrinter_Parenthesizer_parenthesizeCategoryCore___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_MonadTraverser_getIdx___at_Lean_PrettyPrinter_Parenthesizer_maybeParenthesize___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13707____closed__3; +lean_object* l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__12; lean_object* l_Lean_PrettyPrinter_Parenthesizer_trailingNode_parenthesizer___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_mkParenthesizerAttribute___closed__3; lean_object* l_Lean_PrettyPrinter_Parenthesizer_nameLitNoAntiquot_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_throwError(lean_object*); -lean_object* l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__6; extern lean_object* l_Lean_Option_format___rarg___closed__3; lean_object* l_Lean_PrettyPrinter_parenthesize_match__1___rarg(lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_maybeParenthesize___closed__16; @@ -458,7 +464,6 @@ lean_object* l_Lean_Syntax_MonadTraverser_getIdx___at_Lean_PrettyPrinter_Parenth lean_object* l_Lean_PrettyPrinter_Parenthesizer_instMonadTraverserParenthesizerM_match__1___rarg(lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_mkCategoryParenthesizerAttribute___closed__2; lean_object* l_Lean_PrettyPrinter_Parenthesizer_lookahead_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_IO_mkRef___at_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2401____spec__1(lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_maybeParenthesize___lambda__4___closed__1; lean_object* l_Lean_PrettyPrinter_mkCombinatorParenthesizerAttribute(lean_object*); lean_object* l_Lean_throwError___at_Lean_Core_withIncRecDepth___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*); @@ -466,13 +471,13 @@ extern lean_object* l_myMacro____x40_Init_Notation___hyg_521____closed__23; uint8_t l_Lean_Syntax_isOfKind(lean_object*, lean_object*); lean_object* l_Lean_Syntax_MonadTraverser_goRight___at_Lean_PrettyPrinter_Parenthesizer_maybeParenthesize___spec__6___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_skip_parenthesizer___rarg(lean_object*); -lean_object* l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__15; lean_object* l_Lean_PrettyPrinter_Parenthesizer_parenthesizerAliasesRef; lean_object* l_Lean_PrettyPrinter_Parenthesizer_instCoeParenthesizerParenthesizerAliasValue(lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_parenthesizeCategoryCore___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_PrettyPrinter_Parenthesizer_withAntiquotSuffixSplice_parenthesizer___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_back___at_Lean_Syntax_Traverser_up___spec__1(lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_trailingNode_parenthesizer___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__3; +lean_object* l_Lean_PrettyPrinter_Parenthesizer_withAntiquotSuffixSplice_parenthesizer(lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_instMonadTraverserParenthesizerM_match__1(lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_checkLineEq_parenthesizer___rarg(lean_object*); lean_object* l_Lean_indentD(lean_object*); @@ -493,14 +498,13 @@ lean_object* l_Lean_PrettyPrinter_mkParenthesizerAttribute___closed__5; extern lean_object* l_Lean_Format_paren___closed__3; lean_object* l_ReaderT_map___at_Lean_PrettyPrinter_Parenthesizer_instMonadTraverserParenthesizerM___spec__1(lean_object*, lean_object*); extern lean_object* l_myMacro____x40_Init_Notation___hyg_1261____closed__10; +lean_object* l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__3; lean_object* lean_nat_mod(lean_object*, lean_object*); -lean_object* l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__17; lean_object* l_Lean_PrettyPrinter_Parenthesizer_withForbidden_parenthesizer___boxed(lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_maybeParenthesize_match__1(lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_State_minPrec___default; lean_object* l_Lean_PrettyPrinter_mkCategoryParenthesizerAttribute___closed__3; lean_object* l_Lean_PrettyPrinter_Parenthesizer_strLitNoAntiquot_parenthesizer___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__13; lean_object* l_Lean_addTrace___at_Lean_PrettyPrinter_Parenthesizer_maybeParenthesize___spec__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_notFollowedBy_parenthesizer___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_trailingNode_parenthesizer___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -522,19 +526,19 @@ lean_object* l_Lean_Syntax_MonadTraverser_getIdx___at_Lean_PrettyPrinter_Parenth lean_object* l_Array_back___at_Lean_Syntax_Traverser_up___spec__2(lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___closed__1; lean_object* l_ReaderT_bind___at_Lean_PrettyPrinter_Parenthesizer_trailingNode_parenthesizer___spec__1(lean_object*, lean_object*); -lean_object* l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__14; lean_object* l_Lean_Syntax_Traverser_left(lean_object*); lean_object* l___private_Lean_Util_Trace_0__Lean_checkTraceOptionM___at_Lean_PrettyPrinter_parenthesize___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_checkInsideQuot_parenthesizer___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__7; lean_object* l_Lean_PrettyPrinter_Parenthesizer_categoryParserOfStack_parenthesizer___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_mkCombinatorParenthesizerAttribute___closed__2; +lean_object* l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__10; lean_object* l_Lean_PrettyPrinter_Parenthesizer_maybeParenthesize___lambda__3___closed__1; lean_object* l_Lean_PrettyPrinter_Parenthesizer_checkTailWs_parenthesizer___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_mkCategoryParenthesizerAttribute(lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_parserOfStack_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__16; +lean_object* l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__20; lean_object* l_Lean_PrettyPrinter_Parenthesizer_maybeParenthesize_match__5(lean_object*); -lean_object* l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__5; extern lean_object* l_instInhabitedPUnit; lean_object* l_Lean_PrettyPrinter_Parenthesizer_level_parenthesizer___closed__1; lean_object* l_Lean_Syntax_formatStxAux(lean_object*, uint8_t, lean_object*, lean_object*); @@ -550,11 +554,12 @@ extern lean_object* l_Lean_MetavarContext_MkBinding_mkBinding___closed__1; lean_object* l_Lean_PrettyPrinter_Parenthesizer_notFollowedBy_parenthesizer___rarg(lean_object*); lean_object* l_Lean_Syntax_MonadTraverser_getCur___at_Lean_PrettyPrinter_Parenthesizer_visitArgs___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_checkColGt_parenthesizer___rarg(lean_object*); +lean_object* l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__24; lean_object* l_Lean_PrettyPrinter_Parenthesizer_throwBacktrack(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_liftCoreM___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_fmt___at_Lean_PrettyPrinter_Parenthesizer_maybeParenthesize___spec__8(lean_object*); -lean_object* l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__18; lean_object* l_Lean_PrettyPrinter_parenthesize___closed__4; +lean_object* l_IO_mkRef___at_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2432____spec__1(lean_object*, lean_object*); lean_object* lean_mk_antiquot_parenthesizer(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_mkCategoryParenthesizerAttribute___closed__5; uint8_t lean_nat_dec_lt(lean_object*, lean_object*); @@ -6925,6 +6930,100 @@ x_8 = l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(x_1, x_2, x_3, x_4 return x_8; } } +lean_object* l_Lean_PrettyPrinter_Parenthesizer_withAntiquotSuffixSplice_parenthesizer___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_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +x_8 = lean_apply_5(x_1, x_3, x_4, x_5, x_6, x_7); +if (lean_obj_tag(x_8) == 0) +{ +lean_object* x_9; lean_object* x_10; +x_9 = lean_ctor_get(x_8, 1); +lean_inc(x_9); +lean_dec(x_8); +x_10 = lean_apply_5(x_2, x_3, x_4, x_5, x_6, x_9); +return x_10; +} +else +{ +uint8_t x_11; +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_11 = !lean_is_exclusive(x_8); +if (x_11 == 0) +{ +return x_8; +} +else +{ +lean_object* x_12; lean_object* x_13; lean_object* x_14; +x_12 = lean_ctor_get(x_8, 0); +x_13 = lean_ctor_get(x_8, 1); +lean_inc(x_13); +lean_inc(x_12); +lean_dec(x_8); +x_14 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_14, 0, x_12); +lean_ctor_set(x_14, 1, x_13); +return x_14; +} +} +} +} +lean_object* l_Lean_PrettyPrinter_Parenthesizer_withAntiquotSuffixSplice_parenthesizer___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +_start: +{ +lean_object* x_8; lean_object* x_9; lean_object* x_10; uint8_t x_11; +x_8 = l_Lean_Syntax_MonadTraverser_getCur___at_Lean_PrettyPrinter_Parenthesizer_visitArgs___spec__1___rarg(x_4, x_5, x_6, x_7); +x_9 = lean_ctor_get(x_8, 0); +lean_inc(x_9); +x_10 = lean_ctor_get(x_8, 1); +lean_inc(x_10); +lean_dec(x_8); +x_11 = l_Lean_Syntax_isAntiquotSuffixSplice(x_9); +lean_dec(x_9); +if (x_11 == 0) +{ +lean_object* x_12; +lean_dec(x_2); +x_12 = lean_apply_5(x_1, x_3, x_4, x_5, x_6, x_10); +return x_12; +} +else +{ +lean_object* x_13; lean_object* x_14; +x_13 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_withAntiquotSuffixSplice_parenthesizer___rarg___lambda__1), 7, 2); +lean_closure_set(x_13, 0, x_2); +lean_closure_set(x_13, 1, x_1); +x_14 = l_Lean_PrettyPrinter_Parenthesizer_visitArgs(x_13, x_3, x_4, x_5, x_6, x_10); +return x_14; +} +} +} +lean_object* l_Lean_PrettyPrinter_Parenthesizer_withAntiquotSuffixSplice_parenthesizer(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_withAntiquotSuffixSplice_parenthesizer___rarg), 7, 0); +return x_2; +} +} +lean_object* l_Lean_PrettyPrinter_Parenthesizer_withAntiquotSuffixSplice_parenthesizer___boxed(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = l_Lean_PrettyPrinter_Parenthesizer_withAntiquotSuffixSplice_parenthesizer(x_1); +lean_dec(x_1); +return x_2; +} +} lean_object* l_Nat_forM_loop___at_Lean_PrettyPrinter_Parenthesizer_parenthesizeCategoryCore___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) { _start: { @@ -10102,7 +10201,7 @@ x_10 = l_Lean_PrettyPrinter_Parenthesizer_ite___rarg(x_9, x_2, x_3, x_4, x_5, x_ return x_10; } } -lean_object* l_IO_mkRef___at_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2401____spec__1(lean_object* x_1, lean_object* x_2) { +lean_object* l_IO_mkRef___at_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2432____spec__1(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; uint8_t x_4; @@ -10127,12 +10226,12 @@ return x_7; } } } -lean_object* l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2401_(lean_object* x_1) { +lean_object* l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2432_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; x_2 = lean_box(0); -x_3 = l_IO_mkRef___at_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2401____spec__1(x_2, x_1); +x_3 = l_IO_mkRef___at_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2432____spec__1(x_2, x_1); return x_3; } } @@ -10172,7 +10271,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__1() { +static lean_object* _init_l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__1() { _start: { lean_object* x_1; @@ -10180,17 +10279,17 @@ x_1 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_checkWsBefor return x_1; } } -static lean_object* _init_l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__2() { +static lean_object* _init_l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__1; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__1; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__3() { +static lean_object* _init_l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__3() { _start: { lean_object* x_1; @@ -10198,17 +10297,17 @@ x_1 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_checkNoWsBef return x_1; } } -static lean_object* _init_l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__4() { +static lean_object* _init_l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__4() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__3; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__3; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__5() { +static lean_object* _init_l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__5() { _start: { lean_object* x_1; @@ -10216,17 +10315,17 @@ x_1 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_checkColGt_p return x_1; } } -static lean_object* _init_l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__6() { +static lean_object* _init_l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__6() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__5; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__5; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__7() { +static lean_object* _init_l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__7() { _start: { lean_object* x_1; @@ -10234,17 +10333,17 @@ x_1 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_checkColGe_p return x_1; } } -static lean_object* _init_l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__8() { +static lean_object* _init_l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__8() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__7; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__7; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__9() { +static lean_object* _init_l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__9() { _start: { lean_object* x_1; @@ -10252,17 +10351,17 @@ x_1 = lean_mk_string("lookahead"); return x_1; } } -static lean_object* _init_l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__10() { +static lean_object* _init_l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__9; +x_2 = l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__9; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__11() { +static lean_object* _init_l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__11() { _start: { lean_object* x_1; @@ -10270,17 +10369,17 @@ x_1 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_lookahead_pa return x_1; } } -static lean_object* _init_l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__12() { +static lean_object* _init_l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__12() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__11; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__11; x_2 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__13() { +static lean_object* _init_l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__13() { _start: { lean_object* x_1; @@ -10288,17 +10387,17 @@ x_1 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_atomic_paren return x_1; } } -static lean_object* _init_l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__14() { +static lean_object* _init_l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__14() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__13; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__13; x_2 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__15() { +static lean_object* _init_l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__15() { _start: { lean_object* x_1; @@ -10306,17 +10405,17 @@ x_1 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_notFollowedB return x_1; } } -static lean_object* _init_l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__16() { +static lean_object* _init_l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__16() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__15; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__15; x_2 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__17() { +static lean_object* _init_l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__17() { _start: { lean_object* x_1; @@ -10324,17 +10423,17 @@ x_1 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_withPosition return x_1; } } -static lean_object* _init_l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__18() { +static lean_object* _init_l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__18() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__17; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__17; x_2 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__19() { +static lean_object* _init_l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__19() { _start: { lean_object* x_1; @@ -10342,17 +10441,17 @@ x_1 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_interpolated return x_1; } } -static lean_object* _init_l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__20() { +static lean_object* _init_l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__20() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__19; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__19; x_2 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__21() { +static lean_object* _init_l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__21() { _start: { lean_object* x_1; @@ -10360,17 +10459,17 @@ x_1 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_orelse_paren return x_1; } } -static lean_object* _init_l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__22() { +static lean_object* _init_l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__22() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__21; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__21; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__23() { +static lean_object* _init_l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__23() { _start: { lean_object* x_1; @@ -10378,23 +10477,23 @@ x_1 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_pare return x_1; } } -static lean_object* _init_l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__24() { +static lean_object* _init_l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__24() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__23; +x_1 = l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__23; x_2 = lean_alloc_ctor(2, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -lean_object* l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466_(lean_object* x_1) { +lean_object* l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_2 = l_Lean_PrettyPrinter_Parenthesizer_parenthesizerAliasesRef; x_3 = l_term___x24_______closed__8; -x_4 = l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__2; +x_4 = l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__2; x_5 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_3, x_4, x_1); if (lean_obj_tag(x_5) == 0) { @@ -10403,7 +10502,7 @@ x_6 = lean_ctor_get(x_5, 1); lean_inc(x_6); lean_dec(x_5); x_7 = l_Array_term_____x5b___x3a___x5d___closed__6; -x_8 = l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__4; +x_8 = l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__4; x_9 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_7, x_8, x_6); if (lean_obj_tag(x_9) == 0) { @@ -10412,7 +10511,7 @@ x_10 = lean_ctor_get(x_9, 1); lean_inc(x_10); lean_dec(x_9); x_11 = l_Lean_Parser_Tactic_intro___closed__10; -x_12 = l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__6; +x_12 = l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__6; x_13 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_11, x_12, x_10); if (lean_obj_tag(x_13) == 0) { @@ -10421,7 +10520,7 @@ x_14 = lean_ctor_get(x_13, 1); lean_inc(x_14); lean_dec(x_13); x_15 = l_myMacro____x40_Init_Notation___hyg_1261____closed__10; -x_16 = l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__8; +x_16 = l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__8; x_17 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_15, x_16, x_14); if (lean_obj_tag(x_17) == 0) { @@ -10429,8 +10528,8 @@ lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; x_18 = lean_ctor_get(x_17, 1); lean_inc(x_18); lean_dec(x_17); -x_19 = l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__10; -x_20 = l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__12; +x_19 = l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__10; +x_20 = l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__12; x_21 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_19, x_20, x_18); if (lean_obj_tag(x_21) == 0) { @@ -10439,7 +10538,7 @@ x_22 = lean_ctor_get(x_21, 1); lean_inc(x_22); lean_dec(x_21); x_23 = l_term___x24_______closed__4; -x_24 = l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__14; +x_24 = l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__14; x_25 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_23, x_24, x_22); if (lean_obj_tag(x_25) == 0) { @@ -10448,7 +10547,7 @@ x_26 = lean_ctor_get(x_25, 1); lean_inc(x_26); lean_dec(x_25); x_27 = l_myMacro____x40_Init_Notation___hyg_1481____closed__4; -x_28 = l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__16; +x_28 = l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__16; x_29 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_27, x_28, x_26); if (lean_obj_tag(x_29) == 0) { @@ -10457,7 +10556,7 @@ x_30 = lean_ctor_get(x_29, 1); lean_inc(x_30); lean_dec(x_29); x_31 = l_Lean_Parser_Tactic_location___closed__4; -x_32 = l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__18; +x_32 = l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__18; x_33 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_31, x_32, x_30); if (lean_obj_tag(x_33) == 0) { @@ -10466,7 +10565,7 @@ x_34 = lean_ctor_get(x_33, 1); lean_inc(x_34); lean_dec(x_33); x_35 = l_termS_x21_____closed__6; -x_36 = l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__20; +x_36 = l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__20; x_37 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_35, x_36, x_34); if (lean_obj_tag(x_37) == 0) { @@ -10475,7 +10574,7 @@ x_38 = lean_ctor_get(x_37, 1); lean_inc(x_38); lean_dec(x_37); x_39 = l_myMacro____x40_Init_Notation___hyg_376____closed__6; -x_40 = l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__22; +x_40 = l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__22; x_41 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_39, x_40, x_38); if (lean_obj_tag(x_41) == 0) { @@ -10484,7 +10583,7 @@ x_42 = lean_ctor_get(x_41, 1); lean_inc(x_42); lean_dec(x_41); x_43 = l_stx___x3c_x7c_x3e_____closed__4; -x_44 = l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__24; +x_44 = l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__24; x_45 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_43, x_44, x_42); return x_45; } @@ -11276,7 +11375,7 @@ x_6 = l_Lean_PrettyPrinter_parenthesize(x_5, x_1, x_2, x_3, x_4); return x_6; } } -lean_object* l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2669_(lean_object* x_1) { +lean_object* l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2700_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; @@ -11535,60 +11634,60 @@ l_Lean_PrettyPrinter_Parenthesizer_interpolatedStr_parenthesizer___closed__1 = _ lean_mark_persistent(l_Lean_PrettyPrinter_Parenthesizer_interpolatedStr_parenthesizer___closed__1); l_Lean_PrettyPrinter_Parenthesizer_interpolatedStr_parenthesizer___boxed__const__1 = _init_l_Lean_PrettyPrinter_Parenthesizer_interpolatedStr_parenthesizer___boxed__const__1(); lean_mark_persistent(l_Lean_PrettyPrinter_Parenthesizer_interpolatedStr_parenthesizer___boxed__const__1); -res = l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2401_(lean_io_mk_world()); +res = l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2432_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; l_Lean_PrettyPrinter_Parenthesizer_parenthesizerAliasesRef = lean_io_result_get_value(res); lean_mark_persistent(l_Lean_PrettyPrinter_Parenthesizer_parenthesizerAliasesRef); lean_dec_ref(res); -l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__1 = _init_l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__1(); -lean_mark_persistent(l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__1); -l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__2 = _init_l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__2(); -lean_mark_persistent(l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__2); -l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__3 = _init_l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__3(); -lean_mark_persistent(l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__3); -l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__4 = _init_l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__4(); -lean_mark_persistent(l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__4); -l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__5 = _init_l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__5(); -lean_mark_persistent(l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__5); -l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__6 = _init_l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__6(); -lean_mark_persistent(l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__6); -l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__7 = _init_l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__7(); -lean_mark_persistent(l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__7); -l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__8 = _init_l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__8(); -lean_mark_persistent(l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__8); -l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__9 = _init_l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__9(); -lean_mark_persistent(l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__9); -l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__10 = _init_l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__10(); -lean_mark_persistent(l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__10); -l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__11 = _init_l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__11(); -lean_mark_persistent(l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__11); -l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__12 = _init_l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__12(); -lean_mark_persistent(l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__12); -l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__13 = _init_l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__13(); -lean_mark_persistent(l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__13); -l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__14 = _init_l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__14(); -lean_mark_persistent(l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__14); -l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__15 = _init_l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__15(); -lean_mark_persistent(l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__15); -l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__16 = _init_l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__16(); -lean_mark_persistent(l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__16); -l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__17 = _init_l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__17(); -lean_mark_persistent(l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__17); -l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__18 = _init_l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__18(); -lean_mark_persistent(l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__18); -l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__19 = _init_l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__19(); -lean_mark_persistent(l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__19); -l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__20 = _init_l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__20(); -lean_mark_persistent(l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__20); -l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__21 = _init_l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__21(); -lean_mark_persistent(l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__21); -l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__22 = _init_l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__22(); -lean_mark_persistent(l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__22); -l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__23 = _init_l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__23(); -lean_mark_persistent(l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__23); -l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__24 = _init_l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__24(); -lean_mark_persistent(l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466____closed__24); -res = l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2466_(lean_io_mk_world()); +l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__1 = _init_l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__1(); +lean_mark_persistent(l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__1); +l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__2 = _init_l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__2(); +lean_mark_persistent(l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__2); +l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__3 = _init_l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__3(); +lean_mark_persistent(l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__3); +l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__4 = _init_l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__4(); +lean_mark_persistent(l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__4); +l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__5 = _init_l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__5(); +lean_mark_persistent(l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__5); +l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__6 = _init_l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__6(); +lean_mark_persistent(l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__6); +l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__7 = _init_l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__7(); +lean_mark_persistent(l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__7); +l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__8 = _init_l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__8(); +lean_mark_persistent(l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__8); +l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__9 = _init_l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__9(); +lean_mark_persistent(l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__9); +l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__10 = _init_l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__10(); +lean_mark_persistent(l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__10); +l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__11 = _init_l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__11(); +lean_mark_persistent(l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__11); +l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__12 = _init_l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__12(); +lean_mark_persistent(l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__12); +l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__13 = _init_l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__13(); +lean_mark_persistent(l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__13); +l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__14 = _init_l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__14(); +lean_mark_persistent(l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__14); +l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__15 = _init_l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__15(); +lean_mark_persistent(l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__15); +l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__16 = _init_l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__16(); +lean_mark_persistent(l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__16); +l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__17 = _init_l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__17(); +lean_mark_persistent(l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__17); +l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__18 = _init_l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__18(); +lean_mark_persistent(l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__18); +l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__19 = _init_l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__19(); +lean_mark_persistent(l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__19); +l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__20 = _init_l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__20(); +lean_mark_persistent(l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__20); +l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__21 = _init_l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__21(); +lean_mark_persistent(l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__21); +l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__22 = _init_l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__22(); +lean_mark_persistent(l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__22); +l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__23 = _init_l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__23(); +lean_mark_persistent(l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__23); +l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__24 = _init_l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__24(); +lean_mark_persistent(l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497____closed__24); +res = l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2497_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_PrettyPrinter_parenthesize___closed__1 = _init_l_Lean_PrettyPrinter_parenthesize___closed__1(); @@ -11605,7 +11704,7 @@ l_Lean_PrettyPrinter_parenthesizeTerm___closed__1 = _init_l_Lean_PrettyPrinter_p lean_mark_persistent(l_Lean_PrettyPrinter_parenthesizeTerm___closed__1); l_Lean_PrettyPrinter_parenthesizeCommand___closed__1 = _init_l_Lean_PrettyPrinter_parenthesizeCommand___closed__1(); lean_mark_persistent(l_Lean_PrettyPrinter_parenthesizeCommand___closed__1); -res = l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2669_(lean_io_mk_world()); +res = l_Lean_PrettyPrinter_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_2700_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); return lean_io_result_mk_ok(lean_box(0)); diff --git a/stage0/stdlib/Lean/Syntax.c b/stage0/stdlib/Lean/Syntax.c index 2c132217f3..0ebdb2063c 100644 --- a/stage0/stdlib/Lean/Syntax.c +++ b/stage0/stdlib/Lean/Syntax.c @@ -24,6 +24,7 @@ lean_object* l_List_map___at_Lean_Syntax_formatStxAux___spec__5(lean_object*, ui lean_object* l_Lean_Syntax_formatStxAux___closed__1; lean_object* lean_array_set(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_unescapeAntiquot(lean_object*); +uint8_t l_Lean_Syntax_isAntiquotSuffixSplice(lean_object*); lean_object* l_Lean_Syntax_replaceM___rarg___lambda__2(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_getTailWithPos(lean_object*); size_t l_USize_add(size_t, size_t); @@ -32,13 +33,13 @@ lean_object* l_Lean_Syntax_isQuot_match__1___rarg___closed__2; lean_object* l_Lean_Syntax_mkAntiquotNode___closed__3; extern lean_object* l_String_instInhabitedString; lean_object* l_Lean_Syntax_isQuot_match__1___rarg___closed__1; -lean_object* l_Lean_Syntax_mkAntiquotNode_match__3___rarg(uint8_t, lean_object*, lean_object*); uint8_t l_Lean_Syntax_isAntiquotScope(lean_object*); lean_object* lean_mk_empty_array_with_capacity(lean_object*); lean_object* l_Lean_Syntax_mkAntiquotNode___closed__12; lean_object* l_Lean_Syntax_mkAntiquotNode_match__1(lean_object*); lean_object* l_List_map___at_Lean_Syntax_formatStxAux___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_nullKind; +lean_object* l_Lean_Syntax_getAntiquotSuffixSpliceInner(lean_object*); lean_object* l_Lean_Syntax_reprint___closed__1; lean_object* l_Lean_Syntax_rewriteBottomUpM___rarg___lambda__1(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_modifyArg(lean_object*, lean_object*, lean_object*); @@ -50,6 +51,7 @@ lean_object* l_Lean_Format_joinSep___at_Lean_Syntax_formatStxAux___spec__2(lean_ lean_object* l_Lean_Syntax_ifNodeKind___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_mkAntiquotNode___closed__7; lean_object* l_Lean_Syntax_Traverser_up(lean_object*); +lean_object* l_Lean_Syntax_antiquotSuffixSplice_x3f(lean_object*); lean_object* l_Lean_Syntax_mkAntiquotNode_match__1___rarg___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_MonadTraverser_goRight___rarg(lean_object*); lean_object* l_Lean_Syntax_getIdAt(lean_object*, lean_object*); @@ -70,7 +72,6 @@ lean_object* l_Lean_Syntax_isAntiquot_match__1___rarg___closed__1; lean_object* l_Lean_Syntax_MonadTraverser_getCur(lean_object*); extern lean_object* l_Array_empty___closed__1; lean_object* l_Lean_Syntax_MonadTraverser_goRight(lean_object*); -lean_object* l_Lean_Syntax_getAntiquotScopeSuffix(lean_object*); lean_object* l_Lean_Syntax_isAntiquot_match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_SyntaxNode_withArgs(lean_object*); extern lean_object* l_Lean_instInhabitedParserDescr___closed__1; @@ -80,7 +81,6 @@ uint8_t lean_name_eq(lean_object*, lean_object*); lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Syntax_reprint___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_isQuot_match__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_getAtomVal_x21___boxed(lean_object*); -lean_object* l_Lean_Syntax_mkAntiquotNode___closed__16; lean_object* l_Lean_Syntax_setAtomVal_match__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_instInhabitedNat; lean_object* l_Lean_Syntax_getAtomVal_x21___closed__1; @@ -109,12 +109,13 @@ uint8_t l_USize_decLt(size_t, size_t); extern lean_object* l_term___x24_______closed__5; lean_object* l_Lean_Syntax_MonadTraverser_goDown(lean_object*); lean_object* l_Array_back_x3f___rarg(lean_object*); -lean_object* l_Lean_Syntax_mkAntiquotNode(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t); +lean_object* l_Lean_Syntax_mkAntiquotNode(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_modifyArgs_match__1(lean_object*); lean_object* l_List_map___at_Lean_Syntax_formatStxAux___spec__4(lean_object*, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Syntax_getTailWithPos_match__1(lean_object*); lean_object* l___private_Lean_Syntax_0__Lean_Syntax_updateLeadingAux_match__1(lean_object*); lean_object* lean_nat_add(lean_object*, lean_object*); +lean_object* l_Lean_Syntax_antiquotSuffixSplice_x3f_match__1___rarg___closed__1; extern lean_object* l_myMacro____x40_Init_Notation___hyg_49____closed__15; lean_object* l_Lean_Syntax_modifyArg___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Array_findSomeRevM_x3f_find___at_Lean_Syntax_getTailWithPos___spec__1___boxed(lean_object*, lean_object*, lean_object*); @@ -154,7 +155,6 @@ uint8_t l_List_beq___at_Lean_Syntax_structEq___spec__3(lean_object*, lean_object lean_object* l_Lean_Syntax_replaceM_match__2(lean_object*); lean_object* l___private_Lean_Syntax_0__Lean_Syntax_formatInfo___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_MonadTraverser_getIdx(lean_object*); -lean_object* l_Lean_Syntax_mkAntiquotNode_match__3___rarg___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_asNode_match__1(lean_object*); lean_object* l_Array_mapMUnsafe_map___at_Lean_Syntax_updateLeading___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_structEq___boxed(lean_object*, lean_object*); @@ -189,15 +189,15 @@ lean_object* l___private_Lean_Syntax_0__Lean_Syntax_updateInfo(lean_object*, lea lean_object* l_Lean_Syntax_getId(lean_object*); extern lean_object* l_Lean_choiceKind; lean_object* l_Lean_Syntax_replaceM_match__1___rarg(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Syntax_mkAntiquotNode___closed__15; lean_object* l_Lean_Syntax_instBEqSyntax___closed__1; -lean_object* l_Lean_Syntax_isAntiquotSplicePat___boxed(lean_object*); +lean_object* l_Lean_Syntax_antiquotSuffixSplice_x3f_match__1___rarg(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_formatDataValue___closed__4; lean_object* l_Lean_Syntax_formatStx(lean_object*, lean_object*, uint8_t); lean_object* l___private_Lean_Syntax_0__Lean_Syntax_reprintLeaf(lean_object*, lean_object*); lean_object* l_Lean_Syntax_MonadTraverser_setCur___rarg(lean_object*, lean_object*); lean_object* l_Function_comp___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_getAtomVal_x21_match__1(lean_object*); +lean_object* l_Lean_Syntax_antiquotSuffixSplice_x3f___boxed(lean_object*); lean_object* lean_array_to_list(lean_object*, lean_object*); lean_object* l_Lean_Syntax_mkAntiquotNode___closed__5; lean_object* l_addParenHeuristic(lean_object*); @@ -209,7 +209,6 @@ lean_object* l_Lean_Syntax_MonadTraverser_goLeft___rarg___closed__1; lean_object* l_Lean_SyntaxNode_modifyArgs(lean_object*, lean_object*); lean_object* l_Lean_SyntaxNode_getArgs___boxed(lean_object*); lean_object* l_Lean_Syntax_isMissing_match__1(lean_object*); -lean_object* l_Array_anyMUnsafe_any___at_Lean_Syntax_isAntiquotSplicePat___spec__1___boxed(lean_object*, lean_object*, lean_object*); lean_object* l___private_Init_Util_0__mkPanicMessageWithDecl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_isQuot_match__1(lean_object*); lean_object* l_Lean_Syntax_antiquotScopeKind_x3f(lean_object*); @@ -234,7 +233,6 @@ lean_object* l_Lean_Syntax_MonadTraverser_goUp(lean_object*); lean_object* l_Lean_Syntax_mkAntiquotNode___closed__9; uint8_t l_Lean_Syntax_isAntiquot(lean_object*); lean_object* l_Lean_Syntax_ifNode___rarg(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Syntax_mkAntiquotNode___closed__17; lean_object* l_Lean_Syntax_instToStringSyntax; lean_object* l_Array_back___at_Lean_Syntax_Traverser_up___spec__2___boxed(lean_object*); lean_object* l_Lean_SyntaxNode_getNumArgs___boxed(lean_object*); @@ -245,18 +243,16 @@ lean_object* l_Array_mapMUnsafe_map___rarg(lean_object*, lean_object*, size_t, s lean_object* l_List_map___at_Lean_Syntax_formatStxAux___spec__3(lean_object*, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Syntax_Traverser_fromSyntax(lean_object*); lean_object* l_Lean_unreachIsNodeAtom(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Syntax_mkAntiquotNode___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Syntax_mkAntiquotNode___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_replaceM_match__2___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_isMissing_match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_mkAntiquotNode___closed__1; lean_object* l_Lean_Syntax_antiquotKind_x3f_match__1(lean_object*); uint8_t l_Lean_Syntax_isMissing(lean_object*); lean_object* l_Lean_Syntax_replaceM___at_Lean_Syntax_updateLeading___spec__1(lean_object*, lean_object*); -uint8_t l_Array_anyMUnsafe_any___at_Lean_Syntax_isAntiquotSplicePat___spec__1(lean_object*, size_t, size_t); lean_object* l_Lean_Syntax_getQuotContent(lean_object*); lean_object* l_Lean_SyntaxNode_getNumArgs(lean_object*); extern lean_object* l_Lean_Syntax_mkApp___closed__1; -lean_object* l_Lean_Syntax_isAntiquotSplice___boxed(lean_object*); lean_object* l_Lean_Syntax_instToStringSyntax___closed__1; lean_object* l_String_posOfAux(lean_object*, uint32_t, lean_object*, lean_object*); lean_object* l___private_Lean_Syntax_0__Lean_Syntax_formatInfo_match__2___rarg(lean_object*, lean_object*, lean_object*); @@ -279,10 +275,10 @@ extern lean_object* l_Lean_Format_sbracket___closed__4; lean_object* l_Lean_Syntax_getArgs(lean_object*); lean_object* l_Lean_Name_append(lean_object*, lean_object*); lean_object* l_Lean_Syntax_formatStxAux___closed__9; +lean_object* l_Lean_Syntax_getAntiquotSpliceSuffix(lean_object*); lean_object* l_Lean_Syntax_Traverser_right(lean_object*); lean_object* l_Lean_SyntaxNode_withArgs___rarg(lean_object*, lean_object*); lean_object* lean_panic_fn(lean_object*, lean_object*); -uint8_t l_Lean_Syntax_isAntiquotSplicePat(lean_object*); lean_object* l_Lean_Syntax_instToStringSyntax___closed__2; lean_object* l_Lean_SyntaxNode_modifyArgs_match__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_myMacro____x40_Init_Notation___hyg_49____closed__4; @@ -295,14 +291,13 @@ lean_object* l_Lean_Syntax_MonadTraverser_getIdx___rarg(lean_object*, lean_objec lean_object* l_Lean_Syntax_mkAntiquotNode_match__2(lean_object*); lean_object* l_List_map___at_Lean_Syntax_formatStxAux___spec__1(lean_object*, uint8_t, lean_object*, lean_object*); extern lean_object* l_Lean_Format_paren___closed__4; +lean_object* l_Lean_Syntax_getAntiquotSuffixSpliceInner___boxed(lean_object*); lean_object* l_List_beq___at_Lean_Syntax_structEq___spec__2___boxed(lean_object*, lean_object*); extern lean_object* l_Lean_instReprFormat___closed__1; lean_object* l_Lean_mkSimpleAtom(lean_object*); -lean_object* l_Lean_Syntax_getAntiquotScopeSuffix___boxed(lean_object*); lean_object* l___private_Lean_Syntax_0__Lean_Syntax_formatInfo_match__3(lean_object*); lean_object* l___private_Lean_Syntax_0__Lean_Syntax_formatInfo(uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Syntax_MonadTraverser_goDown___rarg___lambda__1(lean_object*, lean_object*); -uint8_t l_Lean_Syntax_isNone(lean_object*); lean_object* l_List_beq___at_Lean_Syntax_structEq___spec__3___boxed(lean_object*, lean_object*); lean_object* l_Lean_Syntax_antiquotScopeKind_x3f_match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_mkAntiquotNode___closed__13; @@ -310,6 +305,7 @@ extern lean_object* l_Lean_mkOptionalNode___closed__1; lean_object* l_Lean_Syntax_MonadTraverser_goUp___rarg___lambda__1(lean_object*); lean_object* l_Lean_SyntaxNode_getIdAt___boxed(lean_object*, lean_object*); lean_object* lean_array_pop(lean_object*); +lean_object* l_Lean_Syntax_isAntiquotSuffixSplice___boxed(lean_object*); lean_object* l_Lean_Syntax_ifNode_match__1(lean_object*); lean_object* lean_mk_array(lean_object*, lean_object*); uint8_t l_Lean_Syntax_isOfKind(lean_object*, lean_object*); @@ -326,7 +322,6 @@ uint8_t l_List_beq___at_Lean_Syntax_structEq___spec__2(lean_object*, lean_object lean_object* l_Lean_Syntax_getAntiquotScopeContents(lean_object*); lean_object* l_Lean_Syntax_getArg(lean_object*, lean_object*); lean_object* l_Lean_Syntax_isAntiquot___boxed(lean_object*); -extern lean_object* l_Lean_mkOptionalNode___closed__2; extern lean_object* l_Lean_Format_paren___closed__3; lean_object* l_Lean_Syntax_replaceM___at_Lean_Syntax_updateLeading___spec__1___boxed__const__1; lean_object* l_Lean_Syntax_formatStxAux___closed__4; @@ -335,14 +330,14 @@ lean_object* l_Lean_Syntax_antiquotKind_x3f_match__1___rarg(lean_object*, lean_o lean_object* l_Lean_unreachIsNodeIdent(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_unsafeCast(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_formatStxAux___closed__6; -extern lean_object* l_stx___x2a___closed__3; lean_object* l_Lean_Syntax_getAtomVal_x21(lean_object*); lean_object* l_List_map___at_Lean_Syntax_formatStxAux___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Syntax_antiquotSuffixSplice_x3f_match__1(lean_object*); lean_object* l_Lean_Syntax_ifNodeKind___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_back___at_Lean_Syntax_Traverser_up___spec__2(lean_object*); lean_object* l_Lean_SyntaxNode_getKind_match__1(lean_object*); lean_object* l_Lean_Syntax_Traverser_left(lean_object*); -lean_object* l_Lean_Syntax_mkAntiquotNode_match__3(lean_object*); +lean_object* l_Lean_Syntax_getAntiquotSpliceSuffix___boxed(lean_object*); lean_object* l_Lean_Syntax_isQuot___boxed(lean_object*); lean_object* l_Lean_Syntax_modifyArgs(lean_object*, lean_object*); lean_object* l_Lean_Syntax_structEq_match__1(lean_object*); @@ -364,7 +359,6 @@ lean_object* l_Lean_Syntax_MonadTraverser_goLeft(lean_object*); lean_object* l_Lean_Syntax_reprint_match__1(lean_object*); uint8_t l_Lean_Syntax_isIdent(lean_object*); lean_object* l_Lean_Syntax_antiquotScopeKind_x3f_match__1(lean_object*); -uint8_t l_Lean_Syntax_isAntiquotSplice(lean_object*); lean_object* l_List_map___at_Lean_Syntax_formatStxAux___spec__6(lean_object*, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_SourceInfo_updateTrailing(lean_object* x_1, lean_object* x_2) { _start: @@ -8358,49 +8352,6 @@ x_3 = lean_box(x_2); return x_3; } } -uint8_t l_Lean_Syntax_isAntiquotSplice(lean_object* x_1) { -_start: -{ -uint8_t x_2; -x_2 = l_Lean_Syntax_isAntiquot(x_1); -if (x_2 == 0) -{ -uint8_t x_3; -x_3 = 0; -return x_3; -} -else -{ -lean_object* x_4; lean_object* x_5; uint8_t x_6; -x_4 = lean_unsigned_to_nat(4u); -x_5 = l_Lean_Syntax_getArg(x_1, x_4); -x_6 = l_Lean_Syntax_isNone(x_5); -lean_dec(x_5); -if (x_6 == 0) -{ -uint8_t x_7; -x_7 = 1; -return x_7; -} -else -{ -uint8_t x_8; -x_8 = 0; -return x_8; -} -} -} -} -lean_object* l_Lean_Syntax_isAntiquotSplice___boxed(lean_object* x_1) { -_start: -{ -uint8_t x_2; lean_object* x_3; -x_2 = l_Lean_Syntax_isAntiquotSplice(x_1); -lean_dec(x_1); -x_3 = lean_box(x_2); -return x_3; -} -} lean_object* l_Lean_Syntax_mkAntiquotNode_match__1___rarg(uint8_t x_1, lean_object* x_2, lean_object* x_3) { _start: { @@ -8471,45 +8422,6 @@ x_2 = lean_alloc_closure((void*)(l_Lean_Syntax_mkAntiquotNode_match__2___rarg), return x_2; } } -lean_object* l_Lean_Syntax_mkAntiquotNode_match__3___rarg(uint8_t x_1, lean_object* x_2, lean_object* x_3) { -_start: -{ -if (x_1 == 0) -{ -lean_object* x_4; lean_object* x_5; -lean_dec(x_2); -x_4 = lean_box(0); -x_5 = lean_apply_1(x_3, x_4); -return x_5; -} -else -{ -lean_object* x_6; lean_object* x_7; -lean_dec(x_3); -x_6 = lean_box(0); -x_7 = lean_apply_1(x_2, x_6); -return x_7; -} -} -} -lean_object* l_Lean_Syntax_mkAntiquotNode_match__3(lean_object* x_1) { -_start: -{ -lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Lean_Syntax_mkAntiquotNode_match__3___rarg___boxed), 3, 0); -return x_2; -} -} -lean_object* l_Lean_Syntax_mkAntiquotNode_match__3___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { -_start: -{ -uint8_t x_4; lean_object* x_5; -x_4 = lean_unbox(x_1); -lean_dec(x_1); -x_5 = l_Lean_Syntax_mkAntiquotNode_match__3___rarg(x_4, x_2, x_3); -return x_5; -} -} static lean_object* _init_l_Lean_Syntax_mkAntiquotNode___closed__1() { _start: { @@ -8533,7 +8445,7 @@ static lean_object* _init_l_Lean_Syntax_mkAntiquotNode___closed__3() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = lean_unsigned_to_nat(5u); +x_1 = lean_unsigned_to_nat(4u); x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } @@ -8551,99 +8463,31 @@ return x_3; static lean_object* _init_l_Lean_Syntax_mkAntiquotNode___closed__5() { _start: { -lean_object* x_1; lean_object* x_2; -x_1 = l_stx___x2a___closed__3; -x_2 = l_Lean_mkAtom(x_1); -return x_2; +lean_object* x_1; +x_1 = lean_mk_string("antiquotNestedExpr"); +return x_1; } } static lean_object* _init_l_Lean_Syntax_mkAntiquotNode___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_mkOptionalNode___closed__2; +x_1 = lean_box(0); x_2 = l_Lean_Syntax_mkAntiquotNode___closed__5; -x_3 = lean_array_push(x_1, x_2); +x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } static lean_object* _init_l_Lean_Syntax_mkAntiquotNode___closed__7() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_nullKind; -x_2 = l_Lean_Syntax_mkAntiquotNode___closed__6; -x_3 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3, 0, x_1); -lean_ctor_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Syntax_mkAntiquotNode___closed__8() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("antiquotName"); -return x_1; -} -} -static lean_object* _init_l_Lean_Syntax_mkAntiquotNode___closed__9() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l_Lean_Syntax_mkAntiquotNode___closed__8; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Syntax_mkAntiquotNode___closed__10() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_myMacro____x40_Init_Notation___hyg_11918____closed__9; -x_2 = l_Lean_mkAtom(x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Syntax_mkAntiquotNode___closed__11() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Syntax_mkApp___closed__1; -x_2 = l_Lean_Syntax_mkAntiquotNode___closed__10; -x_3 = lean_array_push(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Syntax_mkAntiquotNode___closed__12() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string("antiquotNestedExpr"); -return x_1; -} -} -static lean_object* _init_l_Lean_Syntax_mkAntiquotNode___closed__13() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l_Lean_Syntax_mkAntiquotNode___closed__12; -x_3 = lean_name_mk_string(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Syntax_mkAntiquotNode___closed__14() { -_start: -{ lean_object* x_1; lean_object* x_2; x_1 = l_myMacro____x40_Init_Notation___hyg_49____closed__13; x_2 = l_Lean_mkAtom(x_1); return x_2; } } -static lean_object* _init_l_Lean_Syntax_mkAntiquotNode___closed__15() { +static lean_object* _init_l_Lean_Syntax_mkAntiquotNode___closed__8() { _start: { lean_object* x_1; lean_object* x_2; @@ -8652,7 +8496,7 @@ x_2 = l_Lean_mkAtom(x_1); return x_2; } } -static lean_object* _init_l_Lean_Syntax_mkAntiquotNode___closed__16() { +static lean_object* _init_l_Lean_Syntax_mkAntiquotNode___closed__9() { _start: { lean_object* x_1; lean_object* x_2; @@ -8661,126 +8505,153 @@ x_2 = lean_mk_empty_array_with_capacity(x_1); return x_2; } } -static lean_object* _init_l_Lean_Syntax_mkAntiquotNode___closed__17() { +static lean_object* _init_l_Lean_Syntax_mkAntiquotNode___closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Syntax_mkAntiquotNode___closed__16; -x_2 = l_Lean_Syntax_mkAntiquotNode___closed__14; +x_1 = l_Lean_Syntax_mkAntiquotNode___closed__9; +x_2 = l_Lean_Syntax_mkAntiquotNode___closed__7; x_3 = lean_array_push(x_1, x_2); return x_3; } } -lean_object* l_Lean_Syntax_mkAntiquotNode(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, uint8_t x_5) { +static lean_object* _init_l_Lean_Syntax_mkAntiquotNode___closed__11() { _start: { -lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; uint8_t x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; -x_6 = l_Lean_Syntax_mkAntiquotNode___closed__1; -x_7 = lean_mk_array(x_2, x_6); -x_8 = l_Lean_nullKind; -x_9 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_9, 0, x_8); -lean_ctor_set(x_9, 1, x_7); -x_10 = l_Lean_Syntax_isIdent(x_1); -x_11 = l_Lean_Syntax_mkAntiquotNode___closed__2; -x_12 = l_Lean_Name_append(x_4, x_11); -x_13 = l_Lean_Syntax_mkAntiquotNode___closed__4; -x_14 = lean_array_push(x_13, x_9); -if (x_10 == 0) -{ -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_Syntax_mkAntiquotNode___closed__17; -x_39 = lean_array_push(x_38, x_1); -x_40 = l_Lean_Syntax_mkAntiquotNode___closed__15; -x_41 = lean_array_push(x_39, x_40); -x_42 = l_Lean_Syntax_mkAntiquotNode___closed__13; -x_43 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_43, 0, x_42); -lean_ctor_set(x_43, 1, x_41); -x_15 = x_43; -goto block_37; +lean_object* x_1; +x_1 = lean_mk_string("antiquotName"); +return x_1; } -else -{ -x_15 = x_1; -goto block_37; } -block_37: +static lean_object* _init_l_Lean_Syntax_mkAntiquotNode___closed__12() { +_start: { -lean_object* x_16; -x_16 = lean_array_push(x_14, x_15); +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Syntax_mkAntiquotNode___closed__11; +x_3 = lean_name_mk_string(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Syntax_mkAntiquotNode___closed__13() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_myMacro____x40_Init_Notation___hyg_11918____closed__9; +x_2 = l_Lean_mkAtom(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Syntax_mkAntiquotNode___closed__14() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Syntax_mkApp___closed__1; +x_2 = l_Lean_Syntax_mkAntiquotNode___closed__13; +x_3 = lean_array_push(x_1, x_2); +return x_3; +} +} +lean_object* l_Lean_Syntax_mkAntiquotNode(lean_object* x_1, lean_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; uint8_t x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; +x_5 = l_Lean_Syntax_mkAntiquotNode___closed__1; +x_6 = lean_mk_array(x_2, x_5); +x_7 = l_Lean_nullKind; +x_8 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_8, 0, x_7); +lean_ctor_set(x_8, 1, x_6); +x_9 = l_Lean_Syntax_isIdent(x_1); +x_10 = l_Lean_Syntax_mkAntiquotNode___closed__2; +x_11 = l_Lean_Name_append(x_4, x_10); +x_12 = l_Lean_Syntax_mkAntiquotNode___closed__4; +x_13 = lean_array_push(x_12, x_8); +if (x_9 == 0) +{ +lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; +x_14 = l_Lean_Syntax_mkAntiquotNode___closed__10; +x_15 = lean_array_push(x_14, x_1); +x_16 = l_Lean_Syntax_mkAntiquotNode___closed__8; +x_17 = lean_array_push(x_15, x_16); +x_18 = l_Lean_Syntax_mkAntiquotNode___closed__6; +x_19 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_19, 0, x_18); +lean_ctor_set(x_19, 1, x_17); +x_20 = lean_array_push(x_13, x_19); if (lean_obj_tag(x_3) == 0) { -lean_object* x_17; lean_object* x_18; -x_17 = l_Lean_mkOptionalNode___closed__1; -x_18 = lean_array_push(x_16, x_17); -if (x_5 == 0) -{ -lean_object* x_19; lean_object* x_20; -x_19 = lean_array_push(x_18, x_17); -x_20 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_20, 0, x_12); -lean_ctor_set(x_20, 1, x_19); -return x_20; -} -else -{ lean_object* x_21; lean_object* x_22; lean_object* x_23; -x_21 = l_Lean_Syntax_mkAntiquotNode___closed__7; -x_22 = lean_array_push(x_18, x_21); +x_21 = l_Lean_mkOptionalNode___closed__1; +x_22 = lean_array_push(x_20, x_21); x_23 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_23, 0, x_12); +lean_ctor_set(x_23, 0, x_11); lean_ctor_set(x_23, 1, x_22); return x_23; } -} else { -lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; +lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; x_24 = lean_ctor_get(x_3, 0); lean_inc(x_24); lean_dec(x_3); x_25 = l_Lean_mkAtom(x_24); -x_26 = l_Lean_Syntax_mkAntiquotNode___closed__11; +x_26 = l_Lean_Syntax_mkAntiquotNode___closed__14; x_27 = lean_array_push(x_26, x_25); -x_28 = l_Lean_Syntax_mkAntiquotNode___closed__9; +x_28 = l_Lean_Syntax_mkAntiquotNode___closed__12; x_29 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_29, 0, x_28); lean_ctor_set(x_29, 1, x_27); -x_30 = lean_array_push(x_16, x_29); -if (x_5 == 0) -{ -lean_object* x_31; lean_object* x_32; lean_object* x_33; -x_31 = l_Lean_mkOptionalNode___closed__1; -x_32 = lean_array_push(x_30, x_31); -x_33 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_33, 0, x_12); -lean_ctor_set(x_33, 1, x_32); -return x_33; +x_30 = lean_array_push(x_20, x_29); +x_31 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_31, 0, x_11); +lean_ctor_set(x_31, 1, x_30); +return x_31; +} } else { -lean_object* x_34; lean_object* x_35; lean_object* x_36; -x_34 = l_Lean_Syntax_mkAntiquotNode___closed__7; -x_35 = lean_array_push(x_30, x_34); -x_36 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_36, 0, x_12); -lean_ctor_set(x_36, 1, x_35); -return x_36; +lean_object* x_32; +x_32 = lean_array_push(x_13, x_1); +if (lean_obj_tag(x_3) == 0) +{ +lean_object* x_33; lean_object* x_34; lean_object* x_35; +x_33 = l_Lean_mkOptionalNode___closed__1; +x_34 = lean_array_push(x_32, x_33); +x_35 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_35, 0, x_11); +lean_ctor_set(x_35, 1, x_34); +return x_35; +} +else +{ +lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; +x_36 = lean_ctor_get(x_3, 0); +lean_inc(x_36); +lean_dec(x_3); +x_37 = l_Lean_mkAtom(x_36); +x_38 = l_Lean_Syntax_mkAntiquotNode___closed__14; +x_39 = lean_array_push(x_38, x_37); +x_40 = l_Lean_Syntax_mkAntiquotNode___closed__12; +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_32, x_41); +x_43 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_43, 0, x_11); +lean_ctor_set(x_43, 1, x_42); +return x_43; } } } } -} -lean_object* l_Lean_Syntax_mkAntiquotNode___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +lean_object* l_Lean_Syntax_mkAntiquotNode___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { -uint8_t x_6; lean_object* x_7; -x_6 = lean_unbox(x_5); -lean_dec(x_5); -x_7 = l_Lean_Syntax_mkAntiquotNode(x_1, x_2, x_3, x_4, x_6); +lean_object* x_5; +x_5 = l_Lean_Syntax_mkAntiquotNode(x_1, x_2, x_3, x_4); lean_dec(x_4); -return x_7; +return x_5; } } uint8_t l_Lean_Syntax_isEscapedAntiquot(lean_object* x_1) { @@ -8977,7 +8848,7 @@ lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; uint8 x_9 = l_Lean_instInhabitedSyntax; x_10 = lean_unsigned_to_nat(3u); x_11 = lean_array_get(x_9, x_3, x_10); -x_12 = l_Lean_Syntax_mkAntiquotNode___closed__9; +x_12 = l_Lean_Syntax_mkAntiquotNode___closed__12; x_13 = l_Lean_Syntax_isOfKind(x_11, x_12); if (x_13 == 0) { @@ -9197,151 +9068,212 @@ lean_dec(x_1); return x_2; } } -lean_object* l_Lean_Syntax_getAntiquotScopeSuffix(lean_object* x_1) { +lean_object* l_Lean_Syntax_getAntiquotSpliceSuffix(lean_object* x_1) { _start: { -lean_object* x_2; lean_object* x_3; -x_2 = lean_unsigned_to_nat(5u); -x_3 = l_Lean_Syntax_getArg(x_1, x_2); -return x_3; -} -} -lean_object* l_Lean_Syntax_getAntiquotScopeSuffix___boxed(lean_object* x_1) { -_start: +uint8_t x_2; +x_2 = l_Lean_Syntax_isAntiquotScope(x_1); +if (x_2 == 0) { -lean_object* x_2; -x_2 = l_Lean_Syntax_getAntiquotScopeSuffix(x_1); -lean_dec(x_1); -return x_2; -} -} -uint8_t l_Array_anyMUnsafe_any___at_Lean_Syntax_isAntiquotSplicePat___spec__1(lean_object* x_1, size_t x_2, size_t x_3) { -_start: -{ -uint8_t x_4; -x_4 = x_2 == x_3; -if (x_4 == 0) -{ -lean_object* x_5; uint8_t x_6; -x_5 = lean_array_uget(x_1, x_2); -x_6 = l_Lean_Syntax_isAntiquotSplice(x_5); -if (x_6 == 0) -{ -size_t x_7; size_t x_8; -lean_dec(x_5); -x_7 = 1; -x_8 = x_2 + x_7; -x_2 = x_8; -goto _start; -} -else -{ -uint8_t x_10; -x_10 = l_Lean_Syntax_isEscapedAntiquot(x_5); -lean_dec(x_5); -if (x_10 == 0) -{ -uint8_t x_11; -x_11 = 1; -return x_11; -} -else -{ -size_t x_12; size_t x_13; -x_12 = 1; -x_13 = x_2 + x_12; -x_2 = x_13; -goto _start; -} -} -} -else -{ -uint8_t x_15; -x_15 = 0; -return x_15; -} -} -} -uint8_t l_Lean_Syntax_isAntiquotSplicePat(lean_object* x_1) { -_start: -{ -lean_object* x_2; uint8_t x_3; -x_2 = l_Lean_nullKind; -lean_inc(x_1); -x_3 = l_Lean_Syntax_isOfKind(x_1, x_2); -if (x_3 == 0) -{ -uint8_t x_4; -lean_dec(x_1); -x_4 = 0; +lean_object* x_3; lean_object* x_4; +x_3 = lean_unsigned_to_nat(1u); +x_4 = l_Lean_Syntax_getArg(x_1, x_3); return x_4; } else { -lean_object* x_5; lean_object* x_6; lean_object* x_7; uint8_t x_8; -x_5 = l_Lean_Syntax_getArgs(x_1); -lean_dec(x_1); -x_6 = lean_array_get_size(x_5); -x_7 = lean_unsigned_to_nat(0u); -x_8 = lean_nat_dec_lt(x_7, x_6); -if (x_8 == 0) -{ -uint8_t x_9; -lean_dec(x_6); -lean_dec(x_5); -x_9 = 0; -return x_9; +lean_object* x_5; lean_object* x_6; +x_5 = lean_unsigned_to_nat(5u); +x_6 = l_Lean_Syntax_getArg(x_1, x_5); +return x_6; } -else +} +} +lean_object* l_Lean_Syntax_getAntiquotSpliceSuffix___boxed(lean_object* x_1) { +_start: { -uint8_t x_10; -x_10 = lean_nat_dec_le(x_6, x_6); +lean_object* x_2; +x_2 = l_Lean_Syntax_getAntiquotSpliceSuffix(x_1); +lean_dec(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Syntax_antiquotSuffixSplice_x3f_match__1___rarg___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string("antiquot_suffix_splice"); +return x_1; +} +} +lean_object* l_Lean_Syntax_antiquotSuffixSplice_x3f_match__1___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +if (lean_obj_tag(x_1) == 1) +{ +lean_object* x_4; +x_4 = lean_ctor_get(x_1, 0); +lean_inc(x_4); +if (lean_obj_tag(x_4) == 1) +{ +lean_object* x_5; lean_object* x_6; lean_object* x_7; size_t x_8; lean_object* x_9; uint8_t x_10; +x_5 = lean_ctor_get(x_1, 1); +lean_inc(x_5); +x_6 = lean_ctor_get(x_4, 0); +lean_inc(x_6); +x_7 = lean_ctor_get(x_4, 1); +lean_inc(x_7); +x_8 = lean_ctor_get_usize(x_4, 2); +lean_dec(x_4); +x_9 = l_Lean_Syntax_antiquotSuffixSplice_x3f_match__1___rarg___closed__1; +x_10 = lean_string_dec_eq(x_7, x_9); +lean_dec(x_7); if (x_10 == 0) { -uint8_t x_11; +lean_object* x_11; lean_dec(x_6); lean_dec(x_5); -x_11 = 0; +lean_dec(x_2); +x_11 = lean_apply_1(x_3, x_1); return x_11; } else { -size_t x_12; size_t x_13; uint8_t x_14; -x_12 = 0; -x_13 = lean_usize_of_nat(x_6); -lean_dec(x_6); -x_14 = l_Array_anyMUnsafe_any___at_Lean_Syntax_isAntiquotSplicePat___spec__1(x_5, x_12, x_13); -lean_dec(x_5); +lean_object* x_12; lean_object* x_13; +lean_dec(x_3); +lean_dec(x_1); +x_12 = lean_box_usize(x_8); +x_13 = lean_apply_3(x_2, x_6, x_12, x_5); +return x_13; +} +} +else +{ +lean_object* x_14; +lean_dec(x_4); +lean_dec(x_2); +x_14 = lean_apply_1(x_3, x_1); return x_14; } } +else +{ +lean_object* x_15; +lean_dec(x_2); +x_15 = lean_apply_1(x_3, x_1); +return x_15; } } } -lean_object* l_Array_anyMUnsafe_any___at_Lean_Syntax_isAntiquotSplicePat___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_Syntax_antiquotSuffixSplice_x3f_match__1(lean_object* x_1) { _start: { -size_t x_4; size_t x_5; uint8_t x_6; lean_object* x_7; -x_4 = lean_unbox_usize(x_2); -lean_dec(x_2); -x_5 = lean_unbox_usize(x_3); -lean_dec(x_3); -x_6 = l_Array_anyMUnsafe_any___at_Lean_Syntax_isAntiquotSplicePat___spec__1(x_1, x_4, x_5); -lean_dec(x_1); -x_7 = lean_box(x_6); +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l_Lean_Syntax_antiquotSuffixSplice_x3f_match__1___rarg), 3, 0); +return x_2; +} +} +lean_object* l_Lean_Syntax_antiquotSuffixSplice_x3f(lean_object* x_1) { +_start: +{ +if (lean_obj_tag(x_1) == 1) +{ +lean_object* x_2; +x_2 = lean_ctor_get(x_1, 0); +if (lean_obj_tag(x_2) == 1) +{ +lean_object* x_3; lean_object* x_4; lean_object* x_5; uint8_t x_6; +x_3 = lean_ctor_get(x_2, 0); +x_4 = lean_ctor_get(x_2, 1); +x_5 = l_Lean_Syntax_antiquotSuffixSplice_x3f_match__1___rarg___closed__1; +x_6 = lean_string_dec_eq(x_4, x_5); +if (x_6 == 0) +{ +lean_object* x_7; +x_7 = lean_box(0); return x_7; } +else +{ +lean_object* x_8; +lean_inc(x_3); +x_8 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_8, 0, x_3); +return x_8; } -lean_object* l_Lean_Syntax_isAntiquotSplicePat___boxed(lean_object* x_1) { +} +else +{ +lean_object* x_9; +x_9 = lean_box(0); +return x_9; +} +} +else +{ +lean_object* x_10; +x_10 = lean_box(0); +return x_10; +} +} +} +lean_object* l_Lean_Syntax_antiquotSuffixSplice_x3f___boxed(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = l_Lean_Syntax_antiquotSuffixSplice_x3f(x_1); +lean_dec(x_1); +return x_2; +} +} +uint8_t l_Lean_Syntax_isAntiquotSuffixSplice(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = l_Lean_Syntax_antiquotSuffixSplice_x3f(x_1); +if (lean_obj_tag(x_2) == 0) +{ +uint8_t x_3; +x_3 = 0; +return x_3; +} +else +{ +uint8_t x_4; +lean_dec(x_2); +x_4 = 1; +return x_4; +} +} +} +lean_object* l_Lean_Syntax_isAntiquotSuffixSplice___boxed(lean_object* x_1) { _start: { uint8_t x_2; lean_object* x_3; -x_2 = l_Lean_Syntax_isAntiquotSplicePat(x_1); +x_2 = l_Lean_Syntax_isAntiquotSuffixSplice(x_1); +lean_dec(x_1); x_3 = lean_box(x_2); return x_3; } } +lean_object* l_Lean_Syntax_getAntiquotSuffixSpliceInner(lean_object* x_1) { +_start: +{ +lean_object* x_2; lean_object* x_3; +x_2 = lean_unsigned_to_nat(0u); +x_3 = l_Lean_Syntax_getArg(x_1, x_2); +return x_3; +} +} +lean_object* l_Lean_Syntax_getAntiquotSuffixSpliceInner___boxed(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = l_Lean_Syntax_getAntiquotSuffixSpliceInner(x_1); +lean_dec(x_1); +return x_2; +} +} lean_object* initialize_Init(lean_object*); lean_object* initialize_Lean_Data_Name(lean_object*); lean_object* initialize_Lean_Data_Format(lean_object*); @@ -9443,16 +9375,12 @@ l_Lean_Syntax_mkAntiquotNode___closed__13 = _init_l_Lean_Syntax_mkAntiquotNode__ lean_mark_persistent(l_Lean_Syntax_mkAntiquotNode___closed__13); l_Lean_Syntax_mkAntiquotNode___closed__14 = _init_l_Lean_Syntax_mkAntiquotNode___closed__14(); lean_mark_persistent(l_Lean_Syntax_mkAntiquotNode___closed__14); -l_Lean_Syntax_mkAntiquotNode___closed__15 = _init_l_Lean_Syntax_mkAntiquotNode___closed__15(); -lean_mark_persistent(l_Lean_Syntax_mkAntiquotNode___closed__15); -l_Lean_Syntax_mkAntiquotNode___closed__16 = _init_l_Lean_Syntax_mkAntiquotNode___closed__16(); -lean_mark_persistent(l_Lean_Syntax_mkAntiquotNode___closed__16); -l_Lean_Syntax_mkAntiquotNode___closed__17 = _init_l_Lean_Syntax_mkAntiquotNode___closed__17(); -lean_mark_persistent(l_Lean_Syntax_mkAntiquotNode___closed__17); l_Lean_Syntax_antiquotKind_x3f___closed__1 = _init_l_Lean_Syntax_antiquotKind_x3f___closed__1(); lean_mark_persistent(l_Lean_Syntax_antiquotKind_x3f___closed__1); l_Lean_Syntax_antiquotScopeKind_x3f_match__1___rarg___closed__1 = _init_l_Lean_Syntax_antiquotScopeKind_x3f_match__1___rarg___closed__1(); lean_mark_persistent(l_Lean_Syntax_antiquotScopeKind_x3f_match__1___rarg___closed__1); +l_Lean_Syntax_antiquotSuffixSplice_x3f_match__1___rarg___closed__1 = _init_l_Lean_Syntax_antiquotSuffixSplice_x3f_match__1___rarg___closed__1(); +lean_mark_persistent(l_Lean_Syntax_antiquotSuffixSplice_x3f_match__1___rarg___closed__1); return lean_io_result_mk_ok(lean_box(0)); } #ifdef __cplusplus