diff --git a/stage0/src/Init/Data/Array/Basic.lean b/stage0/src/Init/Data/Array/Basic.lean index 7bfb6bc285..b861fee931 100644 --- a/stage0/src/Init/Data/Array/Basic.lean +++ b/stage0/src/Init/Data/Array/Basic.lean @@ -486,7 +486,7 @@ export Array (mkArray) syntax "#[" sepBy(term, ", ") "]" : term macro_rules - | `(#[ $elems* ]) => `(List.toArray [ $elems* ]) + | `(#[ $elems,* ]) => `(List.toArray [ $elems,* ]) namespace Array diff --git a/stage0/src/Init/Notation.lean b/stage0/src/Init/Notation.lean index 6d407d6497..c694d61633 100644 --- a/stage0/src/Init/Notation.lean +++ b/stage0/src/Init/Notation.lean @@ -121,16 +121,16 @@ syntax "%[" term,* "|" term "]" : term -- auxiliary notation for creating big li namespace Lean macro_rules - | `([ $elems* ]) => do + | `([ $elems,* ]) => do let rec expandListLit (i : Nat) (skip : Bool) (result : Syntax) : MacroM Syntax := do match i, skip with | 0, _ => pure result | i+1, true => expandListLit i false result - | i+1, false => expandListLit i true (← `(List.cons $(elems[i]) $result)) - if elems.size < 64 then - expandListLit elems.size false (← `(List.nil)) + | i+1, false => expandListLit i true (← `(List.cons $(elems.elemsAndSeps[i]) $result)) + if elems.elemsAndSeps.size < 64 then + expandListLit elems.elemsAndSeps.size false (← `(List.nil)) else - `(%[ $elems* | List.nil ]) + `(%[ $elems,* | List.nil ]) namespace Parser.Tactic diff --git a/stage0/src/Lean/Elab/App.lean b/stage0/src/Lean/Elab/App.lean index 3fa54a4fe5..364d21cc47 100644 --- a/stage0/src/Lean/Elab/App.lean +++ b/stage0/src/Lean/Elab/App.lean @@ -384,7 +384,8 @@ private def processExplictArg (k : M Expr) : M Expr := do match evalSyntaxConstant env opts tacticDecl with | Except.error err => throwError err | Except.ok tacticSyntax => - let tacticBlock ← `(by { $(tacticSyntax.getArgs)* }) + -- TODO(Leo): does this work correctly for tactic sequences? + let tacticBlock ← `(by $tacticSyntax) -- tacticBlock does not have any position information. -- So, we use the current ref let ref ← getRef @@ -800,12 +801,12 @@ private partial def elabAppFn (f : Syntax) (lvals : List LVal) (namedArgs : Arra throwError "unexpected occurrence of named pattern" | `($id:ident) => do elabAppFnId id [] lvals namedArgs args expectedType? explicit ellipsis overloaded acc - | `($id:ident.{$us*}) => do - let us ← elabExplicitUnivs us.getSepElems + | `($id:ident.{$us,*}) => do + let us ← elabExplicitUnivs us elabAppFnId id us lvals namedArgs args expectedType? explicit ellipsis overloaded acc | `(@$id:ident) => elabAppFn id lvals namedArgs args expectedType? (explicit := true) ellipsis overloaded acc - | `(@$id:ident.{$us*}) => + | `(@$id:ident.{$us,*}) => elabAppFn (f.getArg 1) lvals namedArgs args expectedType? (explicit := true) ellipsis overloaded acc | `(@$t) => throwUnsupportedSyntax -- invalid occurrence of `@` | `(_) => throwError "placeholders '_' cannot be used where a function is expected" @@ -916,11 +917,11 @@ private def elabAtom : TermElab := fun stx expectedType? => @[builtinTermElab explicit] def elabExplicit : TermElab := fun stx expectedType? => match stx with - | `(@$id:ident) => elabAtom stx expectedType? -- Recall that `elabApp` also has support for `@` - | `(@$id:ident.{$us*}) => elabAtom stx expectedType? - | `(@($t)) => elabTermWithoutImplicitLambdas t expectedType? -- `@` is being used just to disable implicit lambdas - | `(@$t) => elabTermWithoutImplicitLambdas t expectedType? -- `@` is being used just to disable implicit lambdas - | _ => throwUnsupportedSyntax + | `(@$id:ident) => elabAtom stx expectedType? -- Recall that `elabApp` also has support for `@` + | `(@$id:ident.{$us,*}) => elabAtom stx expectedType? + | `(@($t)) => elabTermWithoutImplicitLambdas t expectedType? -- `@` is being used just to disable implicit lambdas + | `(@$t) => elabTermWithoutImplicitLambdas t expectedType? -- `@` is being used just to disable implicit lambdas + | _ => throwUnsupportedSyntax @[builtinTermElab choice] def elabChoice : TermElab := elabAtom @[builtinTermElab proj] def elabProj : TermElab := elabAtom diff --git a/stage0/src/Lean/Elab/BuiltinNotation.lean b/stage0/src/Lean/Elab/BuiltinNotation.lean index 2576064bc7..cd20e4e40d 100644 --- a/stage0/src/Lean/Elab/BuiltinNotation.lean +++ b/stage0/src/Lean/Elab/BuiltinNotation.lean @@ -14,7 +14,7 @@ open Meta @[builtinTermElab anonymousCtor] def elabAnonymousCtor : TermElab := fun stx expectedType? => match stx with - | `(⟨$args*⟩) => do + | `(⟨$args,*⟩) => do tryPostponeIfNoneOrMVar expectedType? match expectedType? with | some expectedType => @@ -24,7 +24,7 @@ open Meta (fun ival us => do match ival.ctors with | [ctor] => - let newStx ← `($(mkCIdentFrom stx ctor) $(args.getSepElems)*) + let newStx ← `($(mkCIdentFrom stx ctor) $(args)*) withMacroExpansion stx newStx $ elabTerm newStx expectedType? | _ => throwError! "invalid constructor ⟨...⟩, expected type must be an inductive type with only one constructor {indentExpr expectedType}") | none => throwError "invalid constructor ⟨...⟩, expected type must be known" @@ -262,8 +262,8 @@ private def elabCDot (stx : Syntax) (expectedType? : Option Expr) : TermElabM Ex let e ← elabCDot e type ensureHasType type e | `(($e)) => elabCDot e expectedType? - | `(($e, $es*)) => do - let pairs ← liftMacroM $ mkPairs (#[e] ++ es.getEvenElems) + | `(($e, $es,*)) => do + let pairs ← liftMacroM $ mkPairs (#[e] ++ es) withMacroExpansion stx pairs (elabTerm pairs expectedType?) | _ => throwError "unexpected parentheses notation" diff --git a/stage0/src/Lean/Elab/Syntax.lean b/stage0/src/Lean/Elab/Syntax.lean index d23e9b9ac8..8231c81573 100644 --- a/stage0/src/Lean/Elab/Syntax.lean +++ b/stage0/src/Lean/Elab/Syntax.lean @@ -352,7 +352,7 @@ def elabMacroRulesAux (k : SyntaxNodeKind) (alts : Array Syntax) : CommandElabM else throwErrorAt! alt "invalid macro_rules alternative, unexpected syntax node kind '{k'}'" `(@[macro $(Lean.mkIdent k)] def myMacro : Macro := - fun | $alts:matchAlt* | _ => throw Lean.Macro.Exception.unsupportedSyntax) + fun | $(SepArray.mk alts):matchAlt|* | _ => throw Lean.Macro.Exception.unsupportedSyntax) def inferMacroRulesAltKind (alt : Syntax) : CommandElabM SyntaxNodeKind := do let lhs := alt[0] @@ -374,13 +374,13 @@ def elabNoKindMacroRulesAux (alts : Array Syntax) : CommandElabM Syntax := do if altsNotK.isEmpty then pure defCmd else - `($defCmd:command macro_rules $altsNotK:matchAlt*) + `($defCmd:command macro_rules $(SepArray.mk altsNotK):matchAlt|*) @[builtinCommandElab «macro_rules»] def elabMacroRules : CommandElab := adaptExpander fun stx => match stx with - | `(macro_rules $[|]? $alts:matchAlt*) => elabNoKindMacroRulesAux alts - | `(macro_rules [$kind] $[|]? $alts:matchAlt*) => do elabMacroRulesAux ((← getCurrNamespace) ++ kind.getId) alts - | _ => throwUnsupportedSyntax + | `(macro_rules $[|]? $alts:matchAlt|*) => elabNoKindMacroRulesAux alts.elemsAndSeps + | `(macro_rules [$kind] $[|]? $alts:matchAlt|*) => do elabMacroRulesAux ((← getCurrNamespace) ++ kind.getId) alts.elemsAndSeps + | _ => throwUnsupportedSyntax -- TODO: cleanup after we have support for optional syntax at `match_syntax` @[builtinMacro Lean.Parser.Command.mixfix] def expandMixfix : Macro := fun stx => @@ -478,9 +478,9 @@ private def expandNotationAux (ref : Syntax) let fullKind := currNamespace ++ kind let pat := Syntax.node fullKind patArgs let stxDecl ← match attrKind with - | AttributeKind.global => `(syntax $[: $prec?]? [$(mkIdentFrom ref kind):ident, $(quote prio):numLit] $syntaxParts* : $cat) - | AttributeKind.scoped => `(scoped syntax $[: $prec? ]? [$(mkIdentFrom ref kind):ident, $(quote prio):numLit] $syntaxParts* : $cat) - | AttributeKind.local => `(local syntax $[: $prec? ]? [$(mkIdentFrom ref kind):ident, $(quote prio):numLit] $syntaxParts* : $cat) + | AttributeKind.global => `(syntax $[: $prec?]? [$(mkIdentFrom ref kind):ident, $(quote prio):numLit] $[$syntaxParts]* : $cat) + | AttributeKind.scoped => `(scoped syntax $[: $prec? ]? [$(mkIdentFrom ref kind):ident, $(quote prio):numLit] $[$syntaxParts]* : $cat) + | AttributeKind.local => `(local syntax $[: $prec? ]? [$(mkIdentFrom ref kind):ident, $(quote prio):numLit] $[$syntaxParts]* : $cat) let macroDecl ← `(macro_rules | `($pat) => `($qrhs)) match (← mkSimpleDelab vars pat qrhs |>.run) with | some delabDecl => mkNullNode #[stxDecl, macroDecl, delabDecl] @@ -523,7 +523,7 @@ def expandOptPrio (stx : Syntax) : Nat := stx[1].isNatLit?.getD 0 def expandMacro (currNamespace : Name) (stx : Syntax) : CommandElabM Syntax := do - let prec := stx[1].getArgs + let prec := stx[1].getOptional? let prio := expandOptPrio stx[2] let head := stx[3] let args := stx[4].getArgs @@ -543,12 +543,13 @@ def expandMacro (currNamespace : Name) (stx : Syntax) : CommandElabM Syntax := d if stx.getArgs.size == 9 then -- `stx` is of the form `macro $head $args* : $cat => term` let rhs := stx[8] - `(syntax $prec* [$(mkIdentFrom stx kind):ident, $(quote prio):numLit] $stxParts* : $cat + -- NOTE: can't use `$stxParts*` here because it would interpret as a single antiquotation with the `stx` star postfix operator + `(syntax $(prec)? [$(mkIdentFrom stx kind):ident, $(quote prio):numLit] $[$stxParts]* : $cat macro_rules | `($pat) => $rhs) else -- `stx` is of the form `macro $head $args* : $cat => `( $body )` let rhsBody := stx[9] - `(syntax $prec* [$(mkIdentFrom stx kind):ident, $(quote prio):numLit] $stxParts* : $cat + `(syntax $(prec)? [$(mkIdentFrom stx kind):ident, $(quote prio):numLit] $[$stxParts]* : $cat macro_rules | `($pat) => `($rhsBody)) @[builtinCommandElab «macro»] def elabMacro : CommandElab := @@ -570,7 +571,7 @@ parser! "elab " >> optPrecedence >> optPrio >> elabHead >> many elabArg >> elabT -/ def expandElab (currNamespace : Name) (stx : Syntax) : CommandElabM Syntax := do let ref := stx - let prec := stx[1].getArgs + let prec := stx[1].getOptional? let prio := expandOptPrio stx[2] let head := stx[3] let args := stx[4].getArgs @@ -592,7 +593,7 @@ def expandElab (currNamespace : Name) (stx : Syntax) : CommandElabM Syntax := do if expectedTypeSpec.hasArgs then if catName == `term then let expId := expectedTypeSpec[1] - `(syntax $prec* [$kindId:ident, $(quote prio):numLit] $stxParts* : $cat + `(syntax $(prec)? [$kindId:ident, $(quote prio):numLit] $[$stxParts]* : $cat @[termElab $kindId:ident] def elabFn : Lean.Elab.Term.TermElab := fun stx expectedType? => match stx with | `($pat) => Lean.Elab.Command.withExpectedType expectedType? fun $expId => $rhs @@ -600,19 +601,19 @@ def expandElab (currNamespace : Name) (stx : Syntax) : CommandElabM Syntax := do else throwErrorAt! expectedTypeSpec "syntax category '{catName}' does not support expected type specification" else if catName == `term then - `(syntax $prec* [$kindId:ident, $(quote prio):numLit] $stxParts* : $cat + `(syntax $(prec)? [$kindId:ident, $(quote prio):numLit] $[$stxParts]* : $cat @[termElab $kindId:ident] def elabFn : Lean.Elab.Term.TermElab := fun stx _ => match stx with | `($pat) => $rhs | _ => throwUnsupportedSyntax) else if catName == `command then - `(syntax $prec* [$kindId:ident, $(quote prio):numLit] $stxParts* : $cat + `(syntax $(prec)? [$kindId:ident, $(quote prio):numLit] $[$stxParts]* : $cat @[commandElab $kindId:ident] def elabFn : Lean.Elab.Command.CommandElab := fun | `($pat) => $rhs | _ => throwUnsupportedSyntax) else if catName == `tactic then - `(syntax $prec* [$kindId:ident, $(quote prio):numLit] $stxParts* : $cat + `(syntax $(prec)? [$kindId:ident, $(quote prio):numLit] $[$stxParts]* : $cat @[tactic $kindId:ident] def elabFn : Lean.Elab.Tactic.Tactic := fun | `(tactic|$pat) => $rhs diff --git a/stage0/src/Lean/PrettyPrinter/Delaborator/Builtins.lean b/stage0/src/Lean/PrettyPrinter/Delaborator/Builtins.lean index c4f8839dc5..1e75bac785 100644 --- a/stage0/src/Lean/PrettyPrinter/Delaborator/Builtins.lean +++ b/stage0/src/Lean/PrettyPrinter/Delaborator/Builtins.lean @@ -459,8 +459,8 @@ def delabTuple : Delab := whenPPOption getPPNotation do let a ← withAppFn $ withAppArg delab let b ← withAppArg delab match b with - | `(($b, $bs*)) => `(($a, $b, $bs*)) - | _ => `(($a, $b)) + | `(($b, $bs,*)) => `(($a, $b, $bs,*)) + | _ => `(($a, $b)) -- abbrev coe {α : Sort u} {β : Sort v} (a : α) [CoeT α a β] : β @[builtinDelab app.coe] @@ -488,15 +488,15 @@ def delabConsList : Delab := whenPPOption getPPNotation do guard $ (← getExpr).getAppNumArgs == 3 let x ← withAppFn (withAppArg delab) match (← withAppArg delab) with - | `([]) => `([$x]) - | `([$xs*]) => `([$x, $xs*]) - | _ => failure + | `([]) => `([$x]) + | `([$xs,*]) => `([$x, $xs,*]) + | _ => failure @[builtinDelab app.List.toArray] def delabListToArray : Delab := whenPPOption getPPNotation do guard $ (← getExpr).getAppNumArgs == 2 match (← withAppArg delab) with - | `([$xs*]) => `(#[$xs*]) + | `([$xs,*]) => `(#[$xs,*]) | _ => failure @[builtinDelab app.namedPattern] diff --git a/stage0/stdlib/CMakeLists.txt b/stage0/stdlib/CMakeLists.txt index fde4a62baa..f7755c84da 100644 --- a/stage0/stdlib/CMakeLists.txt +++ b/stage0/stdlib/CMakeLists.txt @@ -1 +1 @@ -add_library (stage0 OBJECT ./Init.c ./Init/Classical.c ./Init/Coe.c ./Init/Control.c ./Init/Control/Basic.c ./Init/Control/EState.c ./Init/Control/Except.c ./Init/Control/Id.c ./Init/Control/Option.c ./Init/Control/Reader.c ./Init/Control/State.c ./Init/Control/StateRef.c ./Init/Core.c ./Init/Data.c ./Init/Data/Array.c ./Init/Data/Array/Basic.c ./Init/Data/Array/BinSearch.c ./Init/Data/Array/QSort.c ./Init/Data/Array/Subarray.c ./Init/Data/Basic.c ./Init/Data/ByteArray.c ./Init/Data/ByteArray/Basic.c ./Init/Data/Char.c ./Init/Data/Char/Basic.c ./Init/Data/Fin.c ./Init/Data/Fin/Basic.c ./Init/Data/Float.c ./Init/Data/FloatArray.c ./Init/Data/FloatArray/Basic.c ./Init/Data/Hashable.c ./Init/Data/Int.c ./Init/Data/Int/Basic.c ./Init/Data/List.c ./Init/Data/List/Basic.c ./Init/Data/List/BasicAux.c ./Init/Data/List/Control.c ./Init/Data/Nat.c ./Init/Data/Nat/Basic.c ./Init/Data/Nat/Bitwise.c ./Init/Data/Nat/Control.c ./Init/Data/Nat/Div.c ./Init/Data/OfScientific.c ./Init/Data/Option.c ./Init/Data/Option/Basic.c ./Init/Data/Option/BasicAux.c ./Init/Data/Option/Instances.c ./Init/Data/Random.c ./Init/Data/Range.c ./Init/Data/Repr.c ./Init/Data/String.c ./Init/Data/String/Basic.c ./Init/Data/String/Extra.c ./Init/Data/ToString.c ./Init/Data/ToString/Basic.c ./Init/Data/ToString/Macro.c ./Init/Data/UInt.c ./Init/Fix.c ./Init/Meta.c ./Init/Notation.c ./Init/NotationExtra.c ./Init/Prelude.c ./Init/SizeOf.c ./Init/System.c ./Init/System/FilePath.c ./Init/System/IO.c ./Init/System/IOError.c ./Init/System/Platform.c ./Init/System/ST.c ./Init/Util.c ./Init/WF.c ./Lean.c ./Lean/Attributes.c ./Lean/AuxRecursor.c ./Lean/Class.c ./Lean/Compiler.c ./Lean/Compiler/BorrowedAnnotation.c ./Lean/Compiler/ClosedTermCache.c ./Lean/Compiler/ConstFolding.c ./Lean/Compiler/ExportAttr.c ./Lean/Compiler/ExternAttr.c ./Lean/Compiler/IR.c ./Lean/Compiler/IR/Basic.c ./Lean/Compiler/IR/Borrow.c ./Lean/Compiler/IR/Boxing.c ./Lean/Compiler/IR/Checker.c ./Lean/Compiler/IR/CompilerM.c ./Lean/Compiler/IR/CtorLayout.c ./Lean/Compiler/IR/ElimDeadBranches.c ./Lean/Compiler/IR/ElimDeadVars.c ./Lean/Compiler/IR/EmitC.c ./Lean/Compiler/IR/EmitUtil.c ./Lean/Compiler/IR/ExpandResetReuse.c ./Lean/Compiler/IR/Format.c ./Lean/Compiler/IR/FreeVars.c ./Lean/Compiler/IR/LiveVars.c ./Lean/Compiler/IR/NormIds.c ./Lean/Compiler/IR/PushProj.c ./Lean/Compiler/IR/RC.c ./Lean/Compiler/IR/ResetReuse.c ./Lean/Compiler/IR/SimpCase.c ./Lean/Compiler/IR/UnboxResult.c ./Lean/Compiler/ImplementedByAttr.c ./Lean/Compiler/InitAttr.c ./Lean/Compiler/InlineAttrs.c ./Lean/Compiler/NameMangling.c ./Lean/Compiler/NeverExtractAttr.c ./Lean/Compiler/Specialize.c ./Lean/Compiler/Util.c ./Lean/CoreM.c ./Lean/Data.c ./Lean/Data/Format.c ./Lean/Data/Json.c ./Lean/Data/Json/Basic.c ./Lean/Data/Json/FromToJson.c ./Lean/Data/Json/Parser.c ./Lean/Data/Json/Printer.c ./Lean/Data/Json/Stream.c ./Lean/Data/JsonRpc.c ./Lean/Data/KVMap.c ./Lean/Data/LBool.c ./Lean/Data/LOption.c ./Lean/Data/Lsp.c ./Lean/Data/Lsp/Basic.c ./Lean/Data/Lsp/Capabilities.c ./Lean/Data/Lsp/Communication.c ./Lean/Data/Lsp/Diagnostics.c ./Lean/Data/Lsp/Hover.c ./Lean/Data/Lsp/InitShutdown.c ./Lean/Data/Lsp/TextSync.c ./Lean/Data/Lsp/Utf16.c ./Lean/Data/Lsp/Workspace.c ./Lean/Data/Name.c ./Lean/Data/NameTrie.c ./Lean/Data/Occurrences.c ./Lean/Data/OpenDecl.c ./Lean/Data/Options.c ./Lean/Data/Position.c ./Lean/Data/PrefixTree.c ./Lean/Data/SMap.c ./Lean/Data/Trie.c ./Lean/Declaration.c ./Lean/Elab.c ./Lean/Elab/App.c ./Lean/Elab/Attributes.c ./Lean/Elab/Binders.c ./Lean/Elab/BuiltinNotation.c ./Lean/Elab/CollectFVars.c ./Lean/Elab/Command.c ./Lean/Elab/DeclModifiers.c ./Lean/Elab/DeclUtil.c ./Lean/Elab/Declaration.c ./Lean/Elab/DefView.c ./Lean/Elab/Do.c ./Lean/Elab/Exception.c ./Lean/Elab/Frontend.c ./Lean/Elab/Import.c ./Lean/Elab/Inductive.c ./Lean/Elab/LetRec.c ./Lean/Elab/Level.c ./Lean/Elab/Log.c ./Lean/Elab/Match.c ./Lean/Elab/MutualDef.c ./Lean/Elab/PreDefinition.c ./Lean/Elab/PreDefinition/Basic.c ./Lean/Elab/PreDefinition/Main.c ./Lean/Elab/PreDefinition/MkInhabitant.c ./Lean/Elab/PreDefinition/Structural.c ./Lean/Elab/PreDefinition/WF.c ./Lean/Elab/Print.c ./Lean/Elab/Quotation.c ./Lean/Elab/Quotation/Util.c ./Lean/Elab/StructInst.c ./Lean/Elab/Structure.c ./Lean/Elab/Syntax.c ./Lean/Elab/SyntheticMVars.c ./Lean/Elab/Tactic.c ./Lean/Elab/Tactic/Basic.c ./Lean/Elab/Tactic/Binders.c ./Lean/Elab/Tactic/ElabTerm.c ./Lean/Elab/Tactic/Generalize.c ./Lean/Elab/Tactic/Induction.c ./Lean/Elab/Tactic/Injection.c ./Lean/Elab/Tactic/Location.c ./Lean/Elab/Tactic/Match.c ./Lean/Elab/Tactic/Rewrite.c ./Lean/Elab/Term.c ./Lean/Elab/Util.c ./Lean/Environment.c ./Lean/Eval.c ./Lean/Exception.c ./Lean/Expr.c ./Lean/HeadIndex.c ./Lean/Hygiene.c ./Lean/InternalExceptionId.c ./Lean/KeyedDeclsAttribute.c ./Lean/Level.c ./Lean/LocalContext.c ./Lean/Message.c ./Lean/Meta.c ./Lean/Meta/AbstractMVars.c ./Lean/Meta/AbstractNestedProofs.c ./Lean/Meta/AppBuilder.c ./Lean/Meta/Basic.c ./Lean/Meta/Check.c ./Lean/Meta/Closure.c ./Lean/Meta/CollectMVars.c ./Lean/Meta/DiscrTree.c ./Lean/Meta/DiscrTreeTypes.c ./Lean/Meta/ExprDefEq.c ./Lean/Meta/ForEachExpr.c ./Lean/Meta/FunInfo.c ./Lean/Meta/GeneralizeTelescope.c ./Lean/Meta/GetConst.c ./Lean/Meta/InferType.c ./Lean/Meta/Instances.c ./Lean/Meta/KAbstract.c ./Lean/Meta/LevelDefEq.c ./Lean/Meta/Match.c ./Lean/Meta/Match/Basic.c ./Lean/Meta/Match/CaseArraySizes.c ./Lean/Meta/Match/CaseValues.c ./Lean/Meta/Match/MVarRenaming.c ./Lean/Meta/Match/Match.c ./Lean/Meta/Match/MatchPatternAttr.c ./Lean/Meta/Match/MatcherInfo.c ./Lean/Meta/MatchUtil.c ./Lean/Meta/Offset.c ./Lean/Meta/PPGoal.c ./Lean/Meta/RecursorInfo.c ./Lean/Meta/Reduce.c ./Lean/Meta/ReduceEval.c ./Lean/Meta/SynthInstance.c ./Lean/Meta/Tactic.c ./Lean/Meta/Tactic/Apply.c ./Lean/Meta/Tactic/Assert.c ./Lean/Meta/Tactic/Assumption.c ./Lean/Meta/Tactic/Cases.c ./Lean/Meta/Tactic/Clear.c ./Lean/Meta/Tactic/Constructor.c ./Lean/Meta/Tactic/Delta.c ./Lean/Meta/Tactic/ElimInfo.c ./Lean/Meta/Tactic/FVarSubst.c ./Lean/Meta/Tactic/Generalize.c ./Lean/Meta/Tactic/Induction.c ./Lean/Meta/Tactic/Injection.c ./Lean/Meta/Tactic/Intro.c ./Lean/Meta/Tactic/Replace.c ./Lean/Meta/Tactic/Revert.c ./Lean/Meta/Tactic/Rewrite.c ./Lean/Meta/Tactic/Subst.c ./Lean/Meta/Tactic/Util.c ./Lean/Meta/Transform.c ./Lean/Meta/TransparencyMode.c ./Lean/Meta/UnificationHint.c ./Lean/Meta/WHNF.c ./Lean/MetavarContext.c ./Lean/Modifiers.c ./Lean/MonadEnv.c ./Lean/Parser.c ./Lean/Parser/Basic.c ./Lean/Parser/Command.c ./Lean/Parser/Do.c ./Lean/Parser/Extension.c ./Lean/Parser/Extra.c ./Lean/Parser/Level.c ./Lean/Parser/Module.c ./Lean/Parser/StrInterpolation.c ./Lean/Parser/Syntax.c ./Lean/Parser/Tactic.c ./Lean/Parser/Term.c ./Lean/ParserCompiler.c ./Lean/ParserCompiler/Attribute.c ./Lean/PrettyPrinter.c ./Lean/PrettyPrinter/Basic.c ./Lean/PrettyPrinter/Delaborator.c ./Lean/PrettyPrinter/Delaborator/Basic.c ./Lean/PrettyPrinter/Delaborator/Builtins.c ./Lean/PrettyPrinter/Formatter.c ./Lean/PrettyPrinter/Parenthesizer.c ./Lean/ProjFns.c ./Lean/ReducibilityAttrs.c ./Lean/ResolveName.c ./Lean/Runtime.c ./Lean/ScopedEnvExtension.c ./Lean/Server.c ./Lean/Server/Snapshots.c ./Lean/Structure.c ./Lean/Syntax.c ./Lean/ToExpr.c ./Lean/Util.c ./Lean/Util/CollectFVars.c ./Lean/Util/CollectLevelParams.c ./Lean/Util/CollectMVars.c ./Lean/Util/Constructions.c ./Lean/Util/FindExpr.c ./Lean/Util/FindMVar.c ./Lean/Util/FoldConsts.c ./Lean/Util/ForEachExpr.c ./Lean/Util/MonadCache.c ./Lean/Util/PPExt.c ./Lean/Util/Path.c ./Lean/Util/Profile.c ./Lean/Util/RecDepth.c ./Lean/Util/Recognizers.c ./Lean/Util/ReplaceExpr.c ./Lean/Util/ReplaceLevel.c ./Lean/Util/SCC.c ./Lean/Util/Sorry.c ./Lean/Util/Trace.c ./Std.c ./Std/Data.c ./Std/Data/AssocList.c ./Std/Data/BinomialHeap.c ./Std/Data/DList.c ./Std/Data/HashMap.c ./Std/Data/HashSet.c ./Std/Data/PersistentArray.c ./Std/Data/PersistentHashMap.c ./Std/Data/PersistentHashSet.c ./Std/Data/Queue.c ./Std/Data/RBMap.c ./Std/Data/RBTree.c ./Std/Data/Stack.c ./Std/ShareCommon.c ) +add_library (stage0 OBJECT ./Init.c ./Init/Classical.c ./Init/Coe.c ./Init/Control.c ./Init/Control/Basic.c ./Init/Control/EState.c ./Init/Control/Except.c ./Init/Control/Id.c ./Init/Control/Option.c ./Init/Control/Reader.c ./Init/Control/State.c ./Init/Control/StateRef.c ./Init/Core.c ./Init/Data.c ./Init/Data/Array.c ./Init/Data/Array/Basic.c ./Init/Data/Array/BinSearch.c ./Init/Data/Array/QSort.c ./Init/Data/Array/Subarray.c ./Init/Data/Basic.c ./Init/Data/ByteArray.c ./Init/Data/ByteArray/Basic.c ./Init/Data/Char.c ./Init/Data/Char/Basic.c ./Init/Data/Fin.c ./Init/Data/Fin/Basic.c ./Init/Data/Float.c ./Init/Data/FloatArray.c ./Init/Data/FloatArray/Basic.c ./Init/Data/Hashable.c ./Init/Data/Int.c ./Init/Data/Int/Basic.c ./Init/Data/List.c ./Init/Data/List/Basic.c ./Init/Data/List/BasicAux.c ./Init/Data/List/Control.c ./Init/Data/Nat.c ./Init/Data/Nat/Basic.c ./Init/Data/Nat/Bitwise.c ./Init/Data/Nat/Control.c ./Init/Data/Nat/Div.c ./Init/Data/OfScientific.c ./Init/Data/Option.c ./Init/Data/Option/Basic.c ./Init/Data/Option/BasicAux.c ./Init/Data/Option/Instances.c ./Init/Data/Random.c ./Init/Data/Range.c ./Init/Data/Repr.c ./Init/Data/String.c ./Init/Data/String/Basic.c ./Init/Data/String/Extra.c ./Init/Data/ToString.c ./Init/Data/ToString/Basic.c ./Init/Data/ToString/Macro.c ./Init/Data/UInt.c ./Init/Fix.c ./Init/Meta.c ./Init/Notation.c ./Init/NotationExtra.c ./Init/Prelude.c ./Init/SizeOf.c ./Init/System.c ./Init/System/FilePath.c ./Init/System/IO.c ./Init/System/IOError.c ./Init/System/Platform.c ./Init/System/ST.c ./Init/Util.c ./Init/WF.c ./Lean.c ./Lean/Attributes.c ./Lean/AuxRecursor.c ./Lean/Class.c ./Lean/Compiler.c ./Lean/Compiler/BorrowedAnnotation.c ./Lean/Compiler/ClosedTermCache.c ./Lean/Compiler/ConstFolding.c ./Lean/Compiler/ExportAttr.c ./Lean/Compiler/ExternAttr.c ./Lean/Compiler/IR.c ./Lean/Compiler/IR/Basic.c ./Lean/Compiler/IR/Borrow.c ./Lean/Compiler/IR/Boxing.c ./Lean/Compiler/IR/Checker.c ./Lean/Compiler/IR/CompilerM.c ./Lean/Compiler/IR/CtorLayout.c ./Lean/Compiler/IR/ElimDeadBranches.c ./Lean/Compiler/IR/ElimDeadVars.c ./Lean/Compiler/IR/EmitC.c ./Lean/Compiler/IR/EmitUtil.c ./Lean/Compiler/IR/ExpandResetReuse.c ./Lean/Compiler/IR/Format.c ./Lean/Compiler/IR/FreeVars.c ./Lean/Compiler/IR/LiveVars.c ./Lean/Compiler/IR/NormIds.c ./Lean/Compiler/IR/PushProj.c ./Lean/Compiler/IR/RC.c ./Lean/Compiler/IR/ResetReuse.c ./Lean/Compiler/IR/SimpCase.c ./Lean/Compiler/IR/UnboxResult.c ./Lean/Compiler/ImplementedByAttr.c ./Lean/Compiler/InitAttr.c ./Lean/Compiler/InlineAttrs.c ./Lean/Compiler/NameMangling.c ./Lean/Compiler/NeverExtractAttr.c ./Lean/Compiler/Specialize.c ./Lean/Compiler/Util.c ./Lean/CoreM.c ./Lean/Data.c ./Lean/Data/Format.c ./Lean/Data/Json.c ./Lean/Data/Json/Basic.c ./Lean/Data/Json/FromToJson.c ./Lean/Data/Json/Parser.c ./Lean/Data/Json/Printer.c ./Lean/Data/Json/Stream.c ./Lean/Data/JsonRpc.c ./Lean/Data/KVMap.c ./Lean/Data/LBool.c ./Lean/Data/LOption.c ./Lean/Data/Lsp.c ./Lean/Data/Lsp/Basic.c ./Lean/Data/Lsp/Capabilities.c ./Lean/Data/Lsp/Communication.c ./Lean/Data/Lsp/Diagnostics.c ./Lean/Data/Lsp/Hover.c ./Lean/Data/Lsp/InitShutdown.c ./Lean/Data/Lsp/TextSync.c ./Lean/Data/Lsp/Utf16.c ./Lean/Data/Lsp/Workspace.c ./Lean/Data/Name.c ./Lean/Data/NameTrie.c ./Lean/Data/Occurrences.c ./Lean/Data/OpenDecl.c ./Lean/Data/Options.c ./Lean/Data/Position.c ./Lean/Data/PrefixTree.c ./Lean/Data/SMap.c ./Lean/Data/Trie.c ./Lean/Declaration.c ./Lean/Elab.c ./Lean/Elab/App.c ./Lean/Elab/Attributes.c ./Lean/Elab/Binders.c ./Lean/Elab/BuiltinNotation.c ./Lean/Elab/CollectFVars.c ./Lean/Elab/Command.c ./Lean/Elab/DeclModifiers.c ./Lean/Elab/DeclUtil.c ./Lean/Elab/Declaration.c ./Lean/Elab/DefView.c ./Lean/Elab/Do.c ./Lean/Elab/Exception.c ./Lean/Elab/Frontend.c ./Lean/Elab/Import.c ./Lean/Elab/Inductive.c ./Lean/Elab/LetRec.c ./Lean/Elab/Level.c ./Lean/Elab/Log.c ./Lean/Elab/Match.c ./Lean/Elab/MutualDef.c ./Lean/Elab/PreDefinition.c ./Lean/Elab/PreDefinition/Basic.c ./Lean/Elab/PreDefinition/Main.c ./Lean/Elab/PreDefinition/MkInhabitant.c ./Lean/Elab/PreDefinition/Structural.c ./Lean/Elab/PreDefinition/WF.c ./Lean/Elab/Print.c ./Lean/Elab/Quotation.c ./Lean/Elab/Quotation/Util.c ./Lean/Elab/StructInst.c ./Lean/Elab/Structure.c ./Lean/Elab/Syntax.c ./Lean/Elab/SyntheticMVars.c ./Lean/Elab/Tactic.c ./Lean/Elab/Tactic/Basic.c ./Lean/Elab/Tactic/Binders.c ./Lean/Elab/Tactic/ElabTerm.c ./Lean/Elab/Tactic/Generalize.c ./Lean/Elab/Tactic/Induction.c ./Lean/Elab/Tactic/Injection.c ./Lean/Elab/Tactic/Location.c ./Lean/Elab/Tactic/Match.c ./Lean/Elab/Tactic/Rewrite.c ./Lean/Elab/Term.c ./Lean/Elab/Util.c ./Lean/Environment.c ./Lean/Eval.c ./Lean/Exception.c ./Lean/Expr.c ./Lean/HeadIndex.c ./Lean/Hygiene.c ./Lean/InternalExceptionId.c ./Lean/KeyedDeclsAttribute.c ./Lean/Level.c ./Lean/LocalContext.c ./Lean/Message.c ./Lean/Meta.c ./Lean/Meta/AbstractMVars.c ./Lean/Meta/AbstractNestedProofs.c ./Lean/Meta/AppBuilder.c ./Lean/Meta/Basic.c ./Lean/Meta/Check.c ./Lean/Meta/Closure.c ./Lean/Meta/CollectMVars.c ./Lean/Meta/DiscrTree.c ./Lean/Meta/DiscrTreeTypes.c ./Lean/Meta/ExprDefEq.c ./Lean/Meta/ForEachExpr.c ./Lean/Meta/FunInfo.c ./Lean/Meta/GeneralizeTelescope.c ./Lean/Meta/GetConst.c ./Lean/Meta/InferType.c ./Lean/Meta/Instances.c ./Lean/Meta/KAbstract.c ./Lean/Meta/LevelDefEq.c ./Lean/Meta/Match.c ./Lean/Meta/Match/Basic.c ./Lean/Meta/Match/CaseArraySizes.c ./Lean/Meta/Match/CaseValues.c ./Lean/Meta/Match/MVarRenaming.c ./Lean/Meta/Match/Match.c ./Lean/Meta/Match/MatchPatternAttr.c ./Lean/Meta/Match/MatcherInfo.c ./Lean/Meta/MatchUtil.c ./Lean/Meta/Offset.c ./Lean/Meta/PPGoal.c ./Lean/Meta/RecursorInfo.c ./Lean/Meta/Reduce.c ./Lean/Meta/ReduceEval.c ./Lean/Meta/SynthInstance.c ./Lean/Meta/Tactic.c ./Lean/Meta/Tactic/Apply.c ./Lean/Meta/Tactic/Assert.c ./Lean/Meta/Tactic/Assumption.c ./Lean/Meta/Tactic/Cases.c ./Lean/Meta/Tactic/Clear.c ./Lean/Meta/Tactic/Constructor.c ./Lean/Meta/Tactic/Delta.c ./Lean/Meta/Tactic/ElimInfo.c ./Lean/Meta/Tactic/FVarSubst.c ./Lean/Meta/Tactic/Generalize.c ./Lean/Meta/Tactic/Induction.c ./Lean/Meta/Tactic/Injection.c ./Lean/Meta/Tactic/Intro.c ./Lean/Meta/Tactic/Replace.c ./Lean/Meta/Tactic/Revert.c ./Lean/Meta/Tactic/Rewrite.c ./Lean/Meta/Tactic/Subst.c ./Lean/Meta/Tactic/Util.c ./Lean/Meta/Transform.c ./Lean/Meta/TransparencyMode.c ./Lean/Meta/UnificationHint.c ./Lean/Meta/WHNF.c ./Lean/MetavarContext.c ./Lean/Modifiers.c ./Lean/MonadEnv.c ./Lean/Parser.c ./Lean/Parser/Basic.c ./Lean/Parser/Command.c ./Lean/Parser/Do.c ./Lean/Parser/Extension.c ./Lean/Parser/Extra.c ./Lean/Parser/Level.c ./Lean/Parser/Module.c ./Lean/Parser/StrInterpolation.c ./Lean/Parser/Syntax.c ./Lean/Parser/Tactic.c ./Lean/Parser/Term.c ./Lean/Parser/Transform.c ./Lean/ParserCompiler.c ./Lean/ParserCompiler/Attribute.c ./Lean/PrettyPrinter.c ./Lean/PrettyPrinter/Basic.c ./Lean/PrettyPrinter/Delaborator.c ./Lean/PrettyPrinter/Delaborator/Basic.c ./Lean/PrettyPrinter/Delaborator/Builtins.c ./Lean/PrettyPrinter/Formatter.c ./Lean/PrettyPrinter/Parenthesizer.c ./Lean/ProjFns.c ./Lean/ReducibilityAttrs.c ./Lean/ResolveName.c ./Lean/Runtime.c ./Lean/ScopedEnvExtension.c ./Lean/Server.c ./Lean/Server/ServerBin.c ./Lean/Server/Snapshots.c ./Lean/Structure.c ./Lean/Syntax.c ./Lean/ToExpr.c ./Lean/Util.c ./Lean/Util/CollectFVars.c ./Lean/Util/CollectLevelParams.c ./Lean/Util/CollectMVars.c ./Lean/Util/Constructions.c ./Lean/Util/FindExpr.c ./Lean/Util/FindMVar.c ./Lean/Util/FoldConsts.c ./Lean/Util/ForEachExpr.c ./Lean/Util/MonadCache.c ./Lean/Util/PPExt.c ./Lean/Util/Path.c ./Lean/Util/Profile.c ./Lean/Util/RecDepth.c ./Lean/Util/Recognizers.c ./Lean/Util/ReplaceExpr.c ./Lean/Util/ReplaceLevel.c ./Lean/Util/SCC.c ./Lean/Util/Sorry.c ./Lean/Util/Trace.c ./Std.c ./Std/Data.c ./Std/Data/AssocList.c ./Std/Data/BinomialHeap.c ./Std/Data/DList.c ./Std/Data/HashMap.c ./Std/Data/HashSet.c ./Std/Data/PersistentArray.c ./Std/Data/PersistentHashMap.c ./Std/Data/PersistentHashSet.c ./Std/Data/Queue.c ./Std/Data/RBMap.c ./Std/Data/RBTree.c ./Std/Data/Stack.c ./Std/ShareCommon.c ) diff --git a/stage0/stdlib/Init/Notation.c b/stage0/stdlib/Init/Notation.c index e6aec9b97a..f2e86a1438 100644 --- a/stage0/stdlib/Init/Notation.c +++ b/stage0/stdlib/Init/Notation.c @@ -17,10 +17,10 @@ lean_object* l_term___u2228_____closed__4; lean_object* l_Lean_Parser_Tactic_orelse___closed__4; lean_object* l_stx___x3c_x7c_x3e_____closed__4; lean_object* l_Lean_Parser_Tactic_expandERwSeq(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14019____closed__10; lean_object* l_Lean_Parser_Tactic_rwRuleSeq___closed__1; lean_object* l_Lean_Parser_Tactic_let_x21___closed__4; lean_object* l_myMacro____x40_Init_Notation___hyg_10790____closed__11; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14154____closed__2; lean_object* l_term___x3c_x3d_____closed__6; lean_object* l_myMacro____x40_Init_Notation___hyg_4687____closed__1; lean_object* l_term_x25_x5b___x7c___x5d___closed__2; @@ -63,6 +63,7 @@ lean_object* l_term___x25_____closed__2; lean_object* l_myMacro____x40_Init_Notation___hyg_2392____closed__5; lean_object* l_termIf_____x3a__Then__Else_____closed__15; lean_object* l_Lean_Parser_Tactic_induction___closed__13; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14025____closed__10; lean_object* l_term_x2d_____closed__1; lean_object* l_term___x5c_x2f_____closed__3; lean_object* l_Lean_Parser_Tactic_rwRuleSeq___closed__6; @@ -120,6 +121,7 @@ lean_object* l_myMacro____x40_Init_Notation___hyg_3677____closed__9; lean_object* l_Lean_Parser_Tactic_have___closed__1; lean_object* l_myMacro____x40_Init_Notation___hyg_5449____closed__3; lean_object* l_myMacro____x40_Init_Notation___hyg_8215____closed__4; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15899____closed__3; lean_object* l_myMacro____x40_Init_Notation___hyg_7479____closed__5; lean_object* l___private_Init_Notation_0__Lean_Parser_Tactic_withCheapRefl___closed__41; lean_object* l_term___x7e_x3d_____closed__2; @@ -185,7 +187,6 @@ lean_object* l_Lean_Parser_Tactic_injection___closed__2; lean_object* l_term___x7c_x7c_____closed__3; lean_object* l_term___x2d_____closed__2; lean_object* l_term___x26_x26_____closed__5; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13707____closed__5; lean_object* l_Lean_Parser_Tactic_rwRule___closed__4; lean_object* l_Lean_Parser_Tactic_rwSeq___closed__4; lean_object* l_Lean_Parser_Tactic_locationWildcard___closed__1; @@ -203,10 +204,7 @@ lean_object* l_term___x7e_x3d_____closed__1; lean_object* l_term___u2245_____closed__1; lean_object* l_myMacro____x40_Init_Notation___hyg_698____closed__2; lean_object* l_term___x3e_x3e_x3d_____closed__7; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13887____closed__2; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15893____closed__3; lean_object* l_Lean_Parser_Tactic_skip___closed__3; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13887____closed__1; lean_object* l_Lean_Parser_Tactic_matchAlts___closed__5; lean_object* l_Lean_Parser_Tactic_induction___closed__2; lean_object* l_myMacro____x40_Init_Notation___hyg_875____closed__3; @@ -273,6 +271,7 @@ lean_object* l_Lean_Parser_Tactic_let___closed__2; lean_object* l_unexpand____x40_Init_Notation___hyg_9455____closed__1; lean_object* l_term___u2264_____closed__4; lean_object* l_myMacro____x40_Init_Notation___hyg_2135____closed__7; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14025____closed__6; lean_object* l_rawNatLit; lean_object* l_Lean_Parser_Tactic_change___closed__4; lean_object* l_Lean_Parser_Tactic_failIfSuccess___closed__2; @@ -298,7 +297,6 @@ lean_object* l_myMacro____x40_Init_Notation___hyg_8215____closed__2; lean_object* l_myMacro____x40_Init_Notation___hyg_10790____closed__6; lean_object* l_Lean_Parser_Tactic_change___closed__1; lean_object* l_Lean_Parser_Tactic_intro___closed__13; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14019____closed__6; lean_object* l_unexpand____x40_Init_Notation___hyg_9969____closed__1; lean_object* l_term___x2d_____closed__4; lean_object* l_term___x3c_x2a_____closed__1; @@ -315,14 +313,12 @@ lean_object* l_Lean_Parser_Tactic_case___closed__11; lean_object* l___private_Init_Notation_0__Lean_Parser_Tactic_withCheapRefl___closed__23; lean_object* l_Lean_Parser_Tactic_have___closed__2; lean_object* l_myMacro____x40_Init_Notation___hyg_11154____closed__6; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13887____closed__4; lean_object* l_Lean_Parser_Tactic_rwRule___closed__8; lean_object* l_rawNatLit___closed__8; lean_object* l_myMacro____x40_Init_Notation___hyg_5703____closed__6; lean_object* l_myMacro____x40_Init_Notation___hyg_9988____closed__3; lean_object* l_myMacro____x40_Init_Notation___hyg_10502____closed__6; lean_object* l_term_x7b_____x3a___x2f_x2f___x7d___closed__16; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14148____closed__11; lean_object* l_Lean_Parser_Tactic_tacticRepeat__; lean_object* l_Lean_Parser_Tactic_injection___closed__4; lean_object* l_myMacro____x40_Init_Notation___hyg_8446____closed__7; @@ -364,6 +360,7 @@ lean_object* l_Lean_Parser_Tactic_subst___closed__4; lean_object* l_myMacro____x40_Init_Notation___hyg_10790____closed__13; lean_object* l_myMacro____x40_Init_Notation___hyg_1261____closed__12; lean_object* l_term___x5e_____closed__3; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14154____boxed(lean_object*, lean_object*, lean_object*); lean_object* l___private_Init_Notation_0__Lean_Parser_Tactic_withCheapRefl___closed__8; lean_object* l_termWithoutExpectedType_x21_____closed__4; lean_object* l_term___x3c__; @@ -378,6 +375,7 @@ lean_object* l_term___x2b_x2b__; lean_object* l_Lean_Parser_Tactic_have___closed__6; lean_object* l_myMacro____x40_Init_Notation___hyg_1481____closed__1; lean_object* l_Lean_Parser_Tactic_cases___closed__3; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13713____boxed(lean_object*, lean_object*, lean_object*); lean_object* l___private_Init_Notation_0__Lean_Parser_Tactic_withCheapRefl___closed__36; lean_object* l_Lean_Parser_Tactic_suffices___closed__6; lean_object* l_term___u2218_____closed__1; @@ -401,23 +399,28 @@ lean_object* lean_string_utf8_byte_size(lean_object*); lean_object* l_Lean_Parser_Tactic_have; lean_object* l_term___u2218_____closed__9; lean_object* l_term___x3c_x3d_____closed__4; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14154____closed__9; lean_object* l_Lean_myMacro____x40_Init_Notation___hyg_12778__expandListLit(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_generalize___closed__3; lean_object* l_myMacro____x40_Init_Notation___hyg_10245____closed__6; lean_object* l_Lean_Parser_Tactic_orelse___closed__5; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13713____closed__1; lean_object* l_Lean_Parser_Tactic_suffices___closed__4; lean_object* l_myMacro____x40_Init_Notation___hyg_6974____closed__4; lean_object* l_Lean_Parser_Tactic_revert___closed__4; lean_object* l_myMacro____x40_Init_Notation___hyg_8215____closed__1; lean_object* l_myMacro____x40_Init_Notation___hyg_9988____closed__6; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14154____closed__8; lean_object* l_Lean_Parser_Tactic_rwRule___closed__6; lean_object* l_myMacro____x40_Init_Notation___hyg_10502____closed__3; lean_object* l_term_x2d_____closed__2; lean_object* l_myMacro____x40_Init_Notation___hyg_8446____closed__1; lean_object* l_term_x21_____closed__3; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13893____closed__3; lean_object* l_Lean_Parser_Tactic_location___closed__5; lean_object* l_term___x26_x26__; lean_object* l_Lean_Parser_Tactic_suffices___closed__8; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14154____closed__4; lean_object* l_term___x24_______closed__5; lean_object* l_Lean_Parser_Tactic_injection___closed__1; lean_object* l_Lean_Parser_Tactic_case___closed__10; @@ -425,7 +428,6 @@ lean_object* l___private_Init_Notation_0__Lean_Parser_Tactic_withCheapRefl___clo lean_object* l_Lean_Parser_Tactic_done___closed__3; lean_object* l_Lean_Parser_Tactic_suffices___closed__9; lean_object* l_Lean_Parser_Tactic_cases___closed__1; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13707____closed__7; lean_object* l_stx___x3c_x7c_x3e_____closed__8; lean_object* l_myMacro____x40_Init_Notation___hyg_2392____closed__3; lean_object* l_stx_x21_____closed__2; @@ -456,6 +458,7 @@ lean_object* l_term___x2f_____closed__1; lean_object* l_stx___x2c_x2a___closed__1; lean_object* l_term___x24_______closed__2; lean_object* l_term___x2f_x5c_____closed__5; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13713____closed__5; lean_object* l_myMacro____x40_Init_Notation___hyg_49____closed__5; lean_object* l_Lean_Parser_Tactic_subst___closed__1; lean_object* l_term___x7c_x7c_____closed__2; @@ -474,6 +477,7 @@ lean_object* l_myMacro____x40_Init_Notation___hyg_49____closed__14; lean_object* l_term___x3c_x7c_____closed__3; lean_object* l_myMacro____x40_Init_Notation___hyg_5961____closed__5; lean_object* l_Lean_Parser_Tactic_match___closed__12; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13713____closed__3; lean_object* l_termIf_____x3a__Then__Else_____closed__2; lean_object* l_term_x21_____closed__5; lean_object* l_Lean_Parser_Tactic_withReducible___closed__4; @@ -492,13 +496,12 @@ lean_object* l_myMacro____x40_Init_Notation___hyg_1261____closed__2; lean_object* l_Lean_Parser_Tactic_subst___closed__2; lean_object* l_Lean_Parser_Tactic_inductionAlts___closed__7; lean_object* l_Lean_Parser_Tactic_rewrite; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15698____closed__2; lean_object* l_Lean_Parser_Tactic_focus___closed__4; lean_object* l_term___x7c_x7c_____closed__1; lean_object* l_Lean_Parser_Tactic_erwSeq___closed__4; lean_object* l_myMacro____x40_Init_Notation___hyg_11918____closed__20; lean_object* l_Lean_Parser_Tactic_change___closed__2; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13887____closed__5; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13893____closed__7; lean_object* l___private_Init_Notation_0__Lean_Parser_Tactic_withCheapRefl___closed__16; lean_object* l_myMacro____x40_Init_Notation___hyg_8703____closed__7; lean_object* l_term___u2218_____closed__8; @@ -539,7 +542,6 @@ lean_object* l_term_x5b___x5d___closed__10; lean_object* l_Lean_Parser_Tactic_traceState___closed__1; lean_object* l_unexpand____x40_Init_Notation___hyg_6449____closed__1; lean_object* l_term___x3c_x2a_____closed__3; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14148____closed__7; lean_object* l_term___x3e_x3d_____closed__5; lean_object* l_Lean_Parser_Tactic_generalize___closed__9; lean_object* l_Lean_Parser_Tactic_location___closed__2; @@ -558,6 +560,7 @@ lean_object* l_myMacro____x40_Init_Notation___hyg_10790____closed__15; lean_object* l_Lean_Parser_Tactic_withReducibleAndInstances___closed__2; lean_object* l_Lean_Parser_Tactic_cases; lean_object* l_term_x7b_____x3a___x2f_x2f___x7d___closed__9; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14154____closed__3; lean_object* l_term___x3c_x7c_x3e_____closed__4; lean_object* l_myMacro____x40_Init_Notation___hyg_10790____closed__3; lean_object* l_term_x21_____closed__1; @@ -573,6 +576,7 @@ lean_object* l_term___x3c_x2a__; lean_object* l_myMacro____x40_Init_Notation___hyg_10790____closed__10; lean_object* l_term_xac_____closed__7; lean_object* l_Lean_Parser_Tactic_assumption___closed__1; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14154____closed__5; lean_object* l_Lean_Parser_Tactic_letrec___closed__13; lean_object* l_stx___x2a___closed__2; lean_object* l_Lean_Parser_Tactic_generalize___closed__12; @@ -669,11 +673,13 @@ lean_object* l_myMacro____x40_Init_Notation___hyg_12545____closed__8; lean_object* l_myMacro____x40_Init_Notation___hyg_7963____closed__4; lean_object* l_Lean_Parser_Tactic_matchAlt___closed__1; lean_object* l_myMacro____x40_Init_Notation___hyg_5703____closed__2; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14154____closed__6; lean_object* l_Lean_Parser_Tactic_focus___closed__6; lean_object* l_myMacro____x40_Init_Notation___hyg_12545____closed__17; lean_object* l_Lean_Parser_Tactic_changeWith___closed__1; lean_object* l_unexpand____x40_Init_Notation___hyg_2116____closed__1; lean_object* l_term___u2264__; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13713____closed__7; lean_object* lean_array_get(lean_object*, lean_object*, lean_object*); lean_object* l_termIf_____x3a__Then__Else_____closed__4; lean_object* l_Lean_Parser_Tactic_rewrite___closed__4; @@ -741,12 +747,12 @@ lean_object* l_term_x7b_____x3a___x2f_x2f___x7d___closed__3; lean_object* l_term___x7c_x7c_____closed__4; lean_object* l_myMacro____x40_Init_Notation___hyg_9474____closed__2; lean_object* l_myMacro____x40_Init_Notation___hyg_521____closed__16; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13887____closed__6; lean_object* l_myMacro____x40_Init_Notation___hyg_5703____closed__4; lean_object* l_Lean_Parser_Tactic_revert___closed__6; lean_object* l_termIf__Then__Else_____closed__1; lean_object* l_term___x2a_____closed__5; lean_object* l_myMacro____x40_Init_Notation___hyg_11918____closed__7; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15704____closed__3; lean_object* l_Lean_Parser_Tactic_generalize___closed__11; lean_object* l_Lean_Parser_Tactic_let___closed__7; lean_object* l_term___u2227_____closed__6; @@ -765,13 +771,11 @@ lean_object* l_term___x3c_x7c_x3e_____closed__3; lean_object* l_myMacro____x40_Init_Notation___hyg_7710____closed__1; lean_object* l_Lean_Parser_Tactic_changeWith___closed__4; lean_object* l_myMacro____x40_Init_Notation___hyg_11918____closed__5; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14148____closed__10; lean_object* l_myMacro____x40_Init_Notation___hyg_9988____closed__8; lean_object* l_Lean_Parser_Tactic_letrec___closed__1; lean_object* l_Lean_Parser_Tactic_suffices___closed__7; lean_object* l_term_x7b_____x3a___x2f_x2f___x7d___closed__14; lean_object* l_term___x24_______closed__13; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15893____closed__1; lean_object* l___private_Init_Notation_0__Lean_Parser_Tactic_withCheapRefl___closed__34; lean_object* l_myMacro____x40_Init_Notation___hyg_4429____closed__8; lean_object* l_term_x7b_____x3a___x2f_x2f___x7d___closed__5; @@ -793,6 +797,7 @@ lean_object* l_term___x3c_x2a_x3e__; lean_object* l_myMacro____x40_Init_Notation___hyg_6468____closed__3; lean_object* l_myMacro____x40_Init_Notation___hyg_12545____closed__4; lean_object* l_term___x2d_____closed__3; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15899____closed__2; lean_object* l_term___x7e_x3d__; lean_object* l_myMacro____x40_Init_Notation___hyg_11918____closed__15; lean_object* l_term___x3c_x24_x3e_____closed__4; @@ -801,7 +806,6 @@ lean_object* l_Lean_Parser_Tactic_erewrite; lean_object* l_Lean_Parser_Tactic_withReducibleAndInstances___closed__3; lean_object* l_term___u2227__; lean_object* l_stx___x3f___closed__4; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15893____boxed(lean_object*, lean_object*, lean_object*); lean_object* l_myMacro____x40_Init_Notation___hyg_11918____closed__14; lean_object* l_myMacro____x40_Init_Notation___hyg_11918____closed__18; lean_object* l_term___x2b__; @@ -827,14 +831,14 @@ lean_object* l_term___x5c_x2f_____closed__6; lean_object* l_term___x3c_x2a_____closed__6; lean_object* l_term___x2b_x2b_____closed__6; lean_object* l_myMacro____x40_Init_Notation___hyg_1625____closed__12; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15899____closed__1; lean_object* l_term_x25_x5b___x7c___x5d___closed__3; lean_object* l_term___x24____; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15698____closed__3; lean_object* l_term___x3a_x3a_____closed__2; lean_object* l_Lean_Parser_Tactic_exact___closed__5; lean_object* l_Lean_Parser_Tactic_rwRuleSeq___closed__4; lean_object* l_termIf__Then__Else_____closed__4; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14019____closed__11; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15899____boxed(lean_object*, lean_object*, lean_object*); lean_object* l_myMacro____x40_Init_Notation___hyg_10790____closed__14; lean_object* l_Lean_Parser_Tactic_match___closed__8; lean_object* l_myMacro____x40_Init_Notation___hyg_1625____closed__5; @@ -853,7 +857,6 @@ lean_object* l_unexpand____x40_Init_Notation___hyg_4922____closed__1; lean_object* l_unexpand____x40_Init_Notation___hyg_4152____closed__1; lean_object* l_myMacro____x40_Init_Notation___hyg_10790____closed__5; lean_object* l_Lean_Parser_Tactic_suffices___closed__1; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14019____closed__2; lean_object* l_myMacro____x40_Init_Notation___hyg_9731____closed__4; lean_object* l_myMacro____x40_Init_Notation___hyg_9988____closed__4; lean_object* l_term___x3a_x3a_____closed__6; @@ -879,8 +882,10 @@ lean_object* l_myMacro____x40_Init_Notation___hyg_6468____closed__4; lean_object* l_myMacro____x40_Init_Notation___hyg_9988____closed__9; lean_object* l_myMacro____x40_Init_Notation___hyg_10502____closed__1; lean_object* l_myMacro____x40_Init_Notation___hyg_4429____closed__6; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14154____closed__10; lean_object* l_termIf__Then__Else_____closed__7; lean_object* l_stx___x2a___closed__4; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14025____closed__2; lean_object* l_myMacro____x40_Init_Notation___hyg_8960____closed__4; lean_object* l_myMacro____x40_Init_Notation___hyg_7710____closed__4; extern lean_object* l_Lean_instInhabitedSyntax; @@ -897,7 +902,6 @@ lean_object* l_term___x25_____closed__3; lean_object* l_myMacro____x40_Init_Notation___hyg_1625____closed__13; lean_object* l_myMacro____x40_Init_Notation___hyg_521____closed__5; lean_object* l_myMacro____x40_Init_Notation___hyg_1625____closed__2; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15698____closed__5; lean_object* l_Lean_Parser_Tactic_introMatch___closed__4; lean_object* l_myMacro____x40_Init_Notation___hyg_521____closed__14; lean_object* l_myMacro____x40_Init_Notation___hyg_8960____closed__8; @@ -911,8 +915,10 @@ lean_object* l_myMacro____x40_Init_Notation___hyg_9474____closed__1; lean_object* l_myMacro____x40_Init_Notation___hyg_8960____closed__9; lean_object* l_Lean_Parser_Tactic_withReducibleAndInstances___closed__4; lean_object* l___private_Init_Notation_0__Lean_Parser_Tactic_withCheapRefl___closed__12; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14025____boxed(lean_object*, lean_object*, lean_object*); lean_object* l_termIf_____x3a__Then__Else_____closed__11; lean_object* l_Lean_Parser_Tactic_erewrite___closed__4; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13893____closed__6; lean_object* l_term___u2245__; lean_object* l_myMacro____x40_Init_Notation___hyg_7710____closed__2; lean_object* l_term___x3c_____closed__4; @@ -934,9 +940,7 @@ lean_object* l_myMacro____x40_Init_Notation___hyg_1261____closed__3; lean_object* l_myMacro____x40_Init_Notation___hyg_9731____closed__9; lean_object* l_Lean_myMacro____x40_Init_Notation___hyg_12778____closed__5; lean_object* l_Lean_Parser_Tactic_have___closed__3; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14019____boxed(lean_object*, lean_object*, lean_object*); lean_object* l_myMacro____x40_Init_Notation___hyg_3163____closed__2; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15893____closed__2; lean_object* l_myMacro____x40_Init_Notation___hyg_8703____closed__6; lean_object* l_term___x2a__; lean_object* l_Lean_Parser_Tactic_letrec___closed__6; @@ -974,13 +978,11 @@ lean_object* l_unexpand____x40_Init_Notation___hyg_7460____closed__1; lean_object* l_myMacro____x40_Init_Notation___hyg_8703____closed__9; lean_object* l_Lean_Parser_Tactic_erw___closed__4; lean_object* l_Lean_Parser_Tactic_erewriteSeq___closed__4; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14019____closed__1; lean_object* l_Lean_Parser_Tactic_location___closed__11; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14019____closed__8; lean_object* l_Lean_Parser_Tactic_inductionAlts___closed__6; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14025____closed__1; lean_object* l_Lean_addMacroScope(lean_object*, lean_object*, lean_object*); lean_object* l_unexpand____x40_Init_Notation___hyg_3401____closed__1; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14148____closed__6; lean_object* l_Lean_Parser_Tactic_case___closed__5; lean_object* l_Lean_Parser_Tactic_let___closed__3; lean_object* l_unexpand____x40_Init_Notation___hyg_9969_(lean_object*, lean_object*); @@ -1039,6 +1041,7 @@ lean_object* l___private_Init_Notation_0__Lean_Parser_Tactic_withCheapRefl___clo lean_object* l_myMacro____x40_Init_Notation___hyg_2906____closed__5; extern lean_object* l_Lean_nullKind___closed__2; lean_object* l_term___x5c_x2f_____closed__1; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14025____closed__4; lean_object* l_Lean_Parser_Tactic_suffices___closed__5; lean_object* l_term_x25_x5b___x7c___x5d___closed__9; lean_object* l_Lean_Parser_Tactic_tacticRfl___closed__1; @@ -1053,15 +1056,16 @@ lean_object* l_Lean_Parser_Tactic_change___closed__6; lean_object* l_Lean_Parser_Tactic_refine_x21; lean_object* l_stx___x3f___closed__5; lean_object* l_termIf_____x3a__Then__Else_____closed__19; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14019____closed__9; lean_object* l_Lean_Parser_Tactic_casesTarget___closed__3; lean_object* l_Lean_myMacro____x40_Init_Notation___hyg_12778____closed__3; lean_object* l_Lean_Parser_Tactic_intro___closed__16; lean_object* l_myMacro____x40_Init_Notation___hyg_6974____closed__3; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14025____closed__8; lean_object* l_Lean_mkAtomFrom(lean_object*, lean_object*); lean_object* l_term___x5e_____closed__4; lean_object* l_Lean_Parser_Tactic_match___closed__4; lean_object* l_myMacro____x40_Init_Notation___hyg_11303____boxed(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14025____closed__9; lean_object* l_myMacro____x40_Init_Notation___hyg_2392____closed__8; lean_object* l_term___x3e_x3e_x3d_____closed__4; lean_object* l_stx___x2a___closed__5; @@ -1076,13 +1080,12 @@ lean_object* l_myMacro____x40_Init_Notation___hyg_1882____closed__2; lean_object* l_term_x2d_____closed__3; lean_object* l_myMacro____x40_Init_Notation___hyg_3677____closed__4; lean_object* l_Lean_Parser_Tactic_existsIntro___closed__6; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14019____closed__4; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13887_(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15893_(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13707_(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15698_(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14148_(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14019_(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13893_(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15899_(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13713_(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15704_(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14154_(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14025_(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_myMacro____x40_Init_Notation___hyg_12778__expandListLit_match__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_myMacro____x40_Init_Notation___hyg_2649____closed__8; lean_object* l_term___u2227_____closed__2; @@ -1096,6 +1099,7 @@ lean_object* l_term___u2228_____closed__3; lean_object* l_term___x5e_____closed__2; lean_object* l_myMacro____x40_Init_Notation___hyg_1882____closed__5; lean_object* l_myMacro____x40_Init_Notation___hyg_11918____closed__3; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13713____closed__6; lean_object* l_term_xac_____closed__4; lean_object* l_myMacro____x40_Init_Notation___hyg_6468____closed__5; lean_object* l_term___x2b_____closed__3; @@ -1121,11 +1125,11 @@ lean_object* l_myMacro____x40_Init_Notation___hyg_1625____closed__6; lean_object* l_myMacro____x40_Init_Notation___hyg_10790____closed__12; lean_object* l_myMacro____x40_Init_Notation___hyg_3677____closed__8; lean_object* l_Lean_Parser_Tactic_refine___closed__2; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14154____closed__7; lean_object* l_myMacro____x40_Init_Notation___hyg_2649____closed__4; lean_object* l_Lean_Parser_Tactic_show___closed__3; lean_object* l_term_x7b_____x3a___x2f_x2f___x7d___closed__1; lean_object* l_Lean_Parser_Tactic_case___closed__3; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14148____closed__3; lean_object* l_myMacro____x40_Init_Notation___hyg_2135____closed__9; lean_object* l_stx___x2c_x2b___closed__2; lean_object* l_Lean_Parser_Tactic_suffices___closed__3; @@ -1155,7 +1159,6 @@ lean_object* l_myMacro____x40_Init_Notation___hyg_8703____closed__2; lean_object* l_Lean_Parser_Tactic_letrec___closed__2; lean_object* l_Lean_Parser_Tactic_tacticHave_____x3a_x3d__; lean_object* l_stx___x7c_x2b___closed__4; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14148____closed__5; lean_object* l_stx___x3c_x7c_x3e_____closed__5; lean_object* l_term___x2b_____closed__6; lean_object* l_Lean_Parser_Tactic_tacticRepeat_____closed__2; @@ -1179,13 +1182,13 @@ lean_object* l_Lean_Syntax_getArgs(lean_object*); lean_object* l_term___x2f_____closed__2; lean_object* l_Lean_Parser_Tactic_inductionAlts___closed__13; lean_object* l___private_Init_Notation_0__Lean_Parser_Tactic_withCheapRefl___closed__37; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13887____closed__7; lean_object* l_Lean_Parser_Tactic_revert___closed__7; lean_object* l_Lean_Parser_Tactic_tacticDecide_x21___closed__4; lean_object* l_myMacro____x40_Init_Notation___hyg_376____closed__8; lean_object* l_myMacro____x40_Init_Notation___hyg_11918____closed__6; lean_object* l_Lean_Parser_Tactic_allGoals___closed__5; lean_object* l_Lean_Parser_Tactic_induction___closed__15; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13893____closed__5; lean_object* l_myMacro____x40_Init_Notation___hyg_7963____closed__3; lean_object* l_myMacro____x40_Init_Notation___hyg_3913____closed__6; lean_object* l_term___x24_______closed__12; @@ -1216,7 +1219,6 @@ lean_object* l_myMacro____x40_Init_Notation___hyg_8446____closed__2; lean_object* l_myMacro____x40_Init_Notation___hyg_10245____closed__8; lean_object* l_Lean_Parser_Tactic_induction___closed__3; lean_object* l_term___x3c_x3d_____closed__3; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13707____closed__4; lean_object* l_Array_appendCore___rarg(lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_case___closed__9; lean_object* l_Lean_Parser_Tactic_tacticTry_____closed__6; @@ -1229,6 +1231,7 @@ lean_object* l_Lean_Parser_Tactic_tacticRfl___closed__2; lean_object* l_myMacro____x40_Init_Notation___hyg_4429____closed__9; lean_object* l_Lean_Parser_Tactic_refine_x21___closed__2; lean_object* l_myMacro____x40_Init_Notation___hyg_1261____closed__6; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15704____closed__5; lean_object* l_Lean_Parser_Tactic_letrec; lean_object* l_myMacro____x40_Init_Notation___hyg_49____closed__4; lean_object* l_myMacro____x40_Init_Notation___hyg_3913____closed__5; @@ -1261,6 +1264,7 @@ lean_object* l_stx___x2b___closed__1; lean_object* l_Lean_Parser_Tactic_locationTarget___closed__5; lean_object* l_Lean_Parser_Tactic_induction___closed__18; lean_object* l_myMacro____x40_Init_Notation___hyg_1625____closed__4; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13713____closed__2; lean_object* l_Lean_Parser_Tactic_letrec___closed__8; lean_object* l_term___x3c_x24_x3e__; lean_object* l_Lean_Parser_Tactic_rwRule___closed__10; @@ -1280,12 +1284,14 @@ lean_object* l_myMacro____x40_Init_Notation___hyg_376____closed__3; lean_object* l_unexpand____x40_Init_Notation___hyg_6702____closed__1; lean_object* l___private_Init_Notation_0__Lean_Parser_Tactic_withCheapRefl___closed__40; lean_object* l_term___x3c_x3d_____closed__7; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14025____closed__11; lean_object* l_myMacro____x40_Init_Notation___hyg_10245____closed__4; lean_object* l_Lean_Parser_Tactic_tacticHave_____x3a_x3d_____closed__2; lean_object* l_Lean_Parser_Tactic_intro___closed__6; lean_object* l_stx___x2c_x2b; lean_object* l_myMacro____x40_Init_Notation___hyg_10790____closed__2; lean_object* l_myMacro____x40_Init_Notation___hyg_1882____closed__4; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14154____closed__11; lean_object* l_term___x3a_x3a_____closed__7; lean_object* l_term___x3d_x3d_____closed__3; lean_object* l_myMacro____x40_Init_Notation___hyg_9474____closed__8; @@ -1294,7 +1300,6 @@ lean_object* l_Lean_Parser_Tactic_show___closed__4; lean_object* l_Lean_Parser_Tactic_cases___closed__7; lean_object* l_Lean_Parser_Tactic_tacticTry_____closed__2; lean_object* l_Lean_Parser_Tactic_rewriteSeq___closed__5; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13887____closed__3; lean_object* l_term___x2a_x3e_____closed__4; lean_object* l_Lean_Parser_Tactic_done; lean_object* l_term_x5b___x5d___closed__4; @@ -1305,7 +1310,6 @@ lean_object* l_myMacro____x40_Init_Notation___hyg_8446____closed__8; lean_object* l_Lean_Parser_Tactic_intros; lean_object* l_Lean_Parser_Tactic_rewriteSeq___closed__3; lean_object* l_term___x3c_____closed__6; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14148____closed__8; lean_object* l_myMacro____x40_Init_Notation___hyg_521____closed__6; lean_object* l_myMacro____x40_Init_Notation___hyg_10245____closed__9; lean_object* l_Lean_Parser_Tactic_tacticTry__; @@ -1316,14 +1320,12 @@ lean_object* l_stx___x7c_x2b___closed__5; lean_object* l_term___x2b_____closed__5; lean_object* l_termIf__Then__Else_____closed__6; lean_object* l_Lean_Parser_Tactic_induction___closed__14; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14148____closed__9; lean_object* l_Lean_Parser_Tactic_case___closed__7; lean_object* l_myMacro____x40_Init_Notation___hyg_2649____closed__5; lean_object* l_Lean_Parser_Tactic_inductionAlts___closed__9; lean_object* l_Lean_Parser_Tactic_letrec___closed__16; lean_object* l_term_x5b___x5d___closed__12; lean_object* l_myMacro____x40_Init_Notation___hyg_9217____closed__9; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13707____closed__3; lean_object* l_term___x2a_x3e_____closed__1; lean_object* l___private_Init_Notation_0__Lean_Parser_Tactic_withCheapRefl___closed__17; lean_object* l_Lean_Parser_Tactic_exact___closed__4; @@ -1345,7 +1347,6 @@ lean_object* l_myMacro____x40_Init_Notation___hyg_521____closed__21; lean_object* l_Lean_Parser_Tactic_apply___closed__1; lean_object* l_stx___x2a; lean_object* l_Lean_Parser_Tactic_rewrite___closed__3; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14148____closed__4; lean_object* l_term___x2f__; lean_object* l_myMacro____x40_Init_Notation___hyg_9217____closed__2; lean_object* l_Lean_Parser_Tactic_locationTarget; @@ -1407,6 +1408,7 @@ lean_object* l_Lean_Parser_Tactic_tacticHave_____x3a_x3d_____closed__4; lean_object* l_Lean_Parser_Tactic_intro___closed__2; lean_object* l_myMacro____x40_Init_Notation___hyg_521____closed__13; lean_object* l_myMacro____x40_Init_Notation___hyg_6974____closed__1; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13893____closed__4; lean_object* l_term___x3e_x3e_x3d_____closed__6; lean_object* l_Lean_Parser_Tactic_focus___closed__3; lean_object* l_Lean_Parser_Tactic_matchAlt___closed__3; @@ -1422,7 +1424,6 @@ lean_object* l_myMacro____x40_Init_Notation___hyg_10502____closed__8; lean_object* l_term___u2245_____closed__3; lean_object* l_termIf__Then__Else_____closed__8; lean_object* l_Lean_Parser_Tactic_expandERwSeq___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15698____closed__4; lean_object* l___private_Init_Notation_0__Lean_Parser_Tactic_withCheapRefl___closed__31; lean_object* l_term___x3e_x3e_____closed__7; lean_object* l_term_x7b_____x3a___x2f_x2f___x7d___closed__10; @@ -1432,7 +1433,6 @@ lean_object* l_myMacro____x40_Init_Notation___hyg_11918____closed__4; lean_object* l_term___x3c_x2a_x3e_____closed__2; lean_object* l_term_x5b___x5d___closed__1; lean_object* l_Lean_myMacro____x40_Init_Notation___hyg_12778____closed__1; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13707____closed__2; lean_object* l_stx___x2c_x2b_x2c_x3f___closed__1; lean_object* l_termIf__Then__Else_____closed__3; lean_object* l_term___x24_______closed__7; @@ -1458,6 +1458,7 @@ lean_object* l_myMacro____x40_Init_Notation___hyg_9988____closed__2; lean_object* l_Lean_Parser_Tactic_rwRuleSeq___closed__3; lean_object* l_Lean_Parser_Tactic_inductionAlts___closed__4; lean_object* l_myMacro____x40_Init_Notation___hyg_376____closed__7; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15704____closed__2; lean_object* l_Lean_Parser_Tactic_letrec___closed__15; lean_object* l_myMacro____x40_Init_Notation___hyg_698____boxed(lean_object*, lean_object*, lean_object*); lean_object* l_term_x2d_____closed__7; @@ -1471,6 +1472,7 @@ lean_object* l_myMacro____x40_Init_Notation___hyg_2135____closed__6; lean_object* l_Lean_Parser_Tactic_existsIntro___closed__2; lean_object* l_myMacro____x40_Init_Notation___hyg_521____closed__4; lean_object* l_myMacro____x40_Init_Notation___hyg_6974____closed__6; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14025____closed__7; lean_object* l_Lean_Parser_Tactic_rwSeq___closed__3; lean_object* l_term___x5e__; lean_object* l_Lean_Parser_Tactic_intro___closed__14; @@ -1479,7 +1481,7 @@ lean_object* l_myMacro____x40_Init_Notation___hyg_49____closed__9; lean_object* l_myMacro____x40_Init_Notation___hyg_2392____closed__4; lean_object* l_myMacro____x40_Init_Notation___hyg_4429____closed__2; lean_object* l_Lean_Parser_Tactic_intro___closed__3; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15698____closed__1; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15704____closed__4; lean_object* l_myMacro____x40_Init_Notation___hyg_2392____closed__9; lean_object* l_Lean_Parser_Tactic_erewriteSeq___closed__2; lean_object* l_myMacro____x40_Init_Notation___hyg_7710____closed__5; @@ -1489,7 +1491,6 @@ lean_object* l_term___x7e_x3d_____closed__5; lean_object* l_myMacro____x40_Init_Notation___hyg_11918____closed__13; lean_object* l_myMacro____x40_Init_Notation___hyg_10790____closed__7; lean_object* l_myMacro____x40_Init_Notation___hyg_10245____closed__5; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13707____closed__1; lean_object* l_term___x3c_x3d_____closed__2; lean_object* l_Lean_Parser_Tactic_orelse___closed__6; lean_object* l_Lean_Parser_Tactic_intro___closed__5; @@ -1502,7 +1503,6 @@ lean_object* l_Lean_Parser_Tactic_induction___closed__17; lean_object* l_term___x2a_____closed__4; lean_object* l_term___u2265_____closed__5; lean_object* l_myMacro____x40_Init_Notation___hyg_698____closed__1; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14019____closed__7; lean_object* l_myMacro____x40_Init_Notation___hyg_9217____closed__3; lean_object* l_myMacro____x40_Init_Notation___hyg_3163____closed__9; lean_object* l_myMacro____x40_Init_Notation___hyg_9474____closed__3; @@ -1521,13 +1521,16 @@ lean_object* l_Lean_myMacro____x40_Init_Notation___hyg_12778____closed__8; lean_object* l_myMacro____x40_Init_Notation___hyg_12545____closed__10; lean_object* l_term_x5b___x5d___closed__2; lean_object* l_Lean_myMacro____x40_Init_Notation___hyg_12778____closed__4; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13893____closed__1; lean_object* l_Lean_Parser_Tactic_locationHyp___closed__1; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15704____closed__1; lean_object* l_Lean_Parser_Tactic_skip; lean_object* l_term___x3c_x7c_____closed__6; lean_object* l_Lean_Parser_Tactic_rwRule___closed__3; lean_object* l_myMacro____x40_Init_Notation___hyg_5195____closed__4; lean_object* l_myMacro____x40_Init_Notation___hyg_10502____closed__7; lean_object* l_Lean_Parser_Tactic_casesTarget___closed__2; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13893____closed__2; lean_object* l_Lean_Parser_Tactic_matchAlts; lean_object* l_myMacro____x40_Init_Notation___hyg_2135____closed__4; lean_object* l_stx_x21_____closed__7; @@ -1564,18 +1567,18 @@ lean_object* l_Lean_Parser_Tactic_let_x21___closed__3; lean_object* l_Lean_Parser_Tactic_expandRwSeq___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_myMacro____x40_Init_Notation___hyg_1261____closed__16; lean_object* l_Lean_Parser_Tactic_withReducible___closed__3; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13713____closed__4; lean_object* l_myMacro____x40_Init_Notation___hyg_8446____closed__5; lean_object* l_Lean_Parser_Tactic_case___closed__13; lean_object* l_myMacro____x40_Init_Notation___hyg_8960____closed__7; lean_object* l_Lean_Parser_Tactic_erewriteSeq; lean_object* l_term___x3d_____closed__3; lean_object* l_Lean_Parser_Tactic_rewriteSeq___closed__1; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14148____closed__2; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14025____closed__3; lean_object* l_myMacro____x40_Init_Notation___hyg_12545____closed__7; lean_object* l_term___x7c_x3e_____closed__6; lean_object* l_Lean_Parser_Tactic_paren; lean_object* l_Lean_Parser_Tactic_erw___closed__3; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14019____closed__3; lean_object* l_Lean_Parser_Tactic_intro; lean_object* l_term___x3c_x7c_____closed__4; lean_object* l_unexpand____x40_Init_Notation___hyg_5430____closed__1; @@ -1592,6 +1595,7 @@ lean_object* l_Lean_Parser_Tactic_refine; lean_object* l_myMacro____x40_Init_Notation___hyg_3913____closed__7; lean_object* l_myMacro____x40_Init_Notation___hyg_49____closed__1; lean_object* l_Lean_Parser_Tactic_introMatch; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14154____closed__1; lean_object* l_Lean_Parser_Tactic_generalize___closed__5; lean_object* l_Lean_Parser_Tactic_tacticHave_____x3a_x3d_____closed__3; lean_object* l_stx___x2c_x2b___closed__5; @@ -1603,6 +1607,7 @@ lean_object* l_term_x7b_____x3a___x2f_x2f___x7d___closed__11; lean_object* l_term___x3e_x3e_____closed__2; lean_object* l_unexpand____x40_Init_Notation___hyg_2630____closed__1; lean_object* l_myMacro____x40_Init_Notation___hyg_521____closed__8; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15704____boxed(lean_object*, lean_object*, lean_object*); lean_object* l_myMacro____x40_Init_Notation___hyg_3677____closed__3; lean_object* l_Lean_Parser_Tactic_rwRule___closed__5; lean_object* l_Lean_Parser_Tactic_skip___closed__4; @@ -1627,13 +1632,10 @@ lean_object* l_Lean_Parser_Tactic_intros___closed__10; lean_object* l_term___x3d_____closed__5; lean_object* l_term_x25_x5b___x7c___x5d___closed__11; lean_object* l_term___x7c_x7c_____closed__7; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15698____boxed(lean_object*, lean_object*, lean_object*); lean_object* l_term_x5b___x5d___closed__3; lean_object* l_myMacro____x40_Init_Notation___hyg_9988____closed__7; lean_object* l_myMacro____x40_Init_Notation___hyg_3163____closed__4; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13707____boxed(lean_object*, lean_object*, lean_object*); lean_object* l_term___u2245_____closed__5; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14019____closed__5; lean_object* l_term___x25_____closed__6; lean_object* l_term___x25__; lean_object* l_stx___x2b___closed__5; @@ -1645,7 +1647,6 @@ lean_object* l_term___x2b_____closed__4; lean_object* l_term___x2a_x3e__; lean_object* l_term___x24_______closed__10; lean_object* l_termWithoutExpectedType_x21_____closed__2; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14148____closed__1; lean_object* l_myMacro____x40_Init_Notation___hyg_9474____closed__5; lean_object* l_Lean_Parser_Tactic_rwSeq___closed__5; lean_object* l_Lean_Parser_Tactic_tacticRepeat_____closed__4; @@ -1653,11 +1654,10 @@ lean_object* l_myMacro____x40_Init_Notation___hyg_7710____closed__3; uint8_t lean_nat_dec_lt(lean_object*, lean_object*); lean_object* l_myMacro____x40_Init_Notation___hyg_2906____closed__9; lean_object* l_myMacro____x40_Init_Notation___hyg_11918____closed__17; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13707____closed__6; +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14025____closed__5; lean_object* l_myMacro____x40_Init_Notation___hyg_2135____closed__2; lean_object* l_myMacro____x40_Init_Notation___hyg_3420____closed__8; lean_object* l_term___u2245_____closed__4; -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14148____boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Tactic_matchAlts___closed__6; lean_object* l_stx___x7c_x2b___closed__2; static lean_object* _init_l_stx___x2b___closed__1() { @@ -19702,7 +19702,7 @@ x_1 = l_Lean_Parser_Tactic_tacticTry_____closed__6; return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13707____closed__1() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13713____closed__1() { _start: { lean_object* x_1; @@ -19710,17 +19710,17 @@ x_1 = lean_mk_string("seq1"); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13707____closed__2() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13713____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Tactic_intro___closed__2; -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13707____closed__1; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13713____closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13707____closed__3() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13713____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -19730,7 +19730,7 @@ x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13707____closed__4() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13713____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -19742,7 +19742,7 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13707____closed__5() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13713____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -19754,29 +19754,29 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13707____closed__6() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13713____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Array_empty___closed__1; -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13707____closed__5; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13713____closed__5; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13707____closed__7() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13713____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Tactic_skip___closed__2; -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13707____closed__6; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13713____closed__6; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); return x_3; } } -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13707_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13713_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -19801,7 +19801,7 @@ x_9 = l_Lean_Syntax_getArg(x_1, x_8); lean_dec(x_1); x_10 = l_Array_empty___closed__1; x_11 = lean_array_push(x_10, x_9); -x_12 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13707____closed__3; +x_12 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13713____closed__3; x_13 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_13, 0, x_12); lean_ctor_set(x_13, 1, x_11); @@ -19814,9 +19814,9 @@ 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_10, x_19); -x_21 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13707____closed__4; +x_21 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13713____closed__4; x_22 = lean_array_push(x_20, x_21); -x_23 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13707____closed__7; +x_23 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13713____closed__7; x_24 = lean_array_push(x_22, x_23); x_25 = l_Lean_Parser_Tactic_orelse___closed__1; x_26 = lean_alloc_ctor(1, 2, 0); @@ -19828,7 +19828,7 @@ 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_10, x_29); -x_31 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13707____closed__2; +x_31 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13713____closed__2; x_32 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_32, 0, x_31); lean_ctor_set(x_32, 1, x_30); @@ -19839,11 +19839,11 @@ return x_33; } } } -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13707____boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13713____boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13707_(x_1, x_2, x_3); +x_4 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13713_(x_1, x_2, x_3); lean_dec(x_2); return x_4; } @@ -19908,7 +19908,7 @@ x_1 = l_Lean_Parser_Tactic_tacticRfl___closed__5; return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13887____closed__1() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13893____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -19920,17 +19920,17 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13887____closed__2() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13893____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Array_empty___closed__1; -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13887____closed__1; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13893____closed__1; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13887____closed__3() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13893____closed__3() { _start: { lean_object* x_1; lean_object* x_2; @@ -19939,13 +19939,13 @@ x_2 = lean_string_utf8_byte_size(x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13887____closed__4() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13893____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = l_Lean_Parser_Tactic_tacticRfl___closed__3; x_2 = lean_unsigned_to_nat(0u); -x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13887____closed__3; +x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13893____closed__3; x_4 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_4, 0, x_1); lean_ctor_set(x_4, 1, x_2); @@ -19953,7 +19953,7 @@ lean_ctor_set(x_4, 2, x_3); return x_4; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13887____closed__5() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13893____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -19963,31 +19963,31 @@ x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13887____closed__6() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13893____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13887____closed__5; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13893____closed__5; 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_Tactic_myMacro____x40_Init_Notation___hyg_13887____closed__7() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13893____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13887____closed__6; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13893____closed__6; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13887_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13893_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -20011,17 +20011,17 @@ lean_inc(x_8); x_9 = lean_ctor_get(x_2, 1); lean_inc(x_9); lean_dec(x_2); -x_10 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13887____closed__5; +x_10 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13893____closed__5; x_11 = l_Lean_addMacroScope(x_9, x_10, x_8); x_12 = l_Lean_instInhabitedSourceInfo___closed__1; -x_13 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13887____closed__4; -x_14 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13887____closed__7; +x_13 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13893____closed__4; +x_14 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13893____closed__7; x_15 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_15, 0, x_12); lean_ctor_set(x_15, 1, x_13); lean_ctor_set(x_15, 2, x_11); lean_ctor_set(x_15, 3, x_14); -x_16 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13887____closed__2; +x_16 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13893____closed__2; x_17 = lean_array_push(x_16, x_15); x_18 = l_Lean_Parser_Tactic_exact___closed__2; x_19 = lean_alloc_ctor(1, 2, 0); @@ -20034,7 +20034,7 @@ x_23 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_23, 0, x_22); lean_ctor_set(x_23, 1, x_21); x_24 = lean_array_push(x_20, x_23); -x_25 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13707____closed__2; +x_25 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13713____closed__2; x_26 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_26, 0, x_25); lean_ctor_set(x_26, 1, x_24); @@ -20105,7 +20105,7 @@ x_1 = l_Lean_Parser_Tactic_tacticDecide_x21___closed__5; return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14019____closed__1() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14025____closed__1() { _start: { lean_object* x_1; @@ -20113,17 +20113,17 @@ x_1 = lean_mk_string("decide"); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14019____closed__2() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14025____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_Tactic_myMacro____x40_Init_Notation___hyg_14019____closed__1; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14025____closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14019____closed__3() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14025____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -20135,95 +20135,95 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14019____closed__4() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14025____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_Tactic_myMacro____x40_Init_Notation___hyg_14019____closed__3; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14025____closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14019____closed__5() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14025____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14019____closed__2; -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14019____closed__4; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14025____closed__2; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14025____closed__4; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14019____closed__6() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14025____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13887____closed__2; -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14019____closed__5; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13893____closed__2; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14025____closed__5; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14019____closed__7() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14025____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Tactic_exact___closed__2; -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14019____closed__6; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14025____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_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14019____closed__8() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14025____closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Array_empty___closed__1; -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14019____closed__7; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14025____closed__7; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14019____closed__9() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14025____closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_nullKind___closed__2; -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14019____closed__8; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14025____closed__8; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14019____closed__10() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14025____closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Array_empty___closed__1; -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14019____closed__9; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14025____closed__9; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14019____closed__11() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14025____closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13707____closed__2; -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14019____closed__10; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13713____closed__2; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14025____closed__10; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); return x_3; } } -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14019_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14025_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -20241,7 +20241,7 @@ return x_7; else { lean_object* x_8; lean_object* x_9; -x_8 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14019____closed__11; +x_8 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14025____closed__11; x_9 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_9, 0, x_8); lean_ctor_set(x_9, 1, x_3); @@ -20249,11 +20249,11 @@ return x_9; } } } -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14019____boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14025____boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14019_(x_1, x_2, x_3); +x_4 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14025_(x_1, x_2, x_3); lean_dec(x_2); return x_4; } @@ -20318,7 +20318,7 @@ x_1 = l_Lean_Parser_Tactic_tacticAdmit___closed__5; return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14148____closed__1() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14154____closed__1() { _start: { lean_object* x_1; @@ -20326,117 +20326,117 @@ x_1 = lean_mk_string("sorry"); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14148____closed__2() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14154____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_Tactic_myMacro____x40_Init_Notation___hyg_14148____closed__1; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14154____closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14148____closed__3() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14154____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_Tactic_myMacro____x40_Init_Notation___hyg_14148____closed__1; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14154____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_Tactic_myMacro____x40_Init_Notation___hyg_14148____closed__4() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14154____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_Tactic_myMacro____x40_Init_Notation___hyg_14148____closed__3; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14154____closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14148____closed__5() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14154____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14148____closed__2; -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14148____closed__4; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14154____closed__2; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14154____closed__4; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14148____closed__6() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14154____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13887____closed__2; -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14148____closed__5; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13893____closed__2; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14154____closed__5; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14148____closed__7() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14154____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Tactic_exact___closed__2; -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14148____closed__6; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14154____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_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14148____closed__8() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14154____closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Array_empty___closed__1; -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14148____closed__7; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14154____closed__7; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14148____closed__9() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14154____closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_nullKind___closed__2; -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14148____closed__8; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14154____closed__8; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14148____closed__10() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14154____closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Array_empty___closed__1; -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14148____closed__9; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14154____closed__9; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14148____closed__11() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14154____closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13707____closed__2; -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14148____closed__10; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13713____closed__2; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14154____closed__10; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); return x_3; } } -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14148_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14154_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -20454,7 +20454,7 @@ return x_7; else { lean_object* x_8; lean_object* x_9; -x_8 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14148____closed__11; +x_8 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14154____closed__11; x_9 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_9, 0, x_8); lean_ctor_set(x_9, 1, x_3); @@ -20462,11 +20462,11 @@ return x_9; } } } -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14148____boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14154____boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14148_(x_1, x_2, x_3); +x_4 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14154_(x_1, x_2, x_3); lean_dec(x_2); return x_4; } @@ -21989,7 +21989,7 @@ static lean_object* _init_l___private_Init_Notation_0__Lean_Parser_Tactic_withCh _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13707____closed__3; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13713____closed__3; x_2 = l___private_Init_Notation_0__Lean_Parser_Tactic_withCheapRefl___closed__18; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -22109,7 +22109,7 @@ static lean_object* _init_l___private_Init_Notation_0__Lean_Parser_Tactic_withCh _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13707____closed__3; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13713____closed__3; x_2 = l___private_Init_Notation_0__Lean_Parser_Tactic_withCheapRefl___closed__29; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -22239,7 +22239,7 @@ static lean_object* _init_l___private_Init_Notation_0__Lean_Parser_Tactic_withCh _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13707____closed__3; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13713____closed__3; x_2 = l___private_Init_Notation_0__Lean_Parser_Tactic_withCheapRefl___closed__41; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -22284,7 +22284,7 @@ x_11 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_11, 0, x_10); lean_ctor_set(x_11, 1, x_9); x_12 = lean_array_push(x_4, x_11); -x_13 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13707____closed__2; +x_13 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13713____closed__2; x_14 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_14, 0, x_13); lean_ctor_set(x_14, 1, x_12); @@ -24439,7 +24439,7 @@ x_1 = l_Lean_Parser_Tactic_tacticHave_____x3a_x3d_____closed__9; return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15698____closed__1() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15704____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -24451,17 +24451,17 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15698____closed__2() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15704____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Array_empty___closed__1; -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15698____closed__1; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15704____closed__1; x_3 = lean_array_push(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15698____closed__3() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15704____closed__3() { _start: { lean_object* x_1; @@ -24469,17 +24469,17 @@ x_1 = lean_mk_string("haveAssign"); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15698____closed__4() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15704____closed__4() { _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_Tactic_myMacro____x40_Init_Notation___hyg_15698____closed__3; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15704____closed__3; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15698____closed__5() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15704____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -24489,7 +24489,7 @@ x_3 = lean_array_push(x_1, x_2); return x_3; } } -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15698_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15704_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -24522,13 +24522,13 @@ x_16 = l_Lean_nullKind___closed__2; x_17 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_17, 0, x_16); lean_ctor_set(x_17, 1, x_15); -x_18 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15698____closed__2; +x_18 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15704____closed__2; x_19 = lean_array_push(x_18, x_17); x_20 = l_myMacro____x40_Init_Notation___hyg_11918____closed__17; x_21 = lean_array_push(x_19, x_20); -x_22 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15698____closed__5; +x_22 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15704____closed__5; x_23 = lean_array_push(x_22, x_11); -x_24 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15698____closed__4; +x_24 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15704____closed__4; x_25 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_25, 0, x_24); lean_ctor_set(x_25, 1, x_23); @@ -24542,7 +24542,7 @@ x_30 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_30, 0, x_16); lean_ctor_set(x_30, 1, x_29); x_31 = lean_array_push(x_12, x_30); -x_32 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13707____closed__2; +x_32 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13713____closed__2; x_33 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_33, 0, x_32); lean_ctor_set(x_33, 1, x_31); @@ -24553,11 +24553,11 @@ return x_34; } } } -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15698____boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15704____boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15698_(x_1, x_2, x_3); +x_4 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15704_(x_1, x_2, x_3); lean_dec(x_2); return x_4; } @@ -24636,7 +24636,7 @@ x_1 = l_Lean_Parser_Tactic_tacticRepeat_____closed__6; return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15893____closed__1() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15899____closed__1() { _start: { lean_object* x_1; @@ -24644,29 +24644,29 @@ x_1 = lean_mk_string("repeat"); return x_1; } } -static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15893____closed__2() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15899____closed__2() { _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_Tactic_myMacro____x40_Init_Notation___hyg_15893____closed__1; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15899____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_Tactic_myMacro____x40_Init_Notation___hyg_15893____closed__3() { +static lean_object* _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15899____closed__3() { _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_Tactic_myMacro____x40_Init_Notation___hyg_15893____closed__2; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15899____closed__2; x_3 = lean_array_push(x_1, x_2); return x_3; } } -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15893_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15899_(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; uint8_t x_5; @@ -24689,7 +24689,7 @@ lean_object* x_8; lean_object* x_9; lean_object* x_10; uint8_t x_11; x_8 = lean_unsigned_to_nat(1u); x_9 = l_Lean_Syntax_getArg(x_1, x_8); lean_dec(x_1); -x_10 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13707____closed__3; +x_10 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13713____closed__3; lean_inc(x_9); x_11 = l_Lean_Syntax_isOfKind(x_9, x_10); if (x_11 == 0) @@ -24730,7 +24730,7 @@ 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); -x_31 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15893____closed__3; +x_31 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15899____closed__3; x_32 = lean_array_push(x_31, x_18); x_33 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_33, 0, x_4); @@ -24760,9 +24760,9 @@ x_47 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_47, 0, x_23); lean_ctor_set(x_47, 1, x_46); x_48 = lean_array_push(x_16, x_47); -x_49 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13707____closed__4; +x_49 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13713____closed__4; x_50 = lean_array_push(x_48, x_49); -x_51 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13707____closed__7; +x_51 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13713____closed__7; x_52 = lean_array_push(x_50, x_51); x_53 = l_Lean_Parser_Tactic_orelse___closed__1; x_54 = lean_alloc_ctor(1, 2, 0); @@ -24776,11 +24776,11 @@ return x_55; } } } -lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15893____boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15899____boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; -x_4 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15893_(x_1, x_2, x_3); +x_4 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15899_(x_1, x_2, x_3); lean_dec(x_2); return x_4; } @@ -26962,20 +26962,20 @@ l_Lean_Parser_Tactic_tacticTry_____closed__6 = _init_l_Lean_Parser_Tactic_tactic lean_mark_persistent(l_Lean_Parser_Tactic_tacticTry_____closed__6); l_Lean_Parser_Tactic_tacticTry__ = _init_l_Lean_Parser_Tactic_tacticTry__(); lean_mark_persistent(l_Lean_Parser_Tactic_tacticTry__); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13707____closed__1 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13707____closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13707____closed__1); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13707____closed__2 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13707____closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13707____closed__2); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13707____closed__3 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13707____closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13707____closed__3); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13707____closed__4 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13707____closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13707____closed__4); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13707____closed__5 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13707____closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13707____closed__5); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13707____closed__6 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13707____closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13707____closed__6); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13707____closed__7 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13707____closed__7(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13707____closed__7); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13713____closed__1 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13713____closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13713____closed__1); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13713____closed__2 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13713____closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13713____closed__2); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13713____closed__3 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13713____closed__3(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13713____closed__3); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13713____closed__4 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13713____closed__4(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13713____closed__4); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13713____closed__5 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13713____closed__5(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13713____closed__5); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13713____closed__6 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13713____closed__6(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13713____closed__6); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13713____closed__7 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13713____closed__7(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13713____closed__7); l_Lean_Parser_Tactic_tacticRfl___closed__1 = _init_l_Lean_Parser_Tactic_tacticRfl___closed__1(); lean_mark_persistent(l_Lean_Parser_Tactic_tacticRfl___closed__1); l_Lean_Parser_Tactic_tacticRfl___closed__2 = _init_l_Lean_Parser_Tactic_tacticRfl___closed__2(); @@ -26988,20 +26988,20 @@ l_Lean_Parser_Tactic_tacticRfl___closed__5 = _init_l_Lean_Parser_Tactic_tacticRf lean_mark_persistent(l_Lean_Parser_Tactic_tacticRfl___closed__5); l_Lean_Parser_Tactic_tacticRfl = _init_l_Lean_Parser_Tactic_tacticRfl(); lean_mark_persistent(l_Lean_Parser_Tactic_tacticRfl); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13887____closed__1 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13887____closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13887____closed__1); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13887____closed__2 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13887____closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13887____closed__2); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13887____closed__3 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13887____closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13887____closed__3); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13887____closed__4 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13887____closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13887____closed__4); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13887____closed__5 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13887____closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13887____closed__5); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13887____closed__6 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13887____closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13887____closed__6); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13887____closed__7 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13887____closed__7(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13887____closed__7); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13893____closed__1 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13893____closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13893____closed__1); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13893____closed__2 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13893____closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13893____closed__2); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13893____closed__3 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13893____closed__3(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13893____closed__3); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13893____closed__4 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13893____closed__4(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13893____closed__4); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13893____closed__5 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13893____closed__5(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13893____closed__5); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13893____closed__6 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13893____closed__6(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13893____closed__6); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13893____closed__7 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13893____closed__7(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13893____closed__7); l_Lean_Parser_Tactic_tacticDecide_x21___closed__1 = _init_l_Lean_Parser_Tactic_tacticDecide_x21___closed__1(); lean_mark_persistent(l_Lean_Parser_Tactic_tacticDecide_x21___closed__1); l_Lean_Parser_Tactic_tacticDecide_x21___closed__2 = _init_l_Lean_Parser_Tactic_tacticDecide_x21___closed__2(); @@ -27014,28 +27014,28 @@ l_Lean_Parser_Tactic_tacticDecide_x21___closed__5 = _init_l_Lean_Parser_Tactic_t lean_mark_persistent(l_Lean_Parser_Tactic_tacticDecide_x21___closed__5); l_Lean_Parser_Tactic_tacticDecide_x21 = _init_l_Lean_Parser_Tactic_tacticDecide_x21(); lean_mark_persistent(l_Lean_Parser_Tactic_tacticDecide_x21); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14019____closed__1 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14019____closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14019____closed__1); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14019____closed__2 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14019____closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14019____closed__2); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14019____closed__3 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14019____closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14019____closed__3); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14019____closed__4 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14019____closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14019____closed__4); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14019____closed__5 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14019____closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14019____closed__5); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14019____closed__6 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14019____closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14019____closed__6); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14019____closed__7 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14019____closed__7(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14019____closed__7); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14019____closed__8 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14019____closed__8(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14019____closed__8); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14019____closed__9 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14019____closed__9(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14019____closed__9); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14019____closed__10 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14019____closed__10(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14019____closed__10); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14019____closed__11 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14019____closed__11(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14019____closed__11); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14025____closed__1 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14025____closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14025____closed__1); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14025____closed__2 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14025____closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14025____closed__2); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14025____closed__3 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14025____closed__3(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14025____closed__3); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14025____closed__4 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14025____closed__4(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14025____closed__4); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14025____closed__5 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14025____closed__5(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14025____closed__5); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14025____closed__6 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14025____closed__6(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14025____closed__6); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14025____closed__7 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14025____closed__7(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14025____closed__7); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14025____closed__8 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14025____closed__8(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14025____closed__8); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14025____closed__9 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14025____closed__9(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14025____closed__9); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14025____closed__10 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14025____closed__10(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14025____closed__10); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14025____closed__11 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14025____closed__11(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14025____closed__11); l_Lean_Parser_Tactic_tacticAdmit___closed__1 = _init_l_Lean_Parser_Tactic_tacticAdmit___closed__1(); lean_mark_persistent(l_Lean_Parser_Tactic_tacticAdmit___closed__1); l_Lean_Parser_Tactic_tacticAdmit___closed__2 = _init_l_Lean_Parser_Tactic_tacticAdmit___closed__2(); @@ -27048,28 +27048,28 @@ l_Lean_Parser_Tactic_tacticAdmit___closed__5 = _init_l_Lean_Parser_Tactic_tactic lean_mark_persistent(l_Lean_Parser_Tactic_tacticAdmit___closed__5); l_Lean_Parser_Tactic_tacticAdmit = _init_l_Lean_Parser_Tactic_tacticAdmit(); lean_mark_persistent(l_Lean_Parser_Tactic_tacticAdmit); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14148____closed__1 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14148____closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14148____closed__1); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14148____closed__2 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14148____closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14148____closed__2); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14148____closed__3 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14148____closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14148____closed__3); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14148____closed__4 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14148____closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14148____closed__4); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14148____closed__5 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14148____closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14148____closed__5); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14148____closed__6 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14148____closed__6(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14148____closed__6); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14148____closed__7 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14148____closed__7(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14148____closed__7); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14148____closed__8 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14148____closed__8(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14148____closed__8); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14148____closed__9 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14148____closed__9(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14148____closed__9); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14148____closed__10 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14148____closed__10(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14148____closed__10); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14148____closed__11 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14148____closed__11(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14148____closed__11); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14154____closed__1 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14154____closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14154____closed__1); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14154____closed__2 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14154____closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14154____closed__2); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14154____closed__3 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14154____closed__3(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14154____closed__3); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14154____closed__4 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14154____closed__4(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14154____closed__4); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14154____closed__5 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14154____closed__5(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14154____closed__5); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14154____closed__6 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14154____closed__6(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14154____closed__6); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14154____closed__7 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14154____closed__7(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14154____closed__7); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14154____closed__8 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14154____closed__8(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14154____closed__8); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14154____closed__9 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14154____closed__9(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14154____closed__9); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14154____closed__10 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14154____closed__10(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14154____closed__10); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14154____closed__11 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14154____closed__11(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14154____closed__11); l_Lean_Parser_Tactic_locationWildcard___closed__1 = _init_l_Lean_Parser_Tactic_locationWildcard___closed__1(); lean_mark_persistent(l_Lean_Parser_Tactic_locationWildcard___closed__1); l_Lean_Parser_Tactic_locationWildcard___closed__2 = _init_l_Lean_Parser_Tactic_locationWildcard___closed__2(); @@ -27768,16 +27768,16 @@ l_Lean_Parser_Tactic_tacticHave_____x3a_x3d_____closed__9 = _init_l_Lean_Parser_ lean_mark_persistent(l_Lean_Parser_Tactic_tacticHave_____x3a_x3d_____closed__9); l_Lean_Parser_Tactic_tacticHave_____x3a_x3d__ = _init_l_Lean_Parser_Tactic_tacticHave_____x3a_x3d__(); lean_mark_persistent(l_Lean_Parser_Tactic_tacticHave_____x3a_x3d__); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15698____closed__1 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15698____closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15698____closed__1); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15698____closed__2 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15698____closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15698____closed__2); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15698____closed__3 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15698____closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15698____closed__3); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15698____closed__4 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15698____closed__4(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15698____closed__4); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15698____closed__5 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15698____closed__5(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15698____closed__5); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15704____closed__1 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15704____closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15704____closed__1); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15704____closed__2 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15704____closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15704____closed__2); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15704____closed__3 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15704____closed__3(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15704____closed__3); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15704____closed__4 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15704____closed__4(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15704____closed__4); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15704____closed__5 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15704____closed__5(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15704____closed__5); l_Lean_Parser_Tactic_tacticRepeat_____closed__1 = _init_l_Lean_Parser_Tactic_tacticRepeat_____closed__1(); lean_mark_persistent(l_Lean_Parser_Tactic_tacticRepeat_____closed__1); l_Lean_Parser_Tactic_tacticRepeat_____closed__2 = _init_l_Lean_Parser_Tactic_tacticRepeat_____closed__2(); @@ -27792,12 +27792,12 @@ l_Lean_Parser_Tactic_tacticRepeat_____closed__6 = _init_l_Lean_Parser_Tactic_tac lean_mark_persistent(l_Lean_Parser_Tactic_tacticRepeat_____closed__6); l_Lean_Parser_Tactic_tacticRepeat__ = _init_l_Lean_Parser_Tactic_tacticRepeat__(); lean_mark_persistent(l_Lean_Parser_Tactic_tacticRepeat__); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15893____closed__1 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15893____closed__1(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15893____closed__1); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15893____closed__2 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15893____closed__2(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15893____closed__2); -l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15893____closed__3 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15893____closed__3(); -lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15893____closed__3); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15899____closed__1 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15899____closed__1(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15899____closed__1); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15899____closed__2 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15899____closed__2(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15899____closed__2); +l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15899____closed__3 = _init_l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15899____closed__3(); +lean_mark_persistent(l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15899____closed__3); return lean_io_result_mk_ok(lean_box(0)); } #ifdef __cplusplus diff --git a/stage0/stdlib/Init/NotationExtra.c b/stage0/stdlib/Init/NotationExtra.c index 01cccc06b8..3f24f6f1f6 100644 --- a/stage0/stdlib/Init/NotationExtra.c +++ b/stage0/stdlib/Init/NotationExtra.c @@ -210,7 +210,6 @@ extern lean_object* l_Lean_instInhabitedSyntax; lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__50; extern lean_object* l_myMacro____x40_Init_Notation___hyg_1625____closed__2; lean_object* l_Lean_unifConstraintElem___closed__5; -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15698____closed__5; lean_object* l_Lean_mkSepArray(lean_object*, lean_object*); lean_object* l_Lean_command__Unif__hint______Where___x7c_x2d_u22a2_____closed__19; lean_object* l_term_u2203___x2c_____closed__5; @@ -273,12 +272,14 @@ lean_object* l_myMacro____x40_Init_NotationExtra___hyg_2962__match__1___rarg(lea lean_object* l_term_u03a3___x2c_____closed__4; lean_object* l_Array_appendCore___rarg(lean_object*, lean_object*); lean_object* l_myMacro____x40_Init_NotationExtra___hyg_2229____boxed(lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15704____closed__5; extern lean_object* l_myMacro____x40_Init_Notation___hyg_49____closed__4; lean_object* l_term___xd7_x27_____closed__1; lean_object* l_term_u03a3___x2c_____closed__7; lean_object* l_myMacro____x40_Init_NotationExtra___hyg_2318____closed__1; lean_object* l_myMacro____x40_Init_NotationExtra___hyg_2962____closed__1; extern lean_object* l_myMacro____x40_Init_Notation___hyg_1625____closed__4; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13713____closed__2; lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__25; lean_object* l_myMacro____x40_Init_NotationExtra___hyg_2318____closed__2; lean_object* l_Array_ofSubarray___rarg(lean_object*); @@ -320,7 +321,6 @@ lean_object* l_Lean_expandExplicitBindersAux_loop___boxed(lean_object*, lean_obj extern lean_object* l_Lean_myMacro____x40_Init_Notation___hyg_12778____closed__2; lean_object* l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_2962____spec__3___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__3; -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13707____closed__2; lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__15; lean_object* l_Lean_expandExplicitBindersAux_loop___closed__8; lean_object* l_Lean_binderIdent___closed__2; @@ -2784,7 +2784,7 @@ 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_226, x_233); -x_235 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15698____closed__5; +x_235 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15704____closed__5; x_236 = lean_array_push(x_235, x_182); x_237 = lean_array_push(x_236, x_194); x_238 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__46; @@ -2894,7 +2894,7 @@ x_298 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_298, 0, x_297); lean_ctor_set(x_298, 1, x_296); x_299 = lean_array_push(x_291, x_298); -x_300 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15698____closed__5; +x_300 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15704____closed__5; x_301 = lean_array_push(x_300, x_246); x_302 = lean_array_push(x_301, x_259); x_303 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__46; @@ -3074,7 +3074,7 @@ x_89 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_89, 0, x_88); lean_ctor_set(x_89, 1, x_87); x_90 = lean_array_push(x_82, x_89); -x_91 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15698____closed__5; +x_91 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15704____closed__5; x_92 = lean_array_push(x_91, x_42); x_93 = lean_array_push(x_92, x_54); x_94 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__46; @@ -3174,7 +3174,7 @@ 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_143, x_150); -x_152 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15698____closed__5; +x_152 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15704____closed__5; x_153 = lean_array_push(x_152, x_102); x_154 = lean_array_push(x_153, x_115); x_155 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__46; @@ -4383,7 +4383,7 @@ x_50 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_50, 0, x_33); lean_ctor_set(x_50, 1, x_49); x_51 = lean_array_push(x_25, x_50); -x_52 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13707____closed__2; +x_52 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13713____closed__2; x_53 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_53, 0, x_52); lean_ctor_set(x_53, 1, x_51); @@ -4440,7 +4440,7 @@ x_82 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_82, 0, x_75); lean_ctor_set(x_82, 1, x_81); x_83 = lean_array_push(x_67, x_82); -x_84 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13707____closed__2; +x_84 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13713____closed__2; x_85 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_85, 0, x_84); lean_ctor_set(x_85, 1, x_83); diff --git a/stage0/stdlib/Lean/Elab/App.c b/stage0/stdlib/Lean/Elab/App.c index f08d78c3a6..c6f28eb3f1 100644 --- a/stage0/stdlib/Lean/Elab/App.c +++ b/stage0/stdlib/Lean/Elab/App.c @@ -75,14 +75,12 @@ lean_object* l_Lean_Elab_Term_ElabAppArgs_main___closed__1; lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_resolveLVal(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_anyNamedArgDependsOnCurrent(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Format_pretty(lean_object*, lean_object*); -extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_261____closed__4; extern lean_object* l_Lean_Elab_throwUnsupportedSyntax___rarg___closed__1; lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_findMethod_x3f_match__1(lean_object*); lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppFn___closed__11; lean_object* l_List_forIn_loop___at___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_synthesizePendingAndNormalizeFunType___spec__11(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_App_0__Lean_Elab_Term_resolveLVal___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_App_0__Lean_Elab_Term_elabAppLValsAux_loop_match__2___rarg(lean_object*, lean_object*); -extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_261____closed__27; lean_object* l_Lean_throwError___at___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_synthesizePendingAndNormalizeFunType___spec__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_propagateExpectedTypeFor_match__1(lean_object*); lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Term_expandApp___spec__1___closed__1; @@ -157,7 +155,6 @@ lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_4____closed__2; lean_object* l_Lean_addTrace___at___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_finalize___spec__2___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_addTrace___at___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_propagateExpectedType___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* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_anyNamedArgDependsOnCurrent_match__2___rarg(lean_object*, lean_object*, lean_object*); -extern lean_object* l_Array_getEvenElems___rarg___closed__1; lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_addLValArg_match__3___rarg(lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processImplicitArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg___closed__2; @@ -227,6 +224,7 @@ lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppLValsAux_loop_ma lean_object* l_Lean_mkAppN(lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_elabExplicitUniv(lean_object*); lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_synthesizePendingAndNormalizeFunType_match__2(lean_object*); +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13713____closed__3; lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppLValsAux_loop___closed__1; lean_object* l_List_forIn_loop___at___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_synthesizePendingAndNormalizeFunType___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* l___private_Lean_Elab_App_0__Lean_Elab_Term_toMessageData___closed__1; @@ -237,6 +235,7 @@ lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_App_0__Lean_Elab_Te lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_fTypeHasOptAutoParams(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_resolveLValAux___closed__7; lean_object* l___private_Lean_Elab_Util_0__Lean_Elab_evalSyntaxConstantUnsafe(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Syntax_SepArray_getElems___rarg(lean_object*); lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_getArgExpectedType___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppLValsAux_loop___closed__2; extern lean_object* l_Lean_Elab_goalsToMessageData___closed__2; @@ -531,7 +530,6 @@ 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; 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; lean_object* l_Lean_Elab_getRefPos___at___private_Lean_Elab_App_0__Lean_Elab_Term_toMessageData___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*); uint8_t l_Lean_TagAttribute_hasTag(lean_object*, lean_object*, lean_object*); @@ -562,7 +560,7 @@ lean_object* l_Lean_Elab_getRefPos___at___private_Lean_Elab_App_0__Lean_Elab_Ter lean_object* l___regBuiltin_Lean_Elab_Term_elabChoice___closed__1; lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_finalize___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___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_getForallBody___lambda__1___boxed(lean_object*, lean_object*); -lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7747_(lean_object*); +lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7710_(lean_object*); lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_4_(lean_object*); lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppAux(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_propagateExpectedTypeFor___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -577,7 +575,6 @@ lean_object* l_Lean_Meta_inferType(lean_object*, lean_object*, lean_object*, lea lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_finalize___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* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_finalize___lambda__2___closed__2; lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_propagateExpectedType___closed__2; -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13707____closed__3; 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_List_forIn_loop___at___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_synthesizePendingAndNormalizeFunType___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -599,7 +596,6 @@ lean_object* lean_array_pop(lean_object*); lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_finalize___lambda__2___closed__1; lean_object* l___regBuiltin_Lean_Elab_Term_elabArrayRef___closed__1; lean_object* l_Lean_Elab_Term_registerSyntheticMVarWithCurrRef(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_521____closed__23; uint8_t l_Lean_Syntax_isOfKind(lean_object*, lean_object*); lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppFn(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Expr_isOptParam(lean_object*); @@ -720,7 +716,6 @@ 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; @@ -733,7 +728,6 @@ lean_object* l_Lean_Elab_Term_ElabAppArgs_eraseNamedArg(lean_object*, lean_objec uint8_t l_Lean_isStructure(lean_object*, lean_object*); lean_object* l_Lean_addTrace___at___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_propagateExpectedType___spec__1(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_App_0__Lean_Elab_Term_resolveLValAux(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l___regBuiltin_Lean_Elab_Tactic_evalTacticSeqBracketed___closed__2; lean_object* l_Lean_Elab_Term_throwInvalidNamedArg(lean_object*); lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppLValsAux_loop___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Exception_toMessageData(lean_object*); @@ -12149,7 +12143,7 @@ return x_65; } else { -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_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; x_66 = lean_ctor_get(x_61, 0); lean_inc(x_66); lean_dec(x_61); @@ -12161,46 +12155,24 @@ x_69 = l_Lean_Elab_Term_getMainModule___rarg(x_8, x_68); x_70 = lean_ctor_get(x_69, 1); lean_inc(x_70); lean_dec(x_69); -x_71 = l_Lean_Syntax_getArgs(x_66); -lean_dec(x_66); -x_72 = l_Array_empty___closed__1; -x_73 = l_Array_appendCore___rarg(x_72, x_71); -lean_dec(x_71); -x_74 = l_myMacro____x40_Init_Notation___hyg_521____closed__23; -x_75 = lean_array_push(x_73, x_74); -x_76 = l_Lean_nullKind___closed__2; -x_77 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_77, 0, x_76); -lean_ctor_set(x_77, 1, x_75); -x_78 = lean_array_push(x_72, x_77); -x_79 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_79, 0, x_76); -lean_ctor_set(x_79, 1, x_78); -x_80 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_261____closed__4; -x_81 = lean_array_push(x_80, x_79); -x_82 = l_Std_Range_myMacro____x40_Init_Data_Range___hyg_261____closed__27; -x_83 = lean_array_push(x_81, x_82); -x_84 = l___regBuiltin_Lean_Elab_Tactic_evalTacticSeqBracketed___closed__2; -x_85 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_85, 0, x_84); -lean_ctor_set(x_85, 1, x_83); -x_86 = lean_array_push(x_72, x_85); -x_87 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13707____closed__3; -x_88 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_88, 0, x_87); -lean_ctor_set(x_88, 1, x_86); -x_89 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg___closed__6; -x_90 = lean_array_push(x_89, x_88); -x_91 = l___regBuiltin_Lean_Elab_Term_elabByTactic___closed__2; -x_92 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_92, 0, x_91); -lean_ctor_set(x_92, 1, x_90); -x_93 = lean_ctor_get(x_7, 3); -lean_inc(x_93); -x_94 = l_Lean_Syntax_copyInfo(x_92, x_93); -lean_dec(x_93); -x_95 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_95, 0, x_94); +x_71 = l_Array_empty___closed__1; +x_72 = lean_array_push(x_71, x_66); +x_73 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13713____closed__3; +x_74 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_74, 0, x_73); +lean_ctor_set(x_74, 1, x_72); +x_75 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg___closed__6; +x_76 = lean_array_push(x_75, x_74); +x_77 = l___regBuiltin_Lean_Elab_Term_elabByTactic___closed__2; +x_78 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_78, 0, x_77); +lean_ctor_set(x_78, 1, x_76); +x_79 = lean_ctor_get(x_7, 3); +lean_inc(x_79); +x_80 = l_Lean_Syntax_copyInfo(x_78, x_79); +lean_dec(x_79); +x_81 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_81, 0, x_80); lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); @@ -12208,142 +12180,142 @@ lean_inc(x_5); lean_inc(x_4); lean_inc(x_3); lean_inc(x_2); -lean_inc(x_95); -x_96 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_propagateExpectedType(x_95, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_70); -if (lean_obj_tag(x_96) == 0) +lean_inc(x_81); +x_82 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_propagateExpectedType(x_81, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_70); +if (lean_obj_tag(x_82) == 0) { -lean_object* x_97; lean_object* x_98; -x_97 = lean_ctor_get(x_96, 1); -lean_inc(x_97); -lean_dec(x_96); +lean_object* x_83; lean_object* x_84; +x_83 = lean_ctor_get(x_82, 1); +lean_inc(x_83); +lean_dec(x_82); lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); lean_inc(x_3); -x_98 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_elabAndAddNewArg(x_95, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_97); -if (lean_obj_tag(x_98) == 0) +x_84 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_elabAndAddNewArg(x_81, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_83); +if (lean_obj_tag(x_84) == 0) { -lean_object* x_99; lean_object* x_100; +lean_object* x_85; lean_object* x_86; +x_85 = lean_ctor_get(x_84, 1); +lean_inc(x_85); +lean_dec(x_84); +x_86 = lean_apply_8(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_85); +return x_86; +} +else +{ +uint8_t x_87; +lean_dec(x_8); +lean_dec(x_7); +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_87 = !lean_is_exclusive(x_84); +if (x_87 == 0) +{ +return x_84; +} +else +{ +lean_object* x_88; lean_object* x_89; lean_object* x_90; +x_88 = lean_ctor_get(x_84, 0); +x_89 = lean_ctor_get(x_84, 1); +lean_inc(x_89); +lean_inc(x_88); +lean_dec(x_84); +x_90 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_90, 0, x_88); +lean_ctor_set(x_90, 1, x_89); +return x_90; +} +} +} +else +{ +uint8_t x_91; +lean_dec(x_81); +lean_dec(x_8); +lean_dec(x_7); +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_91 = !lean_is_exclusive(x_82); +if (x_91 == 0) +{ +return x_82; +} +else +{ +lean_object* x_92; lean_object* x_93; lean_object* x_94; +x_92 = lean_ctor_get(x_82, 0); +x_93 = lean_ctor_get(x_82, 1); +lean_inc(x_93); +lean_inc(x_92); +lean_dec(x_82); +x_94 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_94, 0, x_92); +lean_ctor_set(x_94, 1, x_93); +return x_94; +} +} +} +} +else +{ +lean_object* x_95; lean_object* x_96; +lean_dec(x_54); +lean_dec(x_1); +x_95 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg___closed__3; +x_96 = l_Lean_throwError___at___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_synthesizePendingAndNormalizeFunType___spec__2___rarg(x_95, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_19); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +return x_96; +} +} +} +else +{ +lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; +lean_dec(x_18); +lean_dec(x_13); +x_97 = lean_ctor_get(x_20, 0); +lean_inc(x_97); +lean_dec(x_20); +x_98 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_addNewArg(x_97, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_19); x_99 = lean_ctor_get(x_98, 1); lean_inc(x_99); lean_dec(x_98); x_100 = lean_apply_8(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_99); return x_100; } -else -{ -uint8_t x_101; -lean_dec(x_8); -lean_dec(x_7); -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_101 = !lean_is_exclusive(x_98); -if (x_101 == 0) -{ -return x_98; } else { -lean_object* x_102; lean_object* x_103; lean_object* x_104; -x_102 = lean_ctor_get(x_98, 0); -x_103 = lean_ctor_get(x_98, 1); -lean_inc(x_103); -lean_inc(x_102); -lean_dec(x_98); -x_104 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_104, 0, x_102); -lean_ctor_set(x_104, 1, x_103); -return x_104; -} -} -} -else -{ -uint8_t x_105; -lean_dec(x_95); -lean_dec(x_8); -lean_dec(x_7); -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_105 = !lean_is_exclusive(x_96); -if (x_105 == 0) -{ -return x_96; -} -else -{ -lean_object* x_106; lean_object* x_107; lean_object* x_108; -x_106 = lean_ctor_get(x_96, 0); -x_107 = lean_ctor_get(x_96, 1); -lean_inc(x_107); -lean_inc(x_106); -lean_dec(x_96); -x_108 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_108, 0, x_106); -lean_ctor_set(x_108, 1, x_107); -return x_108; -} -} -} -} -else -{ -lean_object* x_109; lean_object* x_110; -lean_dec(x_54); -lean_dec(x_1); -x_109 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_processExplictArg___closed__3; -x_110 = l_Lean_throwError___at___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_synthesizePendingAndNormalizeFunType___spec__2___rarg(x_109, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_19); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -return x_110; -} -} -} -else -{ -lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; -lean_dec(x_18); -lean_dec(x_13); -x_111 = lean_ctor_get(x_20, 0); -lean_inc(x_111); -lean_dec(x_20); -x_112 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_addNewArg(x_111, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_19); -x_113 = lean_ctor_get(x_112, 1); -lean_inc(x_113); -lean_dec(x_112); -x_114 = lean_apply_8(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_113); -return x_114; -} -} -else -{ -lean_object* x_115; lean_object* x_116; uint8_t x_117; -x_115 = lean_ctor_get(x_16, 1); -lean_inc(x_115); +lean_object* x_101; lean_object* x_102; uint8_t x_103; +x_101 = lean_ctor_get(x_16, 1); +lean_inc(x_101); lean_dec(x_16); -x_116 = lean_ctor_get(x_13, 3); -lean_inc(x_116); +x_102 = lean_ctor_get(x_13, 3); +lean_inc(x_102); lean_dec(x_13); -x_117 = l_List_isEmpty___rarg(x_116); -lean_dec(x_116); -if (x_117 == 0) +x_103 = l_List_isEmpty___rarg(x_102); +lean_dec(x_102); +if (x_103 == 0) { -lean_object* x_118; +lean_object* x_104; lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); @@ -12351,36 +12323,36 @@ lean_inc(x_5); lean_inc(x_4); lean_inc(x_3); lean_inc(x_2); -x_118 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_anyNamedArgDependsOnCurrent(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_115); -if (lean_obj_tag(x_118) == 0) +x_104 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_anyNamedArgDependsOnCurrent(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_101); +if (lean_obj_tag(x_104) == 0) { -lean_object* x_119; uint8_t x_120; -x_119 = lean_ctor_get(x_118, 0); -lean_inc(x_119); -x_120 = lean_unbox(x_119); -lean_dec(x_119); -if (x_120 == 0) +lean_object* x_105; uint8_t x_106; +x_105 = lean_ctor_get(x_104, 0); +lean_inc(x_105); +x_106 = lean_unbox(x_105); +lean_dec(x_105); +if (x_106 == 0) { -lean_object* x_121; lean_object* x_122; -x_121 = lean_ctor_get(x_118, 1); -lean_inc(x_121); -lean_dec(x_118); -x_122 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_addEtaArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_121); -return x_122; +lean_object* x_107; lean_object* x_108; +x_107 = lean_ctor_get(x_104, 1); +lean_inc(x_107); +lean_dec(x_104); +x_108 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_addEtaArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_107); +return x_108; } else { -lean_object* x_123; lean_object* x_124; -x_123 = lean_ctor_get(x_118, 1); -lean_inc(x_123); -lean_dec(x_118); -x_124 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_addImplicitArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_123); -return x_124; +lean_object* x_109; lean_object* x_110; +x_109 = lean_ctor_get(x_104, 1); +lean_inc(x_109); +lean_dec(x_104); +x_110 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_addImplicitArg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_109); +return x_110; } } else { -uint8_t x_125; +uint8_t x_111; lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); @@ -12389,47 +12361,47 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_125 = !lean_is_exclusive(x_118); -if (x_125 == 0) +x_111 = !lean_is_exclusive(x_104); +if (x_111 == 0) { -return x_118; +return x_104; } else { -lean_object* x_126; lean_object* x_127; lean_object* x_128; -x_126 = lean_ctor_get(x_118, 0); -x_127 = lean_ctor_get(x_118, 1); -lean_inc(x_127); -lean_inc(x_126); -lean_dec(x_118); -x_128 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_128, 0, x_126); -lean_ctor_set(x_128, 1, x_127); -return x_128; +lean_object* x_112; lean_object* x_113; lean_object* x_114; +x_112 = lean_ctor_get(x_104, 0); +x_113 = lean_ctor_get(x_104, 1); +lean_inc(x_113); +lean_inc(x_112); +lean_dec(x_104); +x_114 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_114, 0, x_112); +lean_ctor_set(x_114, 1, x_113); +return x_114; } } } else { -lean_object* x_129; +lean_object* x_115; lean_dec(x_1); -x_129 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_finalize(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_115); +x_115 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_finalize(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_101); lean_dec(x_2); -return x_129; +return x_115; } } } else { -lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; +lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_dec(x_13); -x_130 = lean_ctor_get(x_12, 1); -lean_inc(x_130); +x_116 = lean_ctor_get(x_12, 1); +lean_inc(x_116); lean_dec(x_12); -x_131 = lean_ctor_get(x_14, 0); -lean_inc(x_131); -x_132 = lean_ctor_get(x_14, 1); -lean_inc(x_132); +x_117 = lean_ctor_get(x_14, 0); +lean_inc(x_117); +x_118 = lean_ctor_get(x_14, 1); +lean_inc(x_118); lean_dec(x_14); lean_inc(x_8); lean_inc(x_7); @@ -12438,54 +12410,54 @@ lean_inc(x_5); lean_inc(x_4); lean_inc(x_3); lean_inc(x_2); -lean_inc(x_131); -x_133 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_propagateExpectedType(x_131, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_130); -if (lean_obj_tag(x_133) == 0) +lean_inc(x_117); +x_119 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_propagateExpectedType(x_117, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_116); +if (lean_obj_tag(x_119) == 0) { -lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; uint8_t x_140; -x_134 = lean_ctor_get(x_133, 1); -lean_inc(x_134); -lean_dec(x_133); -x_135 = lean_st_ref_get(x_8, x_134); -x_136 = lean_ctor_get(x_135, 1); -lean_inc(x_136); -lean_dec(x_135); -x_137 = lean_st_ref_take(x_2, x_136); -x_138 = lean_ctor_get(x_137, 0); -lean_inc(x_138); -x_139 = lean_ctor_get(x_137, 1); -lean_inc(x_139); -lean_dec(x_137); -x_140 = !lean_is_exclusive(x_138); -if (x_140 == 0) +lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; uint8_t x_126; +x_120 = lean_ctor_get(x_119, 1); +lean_inc(x_120); +lean_dec(x_119); +x_121 = lean_st_ref_get(x_8, x_120); +x_122 = lean_ctor_get(x_121, 1); +lean_inc(x_122); +lean_dec(x_121); +x_123 = lean_st_ref_take(x_2, x_122); +x_124 = lean_ctor_get(x_123, 0); +lean_inc(x_124); +x_125 = lean_ctor_get(x_123, 1); +lean_inc(x_125); +lean_dec(x_123); +x_126 = !lean_is_exclusive(x_124); +if (x_126 == 0) { -lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; -x_141 = lean_ctor_get(x_138, 2); -lean_dec(x_141); -lean_ctor_set(x_138, 2, x_132); -x_142 = lean_st_ref_set(x_2, x_138, x_139); -x_143 = lean_ctor_get(x_142, 1); -lean_inc(x_143); -lean_dec(x_142); +lean_object* x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; +x_127 = lean_ctor_get(x_124, 2); +lean_dec(x_127); +lean_ctor_set(x_124, 2, x_118); +x_128 = lean_st_ref_set(x_2, x_124, x_125); +x_129 = lean_ctor_get(x_128, 1); +lean_inc(x_129); +lean_dec(x_128); lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); lean_inc(x_3); -x_144 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_elabAndAddNewArg(x_131, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_143); -if (lean_obj_tag(x_144) == 0) +x_130 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_elabAndAddNewArg(x_117, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_129); +if (lean_obj_tag(x_130) == 0) { -lean_object* x_145; lean_object* x_146; -x_145 = lean_ctor_get(x_144, 1); -lean_inc(x_145); -lean_dec(x_144); -x_146 = lean_apply_8(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_145); -return x_146; +lean_object* x_131; lean_object* x_132; +x_131 = lean_ctor_get(x_130, 1); +lean_inc(x_131); +lean_dec(x_130); +x_132 = lean_apply_8(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_131); +return x_132; } else { -uint8_t x_147; +uint8_t x_133; lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); @@ -12494,143 +12466,143 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_147 = !lean_is_exclusive(x_144); -if (x_147 == 0) +x_133 = !lean_is_exclusive(x_130); +if (x_133 == 0) { -return x_144; +return x_130; } else { -lean_object* x_148; lean_object* x_149; lean_object* x_150; -x_148 = lean_ctor_get(x_144, 0); -x_149 = lean_ctor_get(x_144, 1); +lean_object* x_134; lean_object* x_135; lean_object* x_136; +x_134 = lean_ctor_get(x_130, 0); +x_135 = lean_ctor_get(x_130, 1); +lean_inc(x_135); +lean_inc(x_134); +lean_dec(x_130); +x_136 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_136, 0, x_134); +lean_ctor_set(x_136, 1, x_135); +return x_136; +} +} +} +else +{ +uint8_t x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; uint8_t x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; uint8_t x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; +x_137 = lean_ctor_get_uint8(x_124, sizeof(void*)*8); +x_138 = lean_ctor_get(x_124, 0); +x_139 = lean_ctor_get(x_124, 1); +x_140 = lean_ctor_get(x_124, 3); +x_141 = lean_ctor_get_uint8(x_124, sizeof(void*)*8 + 1); +x_142 = lean_ctor_get(x_124, 4); +x_143 = lean_ctor_get(x_124, 5); +x_144 = lean_ctor_get(x_124, 6); +x_145 = lean_ctor_get(x_124, 7); +x_146 = lean_ctor_get_uint8(x_124, sizeof(void*)*8 + 2); +lean_inc(x_145); +lean_inc(x_144); +lean_inc(x_143); +lean_inc(x_142); +lean_inc(x_140); +lean_inc(x_139); +lean_inc(x_138); +lean_dec(x_124); +x_147 = lean_alloc_ctor(0, 8, 3); +lean_ctor_set(x_147, 0, x_138); +lean_ctor_set(x_147, 1, x_139); +lean_ctor_set(x_147, 2, x_118); +lean_ctor_set(x_147, 3, x_140); +lean_ctor_set(x_147, 4, x_142); +lean_ctor_set(x_147, 5, x_143); +lean_ctor_set(x_147, 6, x_144); +lean_ctor_set(x_147, 7, x_145); +lean_ctor_set_uint8(x_147, sizeof(void*)*8, x_137); +lean_ctor_set_uint8(x_147, sizeof(void*)*8 + 1, x_141); +lean_ctor_set_uint8(x_147, sizeof(void*)*8 + 2, x_146); +x_148 = lean_st_ref_set(x_2, x_147, x_125); +x_149 = lean_ctor_get(x_148, 1); lean_inc(x_149); -lean_inc(x_148); -lean_dec(x_144); -x_150 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_150, 0, x_148); -lean_ctor_set(x_150, 1, x_149); -return x_150; +lean_dec(x_148); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +x_150 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_elabAndAddNewArg(x_117, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_149); +if (lean_obj_tag(x_150) == 0) +{ +lean_object* x_151; lean_object* x_152; +x_151 = lean_ctor_get(x_150, 1); +lean_inc(x_151); +lean_dec(x_150); +x_152 = lean_apply_8(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_151); +return x_152; +} +else +{ +lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; +lean_dec(x_8); +lean_dec(x_7); +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_153 = lean_ctor_get(x_150, 0); +lean_inc(x_153); +x_154 = lean_ctor_get(x_150, 1); +lean_inc(x_154); +if (lean_is_exclusive(x_150)) { + lean_ctor_release(x_150, 0); + lean_ctor_release(x_150, 1); + x_155 = x_150; +} else { + lean_dec_ref(x_150); + x_155 = lean_box(0); +} +if (lean_is_scalar(x_155)) { + x_156 = lean_alloc_ctor(1, 2, 0); +} else { + x_156 = x_155; +} +lean_ctor_set(x_156, 0, x_153); +lean_ctor_set(x_156, 1, x_154); +return x_156; } } } else { -uint8_t x_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; uint8_t x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; uint8_t x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; -x_151 = lean_ctor_get_uint8(x_138, sizeof(void*)*8); -x_152 = lean_ctor_get(x_138, 0); -x_153 = lean_ctor_get(x_138, 1); -x_154 = lean_ctor_get(x_138, 3); -x_155 = lean_ctor_get_uint8(x_138, sizeof(void*)*8 + 1); -x_156 = lean_ctor_get(x_138, 4); -x_157 = lean_ctor_get(x_138, 5); -x_158 = lean_ctor_get(x_138, 6); -x_159 = lean_ctor_get(x_138, 7); -x_160 = lean_ctor_get_uint8(x_138, sizeof(void*)*8 + 2); +uint8_t x_157; +lean_dec(x_118); +lean_dec(x_117); +lean_dec(x_8); +lean_dec(x_7); +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_157 = !lean_is_exclusive(x_119); +if (x_157 == 0) +{ +return x_119; +} +else +{ +lean_object* x_158; lean_object* x_159; lean_object* x_160; +x_158 = lean_ctor_get(x_119, 0); +x_159 = lean_ctor_get(x_119, 1); lean_inc(x_159); lean_inc(x_158); -lean_inc(x_157); -lean_inc(x_156); -lean_inc(x_154); -lean_inc(x_153); -lean_inc(x_152); -lean_dec(x_138); -x_161 = lean_alloc_ctor(0, 8, 3); -lean_ctor_set(x_161, 0, x_152); -lean_ctor_set(x_161, 1, x_153); -lean_ctor_set(x_161, 2, x_132); -lean_ctor_set(x_161, 3, x_154); -lean_ctor_set(x_161, 4, x_156); -lean_ctor_set(x_161, 5, x_157); -lean_ctor_set(x_161, 6, x_158); -lean_ctor_set(x_161, 7, x_159); -lean_ctor_set_uint8(x_161, sizeof(void*)*8, x_151); -lean_ctor_set_uint8(x_161, sizeof(void*)*8 + 1, x_155); -lean_ctor_set_uint8(x_161, sizeof(void*)*8 + 2, x_160); -x_162 = lean_st_ref_set(x_2, x_161, x_139); -x_163 = lean_ctor_get(x_162, 1); -lean_inc(x_163); -lean_dec(x_162); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -x_164 = l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_elabAndAddNewArg(x_131, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_163); -if (lean_obj_tag(x_164) == 0) -{ -lean_object* x_165; lean_object* x_166; -x_165 = lean_ctor_get(x_164, 1); -lean_inc(x_165); -lean_dec(x_164); -x_166 = lean_apply_8(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_165); -return x_166; -} -else -{ -lean_object* x_167; lean_object* x_168; lean_object* x_169; lean_object* x_170; -lean_dec(x_8); -lean_dec(x_7); -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_167 = lean_ctor_get(x_164, 0); -lean_inc(x_167); -x_168 = lean_ctor_get(x_164, 1); -lean_inc(x_168); -if (lean_is_exclusive(x_164)) { - lean_ctor_release(x_164, 0); - lean_ctor_release(x_164, 1); - x_169 = x_164; -} else { - lean_dec_ref(x_164); - x_169 = lean_box(0); -} -if (lean_is_scalar(x_169)) { - x_170 = lean_alloc_ctor(1, 2, 0); -} else { - x_170 = x_169; -} -lean_ctor_set(x_170, 0, x_167); -lean_ctor_set(x_170, 1, x_168); -return x_170; -} -} -} -else -{ -uint8_t x_171; -lean_dec(x_132); -lean_dec(x_131); -lean_dec(x_8); -lean_dec(x_7); -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_171 = !lean_is_exclusive(x_133); -if (x_171 == 0) -{ -return x_133; -} -else -{ -lean_object* x_172; lean_object* x_173; lean_object* x_174; -x_172 = lean_ctor_get(x_133, 0); -x_173 = lean_ctor_get(x_133, 1); -lean_inc(x_173); -lean_inc(x_172); -lean_dec(x_133); -x_174 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_174, 0, x_172); -lean_ctor_set(x_174, 1, x_173); -return x_174; +lean_dec(x_119); +x_160 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_160, 0, x_158); +lean_ctor_set(x_160, 1, x_159); +return x_160; } } } @@ -28261,35 +28233,30 @@ return x_686; } else { -lean_object* x_707; lean_object* x_708; lean_object* x_709; lean_object* x_710; uint8_t x_711; +lean_object* x_707; lean_object* x_708; lean_object* x_709; lean_object* x_710; lean_object* x_711; x_707 = lean_unsigned_to_nat(2u); x_708 = l_Lean_Syntax_getArg(x_1, x_707); lean_dec(x_1); x_709 = l_Lean_Syntax_getArgs(x_708); lean_dec(x_708); -x_710 = lean_array_get_size(x_709); -x_711 = lean_nat_dec_lt(x_378, x_710); -if (x_711 == 0) -{ -lean_object* x_712; lean_object* x_713; -lean_dec(x_710); +x_710 = l_Lean_Syntax_SepArray_getElems___rarg(x_709); lean_dec(x_709); -x_712 = l_Array_empty___closed__1; -x_713 = l_Lean_Elab_Term_elabExplicitUnivs(x_712, x_10, x_11, x_12, x_13, x_14, x_15, x_16); -if (lean_obj_tag(x_713) == 0) +x_711 = l_Lean_Elab_Term_elabExplicitUnivs(x_710, x_10, x_11, x_12, x_13, x_14, x_15, x_16); +lean_dec(x_710); +if (lean_obj_tag(x_711) == 0) { -lean_object* x_714; lean_object* x_715; lean_object* x_716; -x_714 = lean_ctor_get(x_713, 0); -lean_inc(x_714); -x_715 = lean_ctor_get(x_713, 1); -lean_inc(x_715); -lean_dec(x_713); -x_716 = l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppFnId(x_379, x_714, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_715); -return x_716; +lean_object* x_712; lean_object* x_713; lean_object* x_714; +x_712 = lean_ctor_get(x_711, 0); +lean_inc(x_712); +x_713 = lean_ctor_get(x_711, 1); +lean_inc(x_713); +lean_dec(x_711); +x_714 = l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppFnId(x_379, x_712, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_713); +return x_714; } else { -uint8_t x_717; +uint8_t x_715; lean_dec(x_379); lean_dec(x_15); lean_dec(x_14); @@ -28302,198 +28269,79 @@ lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); -x_717 = !lean_is_exclusive(x_713); -if (x_717 == 0) +x_715 = !lean_is_exclusive(x_711); +if (x_715 == 0) { -return x_713; +return x_711; } else { -lean_object* x_718; lean_object* x_719; lean_object* x_720; -x_718 = lean_ctor_get(x_713, 0); -x_719 = lean_ctor_get(x_713, 1); -lean_inc(x_719); -lean_inc(x_718); -lean_dec(x_713); -x_720 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_720, 0, x_718); -lean_ctor_set(x_720, 1, x_719); +lean_object* x_716; lean_object* x_717; lean_object* x_718; +x_716 = lean_ctor_get(x_711, 0); +x_717 = lean_ctor_get(x_711, 1); +lean_inc(x_717); +lean_inc(x_716); +lean_dec(x_711); +x_718 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_718, 0, x_716); +lean_ctor_set(x_718, 1, x_717); +return x_718; +} +} +} +} +} +else +{ +lean_object* x_719; lean_object* x_720; +x_719 = lean_box(0); +x_720 = l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppFnId(x_1, x_719, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16); return x_720; } } -} else { -uint8_t x_721; -x_721 = lean_nat_dec_le(x_710, x_710); -if (x_721 == 0) +lean_object* x_721; lean_object* x_722; lean_object* x_723; uint8_t x_724; +x_721 = lean_unsigned_to_nat(0u); +x_722 = l_Lean_Syntax_getArg(x_1, x_721); +x_723 = l_Lean_identKind___closed__2; +x_724 = l_Lean_Syntax_isOfKind(x_722, x_723); +if (x_724 == 0) { -lean_object* x_722; lean_object* x_723; -lean_dec(x_710); -lean_dec(x_709); -x_722 = l_Array_empty___closed__1; -x_723 = l_Lean_Elab_Term_elabExplicitUnivs(x_722, x_10, x_11, x_12, x_13, x_14, x_15, x_16); -if (lean_obj_tag(x_723) == 0) -{ -lean_object* x_724; lean_object* x_725; lean_object* x_726; -x_724 = lean_ctor_get(x_723, 0); -lean_inc(x_724); -x_725 = lean_ctor_get(x_723, 1); -lean_inc(x_725); -lean_dec(x_723); -x_726 = l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppFnId(x_379, x_724, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_725); -return x_726; -} -else -{ -uint8_t x_727; -lean_dec(x_379); -lean_dec(x_15); -lean_dec(x_14); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -x_727 = !lean_is_exclusive(x_723); -if (x_727 == 0) -{ -return x_723; -} -else -{ -lean_object* x_728; lean_object* x_729; lean_object* x_730; -x_728 = lean_ctor_get(x_723, 0); -x_729 = lean_ctor_get(x_723, 1); -lean_inc(x_729); -lean_inc(x_728); -lean_dec(x_723); -x_730 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_730, 0, x_728); -lean_ctor_set(x_730, 1, x_729); -return x_730; -} -} -} -else -{ -size_t x_731; size_t x_732; lean_object* x_733; lean_object* x_734; lean_object* x_735; lean_object* x_736; -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_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); -lean_dec(x_734); -x_736 = l_Lean_Elab_Term_elabExplicitUnivs(x_735, x_10, x_11, x_12, x_13, x_14, x_15, x_16); -lean_dec(x_735); -if (lean_obj_tag(x_736) == 0) -{ -lean_object* x_737; lean_object* x_738; lean_object* x_739; -x_737 = lean_ctor_get(x_736, 0); -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_App_0__Lean_Elab_Term_elabAppFnId(x_379, x_737, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_738); -return x_739; -} -else -{ -uint8_t x_740; -lean_dec(x_379); -lean_dec(x_15); -lean_dec(x_14); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_9); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -x_740 = !lean_is_exclusive(x_736); -if (x_740 == 0) -{ -return x_736; -} -else -{ -lean_object* x_741; lean_object* x_742; lean_object* x_743; -x_741 = lean_ctor_get(x_736, 0); -x_742 = lean_ctor_get(x_736, 1); -lean_inc(x_742); -lean_inc(x_741); -lean_dec(x_736); -x_743 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_743, 0, x_741); -lean_ctor_set(x_743, 1, x_742); -return x_743; -} -} -} -} -} -} -} -else -{ -lean_object* x_744; lean_object* x_745; -x_744 = lean_box(0); -x_745 = l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppFnId(x_1, x_744, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16); -return x_745; -} -} -else -{ -lean_object* x_746; lean_object* x_747; lean_object* x_748; uint8_t x_749; -x_746 = lean_unsigned_to_nat(0u); -x_747 = l_Lean_Syntax_getArg(x_1, x_746); -x_748 = l_Lean_identKind___closed__2; -x_749 = l_Lean_Syntax_isOfKind(x_747, x_748); -if (x_749 == 0) -{ -uint8_t x_750; uint8_t x_751; -x_750 = l_List_isEmpty___rarg(x_2); +uint8_t x_725; uint8_t x_726; +x_725 = l_List_isEmpty___rarg(x_2); if (x_8 == 0) { -uint8_t x_1074; -x_1074 = 1; -x_751 = x_1074; -goto block_1073; +uint8_t x_1049; +x_1049 = 1; +x_726 = x_1049; +goto block_1048; } else { -uint8_t x_1075; -x_1075 = 0; -x_751 = x_1075; -goto block_1073; +uint8_t x_1050; +x_1050 = 0; +x_726 = x_1050; +goto block_1048; } -block_1073: +block_1048: { -if (x_750 == 0) +if (x_725 == 0) { -lean_object* x_752; lean_object* x_753; lean_object* x_754; lean_object* x_755; lean_object* x_756; lean_object* x_757; lean_object* x_758; lean_object* x_789; lean_object* x_790; lean_object* x_812; -x_752 = lean_box(0); -x_753 = l_Lean_Elab_Term_saveAllState___rarg(x_11, x_12, x_13, x_14, x_15, x_16); -x_754 = lean_ctor_get(x_753, 0); -lean_inc(x_754); -x_755 = lean_ctor_get(x_753, 1); -lean_inc(x_755); -if (lean_is_exclusive(x_753)) { - lean_ctor_release(x_753, 0); - lean_ctor_release(x_753, 1); - x_756 = x_753; +lean_object* x_727; lean_object* x_728; lean_object* x_729; lean_object* x_730; lean_object* x_731; lean_object* x_732; lean_object* x_733; lean_object* x_764; lean_object* x_765; lean_object* x_787; +x_727 = lean_box(0); +x_728 = l_Lean_Elab_Term_saveAllState___rarg(x_11, x_12, x_13, x_14, x_15, x_16); +x_729 = lean_ctor_get(x_728, 0); +lean_inc(x_729); +x_730 = lean_ctor_get(x_728, 1); +lean_inc(x_730); +if (lean_is_exclusive(x_728)) { + lean_ctor_release(x_728, 0); + lean_ctor_release(x_728, 1); + x_731 = x_728; } else { - lean_dec_ref(x_753); - x_756 = lean_box(0); + lean_dec_ref(x_728); + x_731 = lean_box(0); } lean_inc(x_15); lean_inc(x_14); @@ -28501,15 +28349,15 @@ lean_inc(x_13); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); -x_812 = l_Lean_Elab_Term_elabTerm(x_1, x_752, x_751, x_10, x_11, x_12, x_13, x_14, x_15, x_755); -if (lean_obj_tag(x_812) == 0) +x_787 = l_Lean_Elab_Term_elabTerm(x_1, x_727, x_726, x_10, x_11, x_12, x_13, x_14, x_15, x_730); +if (lean_obj_tag(x_787) == 0) { -lean_object* x_813; lean_object* x_814; lean_object* x_815; -x_813 = lean_ctor_get(x_812, 0); -lean_inc(x_813); -x_814 = lean_ctor_get(x_812, 1); -lean_inc(x_814); -lean_dec(x_812); +lean_object* x_788; lean_object* x_789; lean_object* x_790; +x_788 = lean_ctor_get(x_787, 0); +lean_inc(x_788); +x_789 = lean_ctor_get(x_787, 1); +lean_inc(x_789); +lean_dec(x_787); lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); @@ -28517,355 +28365,727 @@ lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); lean_inc(x_5); -x_815 = l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppLVals(x_813, x_2, x_3, x_4, x_5, x_6, x_7, x_10, x_11, x_12, x_13, x_14, x_15, x_814); -if (lean_obj_tag(x_815) == 0) +x_790 = l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppLVals(x_788, x_2, x_3, x_4, x_5, x_6, x_7, x_10, x_11, x_12, x_13, x_14, x_15, x_789); +if (lean_obj_tag(x_790) == 0) { if (x_8 == 0) { -lean_object* x_816; lean_object* x_817; -lean_dec(x_756); +lean_object* x_791; lean_object* x_792; +lean_dec(x_731); lean_dec(x_5); -x_816 = lean_ctor_get(x_815, 0); -lean_inc(x_816); -x_817 = lean_ctor_get(x_815, 1); -lean_inc(x_817); -lean_dec(x_815); -x_789 = x_816; -x_790 = x_817; -goto block_811; +x_791 = lean_ctor_get(x_790, 0); +lean_inc(x_791); +x_792 = lean_ctor_get(x_790, 1); +lean_inc(x_792); +lean_dec(x_790); +x_764 = x_791; +x_765 = x_792; +goto block_786; } else { +lean_object* x_793; lean_object* x_794; lean_object* x_795; +x_793 = lean_ctor_get(x_790, 0); +lean_inc(x_793); +x_794 = lean_ctor_get(x_790, 1); +lean_inc(x_794); +lean_dec(x_790); +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_795 = l_Lean_Elab_Term_ensureHasType(x_5, x_793, x_727, x_10, x_11, x_12, x_13, x_14, x_15, x_794); +if (lean_obj_tag(x_795) == 0) +{ +lean_object* x_796; lean_object* x_797; +lean_dec(x_731); +x_796 = lean_ctor_get(x_795, 0); +lean_inc(x_796); +x_797 = lean_ctor_get(x_795, 1); +lean_inc(x_797); +lean_dec(x_795); +x_764 = x_796; +x_765 = x_797; +goto block_786; +} +else +{ +lean_object* x_798; lean_object* x_799; +x_798 = lean_ctor_get(x_795, 0); +lean_inc(x_798); +x_799 = lean_ctor_get(x_795, 1); +lean_inc(x_799); +lean_dec(x_795); +x_732 = x_798; +x_733 = x_799; +goto block_763; +} +} +} +else +{ +lean_object* x_800; lean_object* x_801; +lean_dec(x_5); +x_800 = lean_ctor_get(x_790, 0); +lean_inc(x_800); +x_801 = lean_ctor_get(x_790, 1); +lean_inc(x_801); +lean_dec(x_790); +x_732 = x_800; +x_733 = x_801; +goto block_763; +} +} +else +{ +lean_object* x_802; lean_object* x_803; +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_802 = lean_ctor_get(x_787, 0); +lean_inc(x_802); +x_803 = lean_ctor_get(x_787, 1); +lean_inc(x_803); +lean_dec(x_787); +x_732 = x_802; +x_733 = x_803; +goto block_763; +} +block_763: +{ +if (lean_obj_tag(x_732) == 0) +{ +lean_object* x_734; uint8_t x_735; +lean_dec(x_731); +x_734 = l_Lean_Elab_Term_saveAllState___rarg(x_11, x_12, x_13, x_14, x_15, x_733); +x_735 = !lean_is_exclusive(x_734); +if (x_735 == 0) +{ +lean_object* x_736; lean_object* x_737; lean_object* x_738; uint8_t x_739; +x_736 = lean_ctor_get(x_734, 0); +x_737 = lean_ctor_get(x_734, 1); +x_738 = l_Lean_Elab_Term_SavedState_restore(x_729, x_10, x_11, x_12, x_13, x_14, x_15, x_737); +lean_dec(x_15); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +x_739 = !lean_is_exclusive(x_738); +if (x_739 == 0) +{ +lean_object* x_740; lean_object* x_741; lean_object* x_742; +x_740 = lean_ctor_get(x_738, 1); +x_741 = lean_ctor_get(x_738, 0); +lean_dec(x_741); +lean_ctor_set_tag(x_738, 1); +lean_ctor_set(x_738, 1, x_736); +lean_ctor_set(x_738, 0, x_732); +x_742 = lean_array_push(x_9, x_738); +lean_ctor_set(x_734, 1, x_740); +lean_ctor_set(x_734, 0, x_742); +return x_734; +} +else +{ +lean_object* x_743; lean_object* x_744; lean_object* x_745; +x_743 = lean_ctor_get(x_738, 1); +lean_inc(x_743); +lean_dec(x_738); +x_744 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_744, 0, x_732); +lean_ctor_set(x_744, 1, x_736); +x_745 = lean_array_push(x_9, x_744); +lean_ctor_set(x_734, 1, x_743); +lean_ctor_set(x_734, 0, x_745); +return x_734; +} +} +else +{ +lean_object* x_746; lean_object* x_747; lean_object* x_748; lean_object* x_749; lean_object* x_750; lean_object* x_751; lean_object* x_752; lean_object* x_753; +x_746 = lean_ctor_get(x_734, 0); +x_747 = lean_ctor_get(x_734, 1); +lean_inc(x_747); +lean_inc(x_746); +lean_dec(x_734); +x_748 = l_Lean_Elab_Term_SavedState_restore(x_729, x_10, x_11, x_12, x_13, x_14, x_15, x_747); +lean_dec(x_15); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +x_749 = lean_ctor_get(x_748, 1); +lean_inc(x_749); +if (lean_is_exclusive(x_748)) { + lean_ctor_release(x_748, 0); + lean_ctor_release(x_748, 1); + x_750 = x_748; +} else { + lean_dec_ref(x_748); + x_750 = lean_box(0); +} +if (lean_is_scalar(x_750)) { + x_751 = lean_alloc_ctor(1, 2, 0); +} else { + x_751 = x_750; + lean_ctor_set_tag(x_751, 1); +} +lean_ctor_set(x_751, 0, x_732); +lean_ctor_set(x_751, 1, x_746); +x_752 = lean_array_push(x_9, x_751); +x_753 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_753, 0, x_752); +lean_ctor_set(x_753, 1, x_749); +return x_753; +} +} +else +{ +lean_object* x_754; lean_object* x_755; uint8_t x_756; +lean_dec(x_9); +x_754 = lean_ctor_get(x_732, 0); +lean_inc(x_754); +x_755 = l_Lean_Elab_postponeExceptionId; +x_756 = lean_nat_dec_eq(x_754, x_755); +lean_dec(x_754); +if (x_756 == 0) +{ +lean_object* x_757; +lean_dec(x_729); +lean_dec(x_15); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +if (lean_is_scalar(x_731)) { + x_757 = lean_alloc_ctor(1, 2, 0); +} else { + x_757 = x_731; + lean_ctor_set_tag(x_757, 1); +} +lean_ctor_set(x_757, 0, x_732); +lean_ctor_set(x_757, 1, x_733); +return x_757; +} +else +{ +lean_object* x_758; uint8_t x_759; +lean_dec(x_731); +x_758 = l_Lean_Elab_Term_SavedState_restore(x_729, x_10, x_11, x_12, x_13, x_14, x_15, x_733); +lean_dec(x_15); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +x_759 = !lean_is_exclusive(x_758); +if (x_759 == 0) +{ +lean_object* x_760; +x_760 = lean_ctor_get(x_758, 0); +lean_dec(x_760); +lean_ctor_set_tag(x_758, 1); +lean_ctor_set(x_758, 0, x_732); +return x_758; +} +else +{ +lean_object* x_761; lean_object* x_762; +x_761 = lean_ctor_get(x_758, 1); +lean_inc(x_761); +lean_dec(x_758); +x_762 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_762, 0, x_732); +lean_ctor_set(x_762, 1, x_761); +return x_762; +} +} +} +} +block_786: +{ +lean_object* x_766; uint8_t x_767; +x_766 = l_Lean_Elab_Term_saveAllState___rarg(x_11, x_12, x_13, x_14, x_15, x_765); +x_767 = !lean_is_exclusive(x_766); +if (x_767 == 0) +{ +lean_object* x_768; lean_object* x_769; lean_object* x_770; uint8_t x_771; +x_768 = lean_ctor_get(x_766, 0); +x_769 = lean_ctor_get(x_766, 1); +x_770 = l_Lean_Elab_Term_SavedState_restore(x_729, x_10, x_11, x_12, x_13, x_14, x_15, x_769); +lean_dec(x_15); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +x_771 = !lean_is_exclusive(x_770); +if (x_771 == 0) +{ +lean_object* x_772; lean_object* x_773; lean_object* x_774; +x_772 = lean_ctor_get(x_770, 1); +x_773 = lean_ctor_get(x_770, 0); +lean_dec(x_773); +lean_ctor_set(x_770, 1, x_768); +lean_ctor_set(x_770, 0, x_764); +x_774 = lean_array_push(x_9, x_770); +lean_ctor_set(x_766, 1, x_772); +lean_ctor_set(x_766, 0, x_774); +return x_766; +} +else +{ +lean_object* x_775; lean_object* x_776; lean_object* x_777; +x_775 = lean_ctor_get(x_770, 1); +lean_inc(x_775); +lean_dec(x_770); +x_776 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_776, 0, x_764); +lean_ctor_set(x_776, 1, x_768); +x_777 = lean_array_push(x_9, x_776); +lean_ctor_set(x_766, 1, x_775); +lean_ctor_set(x_766, 0, x_777); +return x_766; +} +} +else +{ +lean_object* x_778; lean_object* x_779; lean_object* x_780; lean_object* x_781; lean_object* x_782; lean_object* x_783; lean_object* x_784; lean_object* x_785; +x_778 = lean_ctor_get(x_766, 0); +x_779 = lean_ctor_get(x_766, 1); +lean_inc(x_779); +lean_inc(x_778); +lean_dec(x_766); +x_780 = l_Lean_Elab_Term_SavedState_restore(x_729, x_10, x_11, x_12, x_13, x_14, x_15, x_779); +lean_dec(x_15); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +x_781 = lean_ctor_get(x_780, 1); +lean_inc(x_781); +if (lean_is_exclusive(x_780)) { + lean_ctor_release(x_780, 0); + lean_ctor_release(x_780, 1); + x_782 = x_780; +} else { + lean_dec_ref(x_780); + x_782 = lean_box(0); +} +if (lean_is_scalar(x_782)) { + x_783 = lean_alloc_ctor(0, 2, 0); +} else { + x_783 = x_782; +} +lean_ctor_set(x_783, 0, x_764); +lean_ctor_set(x_783, 1, x_778); +x_784 = lean_array_push(x_9, x_783); +x_785 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_785, 0, x_784); +lean_ctor_set(x_785, 1, x_781); +return x_785; +} +} +} +else +{ +uint8_t x_804; +x_804 = l_Array_isEmpty___rarg(x_3); +if (x_804 == 0) +{ +lean_object* x_805; lean_object* x_806; lean_object* x_807; lean_object* x_808; lean_object* x_809; lean_object* x_810; lean_object* x_811; lean_object* x_842; lean_object* x_843; lean_object* x_865; +x_805 = lean_box(0); +x_806 = l_Lean_Elab_Term_saveAllState___rarg(x_11, x_12, x_13, x_14, x_15, x_16); +x_807 = lean_ctor_get(x_806, 0); +lean_inc(x_807); +x_808 = lean_ctor_get(x_806, 1); +lean_inc(x_808); +if (lean_is_exclusive(x_806)) { + lean_ctor_release(x_806, 0); + lean_ctor_release(x_806, 1); + x_809 = x_806; +} else { + lean_dec_ref(x_806); + x_809 = lean_box(0); +} +lean_inc(x_15); +lean_inc(x_14); +lean_inc(x_13); +lean_inc(x_12); +lean_inc(x_11); +lean_inc(x_10); +x_865 = l_Lean_Elab_Term_elabTerm(x_1, x_805, x_726, x_10, x_11, x_12, x_13, x_14, x_15, x_808); +if (lean_obj_tag(x_865) == 0) +{ +lean_object* x_866; lean_object* x_867; lean_object* x_868; +x_866 = lean_ctor_get(x_865, 0); +lean_inc(x_866); +x_867 = lean_ctor_get(x_865, 1); +lean_inc(x_867); +lean_dec(x_865); +lean_inc(x_15); +lean_inc(x_14); +lean_inc(x_13); +lean_inc(x_12); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_5); +x_868 = l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppLVals(x_866, x_2, x_3, x_4, x_5, x_6, x_7, x_10, x_11, x_12, x_13, x_14, x_15, x_867); +if (lean_obj_tag(x_868) == 0) +{ +if (x_8 == 0) +{ +lean_object* x_869; lean_object* x_870; +lean_dec(x_809); +lean_dec(x_5); +x_869 = lean_ctor_get(x_868, 0); +lean_inc(x_869); +x_870 = lean_ctor_get(x_868, 1); +lean_inc(x_870); +lean_dec(x_868); +x_842 = x_869; +x_843 = x_870; +goto block_864; +} +else +{ +lean_object* x_871; lean_object* x_872; lean_object* x_873; +x_871 = lean_ctor_get(x_868, 0); +lean_inc(x_871); +x_872 = lean_ctor_get(x_868, 1); +lean_inc(x_872); +lean_dec(x_868); +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_873 = l_Lean_Elab_Term_ensureHasType(x_5, x_871, x_805, x_10, x_11, x_12, x_13, x_14, x_15, x_872); +if (lean_obj_tag(x_873) == 0) +{ +lean_object* x_874; lean_object* x_875; +lean_dec(x_809); +x_874 = lean_ctor_get(x_873, 0); +lean_inc(x_874); +x_875 = lean_ctor_get(x_873, 1); +lean_inc(x_875); +lean_dec(x_873); +x_842 = x_874; +x_843 = x_875; +goto block_864; +} +else +{ +lean_object* x_876; lean_object* x_877; +x_876 = lean_ctor_get(x_873, 0); +lean_inc(x_876); +x_877 = lean_ctor_get(x_873, 1); +lean_inc(x_877); +lean_dec(x_873); +x_810 = x_876; +x_811 = x_877; +goto block_841; +} +} +} +else +{ +lean_object* x_878; lean_object* x_879; +lean_dec(x_5); +x_878 = lean_ctor_get(x_868, 0); +lean_inc(x_878); +x_879 = lean_ctor_get(x_868, 1); +lean_inc(x_879); +lean_dec(x_868); +x_810 = x_878; +x_811 = x_879; +goto block_841; +} +} +else +{ +lean_object* x_880; lean_object* x_881; +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_880 = lean_ctor_get(x_865, 0); +lean_inc(x_880); +x_881 = lean_ctor_get(x_865, 1); +lean_inc(x_881); +lean_dec(x_865); +x_810 = x_880; +x_811 = x_881; +goto block_841; +} +block_841: +{ +if (lean_obj_tag(x_810) == 0) +{ +lean_object* x_812; uint8_t x_813; +lean_dec(x_809); +x_812 = l_Lean_Elab_Term_saveAllState___rarg(x_11, x_12, x_13, x_14, x_15, x_811); +x_813 = !lean_is_exclusive(x_812); +if (x_813 == 0) +{ +lean_object* x_814; lean_object* x_815; lean_object* x_816; uint8_t x_817; +x_814 = lean_ctor_get(x_812, 0); +x_815 = lean_ctor_get(x_812, 1); +x_816 = l_Lean_Elab_Term_SavedState_restore(x_807, x_10, x_11, x_12, x_13, x_14, x_15, x_815); +lean_dec(x_15); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +x_817 = !lean_is_exclusive(x_816); +if (x_817 == 0) +{ lean_object* x_818; lean_object* x_819; lean_object* x_820; -x_818 = lean_ctor_get(x_815, 0); -lean_inc(x_818); -x_819 = lean_ctor_get(x_815, 1); -lean_inc(x_819); -lean_dec(x_815); -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_820 = l_Lean_Elab_Term_ensureHasType(x_5, x_818, x_752, x_10, x_11, x_12, x_13, x_14, x_15, x_819); -if (lean_obj_tag(x_820) == 0) +x_818 = lean_ctor_get(x_816, 1); +x_819 = lean_ctor_get(x_816, 0); +lean_dec(x_819); +lean_ctor_set_tag(x_816, 1); +lean_ctor_set(x_816, 1, x_814); +lean_ctor_set(x_816, 0, x_810); +x_820 = lean_array_push(x_9, x_816); +lean_ctor_set(x_812, 1, x_818); +lean_ctor_set(x_812, 0, x_820); +return x_812; +} +else { -lean_object* x_821; lean_object* x_822; -lean_dec(x_756); -x_821 = lean_ctor_get(x_820, 0); +lean_object* x_821; lean_object* x_822; lean_object* x_823; +x_821 = lean_ctor_get(x_816, 1); lean_inc(x_821); -x_822 = lean_ctor_get(x_820, 1); -lean_inc(x_822); -lean_dec(x_820); -x_789 = x_821; -x_790 = x_822; -goto block_811; -} -else -{ -lean_object* x_823; lean_object* x_824; -x_823 = lean_ctor_get(x_820, 0); -lean_inc(x_823); -x_824 = lean_ctor_get(x_820, 1); -lean_inc(x_824); -lean_dec(x_820); -x_757 = x_823; -x_758 = x_824; -goto block_788; -} +lean_dec(x_816); +x_822 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_822, 0, x_810); +lean_ctor_set(x_822, 1, x_814); +x_823 = lean_array_push(x_9, x_822); +lean_ctor_set(x_812, 1, x_821); +lean_ctor_set(x_812, 0, x_823); +return x_812; } } else { -lean_object* x_825; lean_object* x_826; -lean_dec(x_5); -x_825 = lean_ctor_get(x_815, 0); +lean_object* x_824; lean_object* x_825; lean_object* x_826; lean_object* x_827; lean_object* x_828; lean_object* x_829; lean_object* x_830; lean_object* x_831; +x_824 = lean_ctor_get(x_812, 0); +x_825 = lean_ctor_get(x_812, 1); lean_inc(x_825); -x_826 = lean_ctor_get(x_815, 1); -lean_inc(x_826); -lean_dec(x_815); -x_757 = x_825; -x_758 = x_826; -goto block_788; -} -} -else -{ -lean_object* x_827; lean_object* x_828; -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -x_827 = lean_ctor_get(x_812, 0); -lean_inc(x_827); -x_828 = lean_ctor_get(x_812, 1); -lean_inc(x_828); +lean_inc(x_824); lean_dec(x_812); -x_757 = x_827; -x_758 = x_828; -goto block_788; -} -block_788: -{ -if (lean_obj_tag(x_757) == 0) -{ -lean_object* x_759; uint8_t x_760; -lean_dec(x_756); -x_759 = l_Lean_Elab_Term_saveAllState___rarg(x_11, x_12, x_13, x_14, x_15, x_758); -x_760 = !lean_is_exclusive(x_759); -if (x_760 == 0) -{ -lean_object* x_761; lean_object* x_762; lean_object* x_763; uint8_t x_764; -x_761 = lean_ctor_get(x_759, 0); -x_762 = lean_ctor_get(x_759, 1); -x_763 = l_Lean_Elab_Term_SavedState_restore(x_754, x_10, x_11, x_12, x_13, x_14, x_15, x_762); +x_826 = l_Lean_Elab_Term_SavedState_restore(x_807, x_10, x_11, x_12, x_13, x_14, x_15, x_825); lean_dec(x_15); lean_dec(x_14); lean_dec(x_13); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); -x_764 = !lean_is_exclusive(x_763); -if (x_764 == 0) -{ -lean_object* x_765; lean_object* x_766; lean_object* x_767; -x_765 = lean_ctor_get(x_763, 1); -x_766 = lean_ctor_get(x_763, 0); -lean_dec(x_766); -lean_ctor_set_tag(x_763, 1); -lean_ctor_set(x_763, 1, x_761); -lean_ctor_set(x_763, 0, x_757); -x_767 = lean_array_push(x_9, x_763); -lean_ctor_set(x_759, 1, x_765); -lean_ctor_set(x_759, 0, x_767); -return x_759; -} -else -{ -lean_object* x_768; lean_object* x_769; lean_object* x_770; -x_768 = lean_ctor_get(x_763, 1); -lean_inc(x_768); -lean_dec(x_763); -x_769 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_769, 0, x_757); -lean_ctor_set(x_769, 1, x_761); -x_770 = lean_array_push(x_9, x_769); -lean_ctor_set(x_759, 1, x_768); -lean_ctor_set(x_759, 0, x_770); -return x_759; -} -} -else -{ -lean_object* x_771; lean_object* x_772; lean_object* x_773; lean_object* x_774; lean_object* x_775; lean_object* x_776; lean_object* x_777; lean_object* x_778; -x_771 = lean_ctor_get(x_759, 0); -x_772 = lean_ctor_get(x_759, 1); -lean_inc(x_772); -lean_inc(x_771); -lean_dec(x_759); -x_773 = l_Lean_Elab_Term_SavedState_restore(x_754, x_10, x_11, x_12, x_13, x_14, x_15, x_772); -lean_dec(x_15); -lean_dec(x_14); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -x_774 = lean_ctor_get(x_773, 1); -lean_inc(x_774); -if (lean_is_exclusive(x_773)) { - lean_ctor_release(x_773, 0); - lean_ctor_release(x_773, 1); - x_775 = x_773; +x_827 = lean_ctor_get(x_826, 1); +lean_inc(x_827); +if (lean_is_exclusive(x_826)) { + lean_ctor_release(x_826, 0); + lean_ctor_release(x_826, 1); + x_828 = x_826; } else { - lean_dec_ref(x_773); - x_775 = lean_box(0); + lean_dec_ref(x_826); + x_828 = lean_box(0); } -if (lean_is_scalar(x_775)) { - x_776 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_828)) { + x_829 = lean_alloc_ctor(1, 2, 0); } else { - x_776 = x_775; - lean_ctor_set_tag(x_776, 1); + x_829 = x_828; + lean_ctor_set_tag(x_829, 1); } -lean_ctor_set(x_776, 0, x_757); -lean_ctor_set(x_776, 1, x_771); -x_777 = lean_array_push(x_9, x_776); -x_778 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_778, 0, x_777); -lean_ctor_set(x_778, 1, x_774); -return x_778; +lean_ctor_set(x_829, 0, x_810); +lean_ctor_set(x_829, 1, x_824); +x_830 = lean_array_push(x_9, x_829); +x_831 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_831, 0, x_830); +lean_ctor_set(x_831, 1, x_827); +return x_831; } } else { -lean_object* x_779; lean_object* x_780; uint8_t x_781; +lean_object* x_832; lean_object* x_833; uint8_t x_834; lean_dec(x_9); -x_779 = lean_ctor_get(x_757, 0); -lean_inc(x_779); -x_780 = l_Lean_Elab_postponeExceptionId; -x_781 = lean_nat_dec_eq(x_779, x_780); -lean_dec(x_779); -if (x_781 == 0) -{ -lean_object* x_782; -lean_dec(x_754); -lean_dec(x_15); -lean_dec(x_14); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -if (lean_is_scalar(x_756)) { - x_782 = lean_alloc_ctor(1, 2, 0); -} else { - x_782 = x_756; - lean_ctor_set_tag(x_782, 1); -} -lean_ctor_set(x_782, 0, x_757); -lean_ctor_set(x_782, 1, x_758); -return x_782; -} -else -{ -lean_object* x_783; uint8_t x_784; -lean_dec(x_756); -x_783 = l_Lean_Elab_Term_SavedState_restore(x_754, x_10, x_11, x_12, x_13, x_14, x_15, x_758); -lean_dec(x_15); -lean_dec(x_14); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -x_784 = !lean_is_exclusive(x_783); -if (x_784 == 0) -{ -lean_object* x_785; -x_785 = lean_ctor_get(x_783, 0); -lean_dec(x_785); -lean_ctor_set_tag(x_783, 1); -lean_ctor_set(x_783, 0, x_757); -return x_783; -} -else -{ -lean_object* x_786; lean_object* x_787; -x_786 = lean_ctor_get(x_783, 1); -lean_inc(x_786); -lean_dec(x_783); -x_787 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_787, 0, x_757); -lean_ctor_set(x_787, 1, x_786); -return x_787; -} -} -} -} -block_811: -{ -lean_object* x_791; uint8_t x_792; -x_791 = l_Lean_Elab_Term_saveAllState___rarg(x_11, x_12, x_13, x_14, x_15, x_790); -x_792 = !lean_is_exclusive(x_791); -if (x_792 == 0) -{ -lean_object* x_793; lean_object* x_794; lean_object* x_795; uint8_t x_796; -x_793 = lean_ctor_get(x_791, 0); -x_794 = lean_ctor_get(x_791, 1); -x_795 = l_Lean_Elab_Term_SavedState_restore(x_754, x_10, x_11, x_12, x_13, x_14, x_15, x_794); -lean_dec(x_15); -lean_dec(x_14); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -x_796 = !lean_is_exclusive(x_795); -if (x_796 == 0) -{ -lean_object* x_797; lean_object* x_798; lean_object* x_799; -x_797 = lean_ctor_get(x_795, 1); -x_798 = lean_ctor_get(x_795, 0); -lean_dec(x_798); -lean_ctor_set(x_795, 1, x_793); -lean_ctor_set(x_795, 0, x_789); -x_799 = lean_array_push(x_9, x_795); -lean_ctor_set(x_791, 1, x_797); -lean_ctor_set(x_791, 0, x_799); -return x_791; -} -else -{ -lean_object* x_800; lean_object* x_801; lean_object* x_802; -x_800 = lean_ctor_get(x_795, 1); -lean_inc(x_800); -lean_dec(x_795); -x_801 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_801, 0, x_789); -lean_ctor_set(x_801, 1, x_793); -x_802 = lean_array_push(x_9, x_801); -lean_ctor_set(x_791, 1, x_800); -lean_ctor_set(x_791, 0, x_802); -return x_791; -} -} -else -{ -lean_object* x_803; lean_object* x_804; lean_object* x_805; lean_object* x_806; lean_object* x_807; lean_object* x_808; lean_object* x_809; lean_object* x_810; -x_803 = lean_ctor_get(x_791, 0); -x_804 = lean_ctor_get(x_791, 1); -lean_inc(x_804); -lean_inc(x_803); -lean_dec(x_791); -x_805 = l_Lean_Elab_Term_SavedState_restore(x_754, x_10, x_11, x_12, x_13, x_14, x_15, x_804); -lean_dec(x_15); -lean_dec(x_14); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -x_806 = lean_ctor_get(x_805, 1); -lean_inc(x_806); -if (lean_is_exclusive(x_805)) { - lean_ctor_release(x_805, 0); - lean_ctor_release(x_805, 1); - x_807 = x_805; -} else { - lean_dec_ref(x_805); - x_807 = lean_box(0); -} -if (lean_is_scalar(x_807)) { - x_808 = lean_alloc_ctor(0, 2, 0); -} else { - x_808 = x_807; -} -lean_ctor_set(x_808, 0, x_789); -lean_ctor_set(x_808, 1, x_803); -x_809 = lean_array_push(x_9, x_808); -x_810 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_810, 0, x_809); -lean_ctor_set(x_810, 1, x_806); -return x_810; -} -} -} -else -{ -uint8_t x_829; -x_829 = l_Array_isEmpty___rarg(x_3); -if (x_829 == 0) -{ -lean_object* x_830; lean_object* x_831; lean_object* x_832; lean_object* x_833; lean_object* x_834; lean_object* x_835; lean_object* x_836; lean_object* x_867; lean_object* x_868; lean_object* x_890; -x_830 = lean_box(0); -x_831 = l_Lean_Elab_Term_saveAllState___rarg(x_11, x_12, x_13, x_14, x_15, x_16); -x_832 = lean_ctor_get(x_831, 0); +x_832 = lean_ctor_get(x_810, 0); lean_inc(x_832); -x_833 = lean_ctor_get(x_831, 1); -lean_inc(x_833); -if (lean_is_exclusive(x_831)) { - lean_ctor_release(x_831, 0); - lean_ctor_release(x_831, 1); - x_834 = x_831; +x_833 = l_Lean_Elab_postponeExceptionId; +x_834 = lean_nat_dec_eq(x_832, x_833); +lean_dec(x_832); +if (x_834 == 0) +{ +lean_object* x_835; +lean_dec(x_807); +lean_dec(x_15); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +if (lean_is_scalar(x_809)) { + x_835 = lean_alloc_ctor(1, 2, 0); } else { - lean_dec_ref(x_831); - x_834 = lean_box(0); + x_835 = x_809; + lean_ctor_set_tag(x_835, 1); +} +lean_ctor_set(x_835, 0, x_810); +lean_ctor_set(x_835, 1, x_811); +return x_835; +} +else +{ +lean_object* x_836; uint8_t x_837; +lean_dec(x_809); +x_836 = l_Lean_Elab_Term_SavedState_restore(x_807, x_10, x_11, x_12, x_13, x_14, x_15, x_811); +lean_dec(x_15); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +x_837 = !lean_is_exclusive(x_836); +if (x_837 == 0) +{ +lean_object* x_838; +x_838 = lean_ctor_get(x_836, 0); +lean_dec(x_838); +lean_ctor_set_tag(x_836, 1); +lean_ctor_set(x_836, 0, x_810); +return x_836; +} +else +{ +lean_object* x_839; lean_object* x_840; +x_839 = lean_ctor_get(x_836, 1); +lean_inc(x_839); +lean_dec(x_836); +x_840 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_840, 0, x_810); +lean_ctor_set(x_840, 1, x_839); +return x_840; +} +} +} +} +block_864: +{ +lean_object* x_844; uint8_t x_845; +x_844 = l_Lean_Elab_Term_saveAllState___rarg(x_11, x_12, x_13, x_14, x_15, x_843); +x_845 = !lean_is_exclusive(x_844); +if (x_845 == 0) +{ +lean_object* x_846; lean_object* x_847; lean_object* x_848; uint8_t x_849; +x_846 = lean_ctor_get(x_844, 0); +x_847 = lean_ctor_get(x_844, 1); +x_848 = l_Lean_Elab_Term_SavedState_restore(x_807, x_10, x_11, x_12, x_13, x_14, x_15, x_847); +lean_dec(x_15); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +x_849 = !lean_is_exclusive(x_848); +if (x_849 == 0) +{ +lean_object* x_850; lean_object* x_851; lean_object* x_852; +x_850 = lean_ctor_get(x_848, 1); +x_851 = lean_ctor_get(x_848, 0); +lean_dec(x_851); +lean_ctor_set(x_848, 1, x_846); +lean_ctor_set(x_848, 0, x_842); +x_852 = lean_array_push(x_9, x_848); +lean_ctor_set(x_844, 1, x_850); +lean_ctor_set(x_844, 0, x_852); +return x_844; +} +else +{ +lean_object* x_853; lean_object* x_854; lean_object* x_855; +x_853 = lean_ctor_get(x_848, 1); +lean_inc(x_853); +lean_dec(x_848); +x_854 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_854, 0, x_842); +lean_ctor_set(x_854, 1, x_846); +x_855 = lean_array_push(x_9, x_854); +lean_ctor_set(x_844, 1, x_853); +lean_ctor_set(x_844, 0, x_855); +return x_844; +} +} +else +{ +lean_object* x_856; lean_object* x_857; lean_object* x_858; lean_object* x_859; lean_object* x_860; lean_object* x_861; lean_object* x_862; lean_object* x_863; +x_856 = lean_ctor_get(x_844, 0); +x_857 = lean_ctor_get(x_844, 1); +lean_inc(x_857); +lean_inc(x_856); +lean_dec(x_844); +x_858 = l_Lean_Elab_Term_SavedState_restore(x_807, x_10, x_11, x_12, x_13, x_14, x_15, x_857); +lean_dec(x_15); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +x_859 = lean_ctor_get(x_858, 1); +lean_inc(x_859); +if (lean_is_exclusive(x_858)) { + lean_ctor_release(x_858, 0); + lean_ctor_release(x_858, 1); + x_860 = x_858; +} else { + lean_dec_ref(x_858); + x_860 = lean_box(0); +} +if (lean_is_scalar(x_860)) { + x_861 = lean_alloc_ctor(0, 2, 0); +} else { + x_861 = x_860; +} +lean_ctor_set(x_861, 0, x_842); +lean_ctor_set(x_861, 1, x_856); +x_862 = lean_array_push(x_9, x_861); +x_863 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_863, 0, x_862); +lean_ctor_set(x_863, 1, x_859); +return x_863; +} +} +} +else +{ +uint8_t x_882; +x_882 = l_Array_isEmpty___rarg(x_4); +if (x_882 == 0) +{ +lean_object* x_883; lean_object* x_884; lean_object* x_885; lean_object* x_886; lean_object* x_887; lean_object* x_888; lean_object* x_889; lean_object* x_920; lean_object* x_921; lean_object* x_943; +x_883 = lean_box(0); +x_884 = l_Lean_Elab_Term_saveAllState___rarg(x_11, x_12, x_13, x_14, x_15, x_16); +x_885 = lean_ctor_get(x_884, 0); +lean_inc(x_885); +x_886 = lean_ctor_get(x_884, 1); +lean_inc(x_886); +if (lean_is_exclusive(x_884)) { + lean_ctor_release(x_884, 0); + lean_ctor_release(x_884, 1); + x_887 = x_884; +} else { + lean_dec_ref(x_884); + x_887 = lean_box(0); } lean_inc(x_15); lean_inc(x_14); @@ -28873,15 +29093,15 @@ lean_inc(x_13); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); -x_890 = l_Lean_Elab_Term_elabTerm(x_1, x_830, x_751, x_10, x_11, x_12, x_13, x_14, x_15, x_833); -if (lean_obj_tag(x_890) == 0) +x_943 = l_Lean_Elab_Term_elabTerm(x_1, x_883, x_726, x_10, x_11, x_12, x_13, x_14, x_15, x_886); +if (lean_obj_tag(x_943) == 0) { -lean_object* x_891; lean_object* x_892; lean_object* x_893; -x_891 = lean_ctor_get(x_890, 0); -lean_inc(x_891); -x_892 = lean_ctor_get(x_890, 1); -lean_inc(x_892); -lean_dec(x_890); +lean_object* x_944; lean_object* x_945; lean_object* x_946; +x_944 = lean_ctor_get(x_943, 0); +lean_inc(x_944); +x_945 = lean_ctor_get(x_943, 1); +lean_inc(x_945); +lean_dec(x_943); lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); @@ -28889,806 +29109,372 @@ lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); lean_inc(x_5); -x_893 = l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppLVals(x_891, x_2, x_3, x_4, x_5, x_6, x_7, x_10, x_11, x_12, x_13, x_14, x_15, x_892); -if (lean_obj_tag(x_893) == 0) +x_946 = l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppLVals(x_944, x_2, x_3, x_4, x_5, x_6, x_7, x_10, x_11, x_12, x_13, x_14, x_15, x_945); +if (lean_obj_tag(x_946) == 0) { if (x_8 == 0) { -lean_object* x_894; lean_object* x_895; -lean_dec(x_834); +lean_object* x_947; lean_object* x_948; +lean_dec(x_887); lean_dec(x_5); -x_894 = lean_ctor_get(x_893, 0); -lean_inc(x_894); -x_895 = lean_ctor_get(x_893, 1); -lean_inc(x_895); -lean_dec(x_893); -x_867 = x_894; -x_868 = x_895; -goto block_889; +x_947 = lean_ctor_get(x_946, 0); +lean_inc(x_947); +x_948 = lean_ctor_get(x_946, 1); +lean_inc(x_948); +lean_dec(x_946); +x_920 = x_947; +x_921 = x_948; +goto block_942; } else { +lean_object* x_949; lean_object* x_950; lean_object* x_951; +x_949 = lean_ctor_get(x_946, 0); +lean_inc(x_949); +x_950 = lean_ctor_get(x_946, 1); +lean_inc(x_950); +lean_dec(x_946); +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_951 = l_Lean_Elab_Term_ensureHasType(x_5, x_949, x_883, x_10, x_11, x_12, x_13, x_14, x_15, x_950); +if (lean_obj_tag(x_951) == 0) +{ +lean_object* x_952; lean_object* x_953; +lean_dec(x_887); +x_952 = lean_ctor_get(x_951, 0); +lean_inc(x_952); +x_953 = lean_ctor_get(x_951, 1); +lean_inc(x_953); +lean_dec(x_951); +x_920 = x_952; +x_921 = x_953; +goto block_942; +} +else +{ +lean_object* x_954; lean_object* x_955; +x_954 = lean_ctor_get(x_951, 0); +lean_inc(x_954); +x_955 = lean_ctor_get(x_951, 1); +lean_inc(x_955); +lean_dec(x_951); +x_888 = x_954; +x_889 = x_955; +goto block_919; +} +} +} +else +{ +lean_object* x_956; lean_object* x_957; +lean_dec(x_5); +x_956 = lean_ctor_get(x_946, 0); +lean_inc(x_956); +x_957 = lean_ctor_get(x_946, 1); +lean_inc(x_957); +lean_dec(x_946); +x_888 = x_956; +x_889 = x_957; +goto block_919; +} +} +else +{ +lean_object* x_958; lean_object* x_959; +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_958 = lean_ctor_get(x_943, 0); +lean_inc(x_958); +x_959 = lean_ctor_get(x_943, 1); +lean_inc(x_959); +lean_dec(x_943); +x_888 = x_958; +x_889 = x_959; +goto block_919; +} +block_919: +{ +if (lean_obj_tag(x_888) == 0) +{ +lean_object* x_890; uint8_t x_891; +lean_dec(x_887); +x_890 = l_Lean_Elab_Term_saveAllState___rarg(x_11, x_12, x_13, x_14, x_15, x_889); +x_891 = !lean_is_exclusive(x_890); +if (x_891 == 0) +{ +lean_object* x_892; lean_object* x_893; lean_object* x_894; uint8_t x_895; +x_892 = lean_ctor_get(x_890, 0); +x_893 = lean_ctor_get(x_890, 1); +x_894 = l_Lean_Elab_Term_SavedState_restore(x_885, x_10, x_11, x_12, x_13, x_14, x_15, x_893); +lean_dec(x_15); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +x_895 = !lean_is_exclusive(x_894); +if (x_895 == 0) +{ lean_object* x_896; lean_object* x_897; lean_object* x_898; -x_896 = lean_ctor_get(x_893, 0); -lean_inc(x_896); -x_897 = lean_ctor_get(x_893, 1); -lean_inc(x_897); -lean_dec(x_893); -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_898 = l_Lean_Elab_Term_ensureHasType(x_5, x_896, x_830, x_10, x_11, x_12, x_13, x_14, x_15, x_897); -if (lean_obj_tag(x_898) == 0) +x_896 = lean_ctor_get(x_894, 1); +x_897 = lean_ctor_get(x_894, 0); +lean_dec(x_897); +lean_ctor_set_tag(x_894, 1); +lean_ctor_set(x_894, 1, x_892); +lean_ctor_set(x_894, 0, x_888); +x_898 = lean_array_push(x_9, x_894); +lean_ctor_set(x_890, 1, x_896); +lean_ctor_set(x_890, 0, x_898); +return x_890; +} +else { -lean_object* x_899; lean_object* x_900; -lean_dec(x_834); -x_899 = lean_ctor_get(x_898, 0); +lean_object* x_899; lean_object* x_900; lean_object* x_901; +x_899 = lean_ctor_get(x_894, 1); lean_inc(x_899); -x_900 = lean_ctor_get(x_898, 1); -lean_inc(x_900); -lean_dec(x_898); -x_867 = x_899; -x_868 = x_900; -goto block_889; -} -else -{ -lean_object* x_901; lean_object* x_902; -x_901 = lean_ctor_get(x_898, 0); -lean_inc(x_901); -x_902 = lean_ctor_get(x_898, 1); -lean_inc(x_902); -lean_dec(x_898); -x_835 = x_901; -x_836 = x_902; -goto block_866; -} +lean_dec(x_894); +x_900 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_900, 0, x_888); +lean_ctor_set(x_900, 1, x_892); +x_901 = lean_array_push(x_9, x_900); +lean_ctor_set(x_890, 1, x_899); +lean_ctor_set(x_890, 0, x_901); +return x_890; } } else { -lean_object* x_903; lean_object* x_904; -lean_dec(x_5); -x_903 = lean_ctor_get(x_893, 0); +lean_object* x_902; lean_object* x_903; lean_object* x_904; lean_object* x_905; lean_object* x_906; lean_object* x_907; lean_object* x_908; lean_object* x_909; +x_902 = lean_ctor_get(x_890, 0); +x_903 = lean_ctor_get(x_890, 1); lean_inc(x_903); -x_904 = lean_ctor_get(x_893, 1); -lean_inc(x_904); -lean_dec(x_893); -x_835 = x_903; -x_836 = x_904; -goto block_866; +lean_inc(x_902); +lean_dec(x_890); +x_904 = l_Lean_Elab_Term_SavedState_restore(x_885, x_10, x_11, x_12, x_13, x_14, x_15, x_903); +lean_dec(x_15); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +x_905 = lean_ctor_get(x_904, 1); +lean_inc(x_905); +if (lean_is_exclusive(x_904)) { + lean_ctor_release(x_904, 0); + lean_ctor_release(x_904, 1); + x_906 = x_904; +} else { + lean_dec_ref(x_904); + x_906 = lean_box(0); +} +if (lean_is_scalar(x_906)) { + x_907 = lean_alloc_ctor(1, 2, 0); +} else { + x_907 = x_906; + lean_ctor_set_tag(x_907, 1); +} +lean_ctor_set(x_907, 0, x_888); +lean_ctor_set(x_907, 1, x_902); +x_908 = lean_array_push(x_9, x_907); +x_909 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_909, 0, x_908); +lean_ctor_set(x_909, 1, x_905); +return x_909; +} +} +else +{ +lean_object* x_910; lean_object* x_911; uint8_t x_912; +lean_dec(x_9); +x_910 = lean_ctor_get(x_888, 0); +lean_inc(x_910); +x_911 = l_Lean_Elab_postponeExceptionId; +x_912 = lean_nat_dec_eq(x_910, x_911); +lean_dec(x_910); +if (x_912 == 0) +{ +lean_object* x_913; +lean_dec(x_885); +lean_dec(x_15); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +if (lean_is_scalar(x_887)) { + x_913 = lean_alloc_ctor(1, 2, 0); +} else { + x_913 = x_887; + lean_ctor_set_tag(x_913, 1); +} +lean_ctor_set(x_913, 0, x_888); +lean_ctor_set(x_913, 1, x_889); +return x_913; +} +else +{ +lean_object* x_914; uint8_t x_915; +lean_dec(x_887); +x_914 = l_Lean_Elab_Term_SavedState_restore(x_885, x_10, x_11, x_12, x_13, x_14, x_15, x_889); +lean_dec(x_15); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +x_915 = !lean_is_exclusive(x_914); +if (x_915 == 0) +{ +lean_object* x_916; +x_916 = lean_ctor_get(x_914, 0); +lean_dec(x_916); +lean_ctor_set_tag(x_914, 1); +lean_ctor_set(x_914, 0, x_888); +return x_914; +} +else +{ +lean_object* x_917; lean_object* x_918; +x_917 = lean_ctor_get(x_914, 1); +lean_inc(x_917); +lean_dec(x_914); +x_918 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_918, 0, x_888); +lean_ctor_set(x_918, 1, x_917); +return x_918; +} +} +} +} +block_942: +{ +lean_object* x_922; uint8_t x_923; +x_922 = l_Lean_Elab_Term_saveAllState___rarg(x_11, x_12, x_13, x_14, x_15, x_921); +x_923 = !lean_is_exclusive(x_922); +if (x_923 == 0) +{ +lean_object* x_924; lean_object* x_925; lean_object* x_926; uint8_t x_927; +x_924 = lean_ctor_get(x_922, 0); +x_925 = lean_ctor_get(x_922, 1); +x_926 = l_Lean_Elab_Term_SavedState_restore(x_885, x_10, x_11, x_12, x_13, x_14, x_15, x_925); +lean_dec(x_15); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +x_927 = !lean_is_exclusive(x_926); +if (x_927 == 0) +{ +lean_object* x_928; lean_object* x_929; lean_object* x_930; +x_928 = lean_ctor_get(x_926, 1); +x_929 = lean_ctor_get(x_926, 0); +lean_dec(x_929); +lean_ctor_set(x_926, 1, x_924); +lean_ctor_set(x_926, 0, x_920); +x_930 = lean_array_push(x_9, x_926); +lean_ctor_set(x_922, 1, x_928); +lean_ctor_set(x_922, 0, x_930); +return x_922; +} +else +{ +lean_object* x_931; lean_object* x_932; lean_object* x_933; +x_931 = lean_ctor_get(x_926, 1); +lean_inc(x_931); +lean_dec(x_926); +x_932 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_932, 0, x_920); +lean_ctor_set(x_932, 1, x_924); +x_933 = lean_array_push(x_9, x_932); +lean_ctor_set(x_922, 1, x_931); +lean_ctor_set(x_922, 0, x_933); +return x_922; +} +} +else +{ +lean_object* x_934; lean_object* x_935; lean_object* x_936; lean_object* x_937; lean_object* x_938; lean_object* x_939; lean_object* x_940; lean_object* x_941; +x_934 = lean_ctor_get(x_922, 0); +x_935 = lean_ctor_get(x_922, 1); +lean_inc(x_935); +lean_inc(x_934); +lean_dec(x_922); +x_936 = l_Lean_Elab_Term_SavedState_restore(x_885, x_10, x_11, x_12, x_13, x_14, x_15, x_935); +lean_dec(x_15); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +x_937 = lean_ctor_get(x_936, 1); +lean_inc(x_937); +if (lean_is_exclusive(x_936)) { + lean_ctor_release(x_936, 0); + lean_ctor_release(x_936, 1); + x_938 = x_936; +} else { + lean_dec_ref(x_936); + x_938 = lean_box(0); +} +if (lean_is_scalar(x_938)) { + x_939 = lean_alloc_ctor(0, 2, 0); +} else { + x_939 = x_938; +} +lean_ctor_set(x_939, 0, x_920); +lean_ctor_set(x_939, 1, x_934); +x_940 = lean_array_push(x_9, x_939); +x_941 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_941, 0, x_940); +lean_ctor_set(x_941, 1, x_937); +return x_941; +} } } else { -lean_object* x_905; lean_object* x_906; -lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); -x_905 = lean_ctor_get(x_890, 0); -lean_inc(x_905); -x_906 = lean_ctor_get(x_890, 1); -lean_inc(x_906); -lean_dec(x_890); -x_835 = x_905; -x_836 = x_906; -goto block_866; -} -block_866: -{ -if (lean_obj_tag(x_835) == 0) -{ -lean_object* x_837; uint8_t x_838; -lean_dec(x_834); -x_837 = l_Lean_Elab_Term_saveAllState___rarg(x_11, x_12, x_13, x_14, x_15, x_836); -x_838 = !lean_is_exclusive(x_837); -if (x_838 == 0) -{ -lean_object* x_839; lean_object* x_840; lean_object* x_841; uint8_t x_842; -x_839 = lean_ctor_get(x_837, 0); -x_840 = lean_ctor_get(x_837, 1); -x_841 = l_Lean_Elab_Term_SavedState_restore(x_832, x_10, x_11, x_12, x_13, x_14, x_15, x_840); -lean_dec(x_15); -lean_dec(x_14); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -x_842 = !lean_is_exclusive(x_841); -if (x_842 == 0) -{ -lean_object* x_843; lean_object* x_844; lean_object* x_845; -x_843 = lean_ctor_get(x_841, 1); -x_844 = lean_ctor_get(x_841, 0); -lean_dec(x_844); -lean_ctor_set_tag(x_841, 1); -lean_ctor_set(x_841, 1, x_839); -lean_ctor_set(x_841, 0, x_835); -x_845 = lean_array_push(x_9, x_841); -lean_ctor_set(x_837, 1, x_843); -lean_ctor_set(x_837, 0, x_845); -return x_837; -} -else -{ -lean_object* x_846; lean_object* x_847; lean_object* x_848; -x_846 = lean_ctor_get(x_841, 1); -lean_inc(x_846); -lean_dec(x_841); -x_847 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_847, 0, x_835); -lean_ctor_set(x_847, 1, x_839); -x_848 = lean_array_push(x_9, x_847); -lean_ctor_set(x_837, 1, x_846); -lean_ctor_set(x_837, 0, x_848); -return x_837; -} -} -else -{ -lean_object* x_849; lean_object* x_850; lean_object* x_851; lean_object* x_852; lean_object* x_853; lean_object* x_854; lean_object* x_855; lean_object* x_856; -x_849 = lean_ctor_get(x_837, 0); -x_850 = lean_ctor_get(x_837, 1); -lean_inc(x_850); -lean_inc(x_849); -lean_dec(x_837); -x_851 = l_Lean_Elab_Term_SavedState_restore(x_832, x_10, x_11, x_12, x_13, x_14, x_15, x_850); -lean_dec(x_15); -lean_dec(x_14); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -x_852 = lean_ctor_get(x_851, 1); -lean_inc(x_852); -if (lean_is_exclusive(x_851)) { - lean_ctor_release(x_851, 0); - lean_ctor_release(x_851, 1); - x_853 = x_851; -} else { - lean_dec_ref(x_851); - x_853 = lean_box(0); -} -if (lean_is_scalar(x_853)) { - x_854 = lean_alloc_ctor(1, 2, 0); -} else { - x_854 = x_853; - lean_ctor_set_tag(x_854, 1); -} -lean_ctor_set(x_854, 0, x_835); -lean_ctor_set(x_854, 1, x_849); -x_855 = lean_array_push(x_9, x_854); -x_856 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_856, 0, x_855); -lean_ctor_set(x_856, 1, x_852); -return x_856; -} -} -else -{ -lean_object* x_857; lean_object* x_858; uint8_t x_859; -lean_dec(x_9); -x_857 = lean_ctor_get(x_835, 0); -lean_inc(x_857); -x_858 = l_Lean_Elab_postponeExceptionId; -x_859 = lean_nat_dec_eq(x_857, x_858); -lean_dec(x_857); -if (x_859 == 0) -{ -lean_object* x_860; -lean_dec(x_832); -lean_dec(x_15); -lean_dec(x_14); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -if (lean_is_scalar(x_834)) { - x_860 = lean_alloc_ctor(1, 2, 0); -} else { - x_860 = x_834; - lean_ctor_set_tag(x_860, 1); -} -lean_ctor_set(x_860, 0, x_835); -lean_ctor_set(x_860, 1, x_836); -return x_860; -} -else -{ -lean_object* x_861; uint8_t x_862; -lean_dec(x_834); -x_861 = l_Lean_Elab_Term_SavedState_restore(x_832, x_10, x_11, x_12, x_13, x_14, x_15, x_836); -lean_dec(x_15); -lean_dec(x_14); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -x_862 = !lean_is_exclusive(x_861); -if (x_862 == 0) -{ -lean_object* x_863; -x_863 = lean_ctor_get(x_861, 0); -lean_dec(x_863); -lean_ctor_set_tag(x_861, 1); -lean_ctor_set(x_861, 0, x_835); -return x_861; -} -else -{ -lean_object* x_864; lean_object* x_865; -x_864 = lean_ctor_get(x_861, 1); -lean_inc(x_864); -lean_dec(x_861); -x_865 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_865, 0, x_835); -lean_ctor_set(x_865, 1, x_864); -return x_865; -} -} -} -} -block_889: -{ -lean_object* x_869; uint8_t x_870; -x_869 = l_Lean_Elab_Term_saveAllState___rarg(x_11, x_12, x_13, x_14, x_15, x_868); -x_870 = !lean_is_exclusive(x_869); -if (x_870 == 0) -{ -lean_object* x_871; lean_object* x_872; lean_object* x_873; uint8_t x_874; -x_871 = lean_ctor_get(x_869, 0); -x_872 = lean_ctor_get(x_869, 1); -x_873 = l_Lean_Elab_Term_SavedState_restore(x_832, x_10, x_11, x_12, x_13, x_14, x_15, x_872); -lean_dec(x_15); -lean_dec(x_14); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -x_874 = !lean_is_exclusive(x_873); -if (x_874 == 0) -{ -lean_object* x_875; lean_object* x_876; lean_object* x_877; -x_875 = lean_ctor_get(x_873, 1); -x_876 = lean_ctor_get(x_873, 0); -lean_dec(x_876); -lean_ctor_set(x_873, 1, x_871); -lean_ctor_set(x_873, 0, x_867); -x_877 = lean_array_push(x_9, x_873); -lean_ctor_set(x_869, 1, x_875); -lean_ctor_set(x_869, 0, x_877); -return x_869; -} -else -{ -lean_object* x_878; lean_object* x_879; lean_object* x_880; -x_878 = lean_ctor_get(x_873, 1); -lean_inc(x_878); -lean_dec(x_873); -x_879 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_879, 0, x_867); -lean_ctor_set(x_879, 1, x_871); -x_880 = lean_array_push(x_9, x_879); -lean_ctor_set(x_869, 1, x_878); -lean_ctor_set(x_869, 0, x_880); -return x_869; -} -} -else -{ -lean_object* x_881; lean_object* x_882; lean_object* x_883; lean_object* x_884; lean_object* x_885; lean_object* x_886; lean_object* x_887; lean_object* x_888; -x_881 = lean_ctor_get(x_869, 0); -x_882 = lean_ctor_get(x_869, 1); -lean_inc(x_882); -lean_inc(x_881); -lean_dec(x_869); -x_883 = l_Lean_Elab_Term_SavedState_restore(x_832, x_10, x_11, x_12, x_13, x_14, x_15, x_882); -lean_dec(x_15); -lean_dec(x_14); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -x_884 = lean_ctor_get(x_883, 1); -lean_inc(x_884); -if (lean_is_exclusive(x_883)) { - lean_ctor_release(x_883, 0); - lean_ctor_release(x_883, 1); - x_885 = x_883; -} else { - lean_dec_ref(x_883); - x_885 = lean_box(0); -} -if (lean_is_scalar(x_885)) { - x_886 = lean_alloc_ctor(0, 2, 0); -} else { - x_886 = x_885; -} -lean_ctor_set(x_886, 0, x_867); -lean_ctor_set(x_886, 1, x_881); -x_887 = lean_array_push(x_9, x_886); -x_888 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_888, 0, x_887); -lean_ctor_set(x_888, 1, x_884); -return x_888; -} -} -} -else -{ -uint8_t x_907; -x_907 = l_Array_isEmpty___rarg(x_4); -if (x_907 == 0) -{ -lean_object* x_908; lean_object* x_909; lean_object* x_910; lean_object* x_911; lean_object* x_912; lean_object* x_913; lean_object* x_914; lean_object* x_945; lean_object* x_946; lean_object* x_968; -x_908 = lean_box(0); -x_909 = l_Lean_Elab_Term_saveAllState___rarg(x_11, x_12, x_13, x_14, x_15, x_16); -x_910 = lean_ctor_get(x_909, 0); -lean_inc(x_910); -x_911 = lean_ctor_get(x_909, 1); -lean_inc(x_911); -if (lean_is_exclusive(x_909)) { - lean_ctor_release(x_909, 0); - lean_ctor_release(x_909, 1); - x_912 = x_909; -} else { - lean_dec_ref(x_909); - x_912 = lean_box(0); -} -lean_inc(x_15); -lean_inc(x_14); -lean_inc(x_13); -lean_inc(x_12); -lean_inc(x_11); -lean_inc(x_10); -x_968 = l_Lean_Elab_Term_elabTerm(x_1, x_908, x_751, x_10, x_11, x_12, x_13, x_14, x_15, x_911); -if (lean_obj_tag(x_968) == 0) -{ -lean_object* x_969; lean_object* x_970; lean_object* x_971; -x_969 = lean_ctor_get(x_968, 0); -lean_inc(x_969); -x_970 = lean_ctor_get(x_968, 1); -lean_inc(x_970); -lean_dec(x_968); -lean_inc(x_15); -lean_inc(x_14); -lean_inc(x_13); -lean_inc(x_12); -lean_inc(x_11); -lean_inc(x_10); -lean_inc(x_5); -x_971 = l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppLVals(x_969, x_2, x_3, x_4, x_5, x_6, x_7, x_10, x_11, x_12, x_13, x_14, x_15, x_970); -if (lean_obj_tag(x_971) == 0) -{ if (x_8 == 0) { -lean_object* x_972; lean_object* x_973; -lean_dec(x_912); -lean_dec(x_5); -x_972 = lean_ctor_get(x_971, 0); -lean_inc(x_972); -x_973 = lean_ctor_get(x_971, 1); -lean_inc(x_973); -lean_dec(x_971); -x_945 = x_972; -x_946 = x_973; -goto block_967; -} -else -{ -lean_object* x_974; lean_object* x_975; lean_object* x_976; -x_974 = lean_ctor_get(x_971, 0); -lean_inc(x_974); -x_975 = lean_ctor_get(x_971, 1); -lean_inc(x_975); -lean_dec(x_971); -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_976 = l_Lean_Elab_Term_ensureHasType(x_5, x_974, x_908, x_10, x_11, x_12, x_13, x_14, x_15, x_975); -if (lean_obj_tag(x_976) == 0) -{ -lean_object* x_977; lean_object* x_978; -lean_dec(x_912); -x_977 = lean_ctor_get(x_976, 0); -lean_inc(x_977); -x_978 = lean_ctor_get(x_976, 1); -lean_inc(x_978); -lean_dec(x_976); -x_945 = x_977; -x_946 = x_978; -goto block_967; -} -else -{ -lean_object* x_979; lean_object* x_980; -x_979 = lean_ctor_get(x_976, 0); -lean_inc(x_979); -x_980 = lean_ctor_get(x_976, 1); -lean_inc(x_980); -lean_dec(x_976); -x_913 = x_979; -x_914 = x_980; -goto block_944; -} -} -} -else -{ -lean_object* x_981; lean_object* x_982; -lean_dec(x_5); -x_981 = lean_ctor_get(x_971, 0); -lean_inc(x_981); -x_982 = lean_ctor_get(x_971, 1); -lean_inc(x_982); -lean_dec(x_971); -x_913 = x_981; -x_914 = x_982; -goto block_944; -} -} -else -{ -lean_object* x_983; lean_object* x_984; -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -x_983 = lean_ctor_get(x_968, 0); -lean_inc(x_983); -x_984 = lean_ctor_get(x_968, 1); -lean_inc(x_984); -lean_dec(x_968); -x_913 = x_983; -x_914 = x_984; -goto block_944; -} -block_944: -{ -if (lean_obj_tag(x_913) == 0) -{ -lean_object* x_915; uint8_t x_916; -lean_dec(x_912); -x_915 = l_Lean_Elab_Term_saveAllState___rarg(x_11, x_12, x_13, x_14, x_15, x_914); -x_916 = !lean_is_exclusive(x_915); -if (x_916 == 0) -{ -lean_object* x_917; lean_object* x_918; lean_object* x_919; uint8_t x_920; -x_917 = lean_ctor_get(x_915, 0); -x_918 = lean_ctor_get(x_915, 1); -x_919 = l_Lean_Elab_Term_SavedState_restore(x_910, x_10, x_11, x_12, x_13, x_14, x_15, x_918); -lean_dec(x_15); -lean_dec(x_14); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -x_920 = !lean_is_exclusive(x_919); -if (x_920 == 0) -{ -lean_object* x_921; lean_object* x_922; lean_object* x_923; -x_921 = lean_ctor_get(x_919, 1); -x_922 = lean_ctor_get(x_919, 0); -lean_dec(x_922); -lean_ctor_set_tag(x_919, 1); -lean_ctor_set(x_919, 1, x_917); -lean_ctor_set(x_919, 0, x_913); -x_923 = lean_array_push(x_9, x_919); -lean_ctor_set(x_915, 1, x_921); -lean_ctor_set(x_915, 0, x_923); -return x_915; -} -else -{ -lean_object* x_924; lean_object* x_925; lean_object* x_926; -x_924 = lean_ctor_get(x_919, 1); -lean_inc(x_924); -lean_dec(x_919); -x_925 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_925, 0, x_913); -lean_ctor_set(x_925, 1, x_917); -x_926 = lean_array_push(x_9, x_925); -lean_ctor_set(x_915, 1, x_924); -lean_ctor_set(x_915, 0, x_926); -return x_915; -} -} -else -{ -lean_object* x_927; lean_object* x_928; lean_object* x_929; lean_object* x_930; lean_object* x_931; lean_object* x_932; lean_object* x_933; lean_object* x_934; -x_927 = lean_ctor_get(x_915, 0); -x_928 = lean_ctor_get(x_915, 1); -lean_inc(x_928); -lean_inc(x_927); -lean_dec(x_915); -x_929 = l_Lean_Elab_Term_SavedState_restore(x_910, x_10, x_11, x_12, x_13, x_14, x_15, x_928); -lean_dec(x_15); -lean_dec(x_14); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -x_930 = lean_ctor_get(x_929, 1); -lean_inc(x_930); -if (lean_is_exclusive(x_929)) { - lean_ctor_release(x_929, 0); - lean_ctor_release(x_929, 1); - x_931 = x_929; -} else { - lean_dec_ref(x_929); - x_931 = lean_box(0); -} -if (lean_is_scalar(x_931)) { - x_932 = lean_alloc_ctor(1, 2, 0); -} else { - x_932 = x_931; - lean_ctor_set_tag(x_932, 1); -} -lean_ctor_set(x_932, 0, x_913); -lean_ctor_set(x_932, 1, x_927); -x_933 = lean_array_push(x_9, x_932); -x_934 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_934, 0, x_933); -lean_ctor_set(x_934, 1, x_930); -return x_934; -} -} -else -{ -lean_object* x_935; lean_object* x_936; uint8_t x_937; -lean_dec(x_9); -x_935 = lean_ctor_get(x_913, 0); -lean_inc(x_935); -x_936 = l_Lean_Elab_postponeExceptionId; -x_937 = lean_nat_dec_eq(x_935, x_936); -lean_dec(x_935); -if (x_937 == 0) -{ -lean_object* x_938; -lean_dec(x_910); -lean_dec(x_15); -lean_dec(x_14); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -if (lean_is_scalar(x_912)) { - x_938 = lean_alloc_ctor(1, 2, 0); -} else { - x_938 = x_912; - lean_ctor_set_tag(x_938, 1); -} -lean_ctor_set(x_938, 0, x_913); -lean_ctor_set(x_938, 1, x_914); -return x_938; -} -else -{ -lean_object* x_939; uint8_t x_940; -lean_dec(x_912); -x_939 = l_Lean_Elab_Term_SavedState_restore(x_910, x_10, x_11, x_12, x_13, x_14, x_15, x_914); -lean_dec(x_15); -lean_dec(x_14); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -x_940 = !lean_is_exclusive(x_939); -if (x_940 == 0) -{ -lean_object* x_941; -x_941 = lean_ctor_get(x_939, 0); -lean_dec(x_941); -lean_ctor_set_tag(x_939, 1); -lean_ctor_set(x_939, 0, x_913); -return x_939; -} -else -{ -lean_object* x_942; lean_object* x_943; -x_942 = lean_ctor_get(x_939, 1); -lean_inc(x_942); -lean_dec(x_939); -x_943 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_943, 0, x_913); -lean_ctor_set(x_943, 1, x_942); -return x_943; -} -} -} -} -block_967: -{ -lean_object* x_947; uint8_t x_948; -x_947 = l_Lean_Elab_Term_saveAllState___rarg(x_11, x_12, x_13, x_14, x_15, x_946); -x_948 = !lean_is_exclusive(x_947); -if (x_948 == 0) -{ -lean_object* x_949; lean_object* x_950; lean_object* x_951; uint8_t x_952; -x_949 = lean_ctor_get(x_947, 0); -x_950 = lean_ctor_get(x_947, 1); -x_951 = l_Lean_Elab_Term_SavedState_restore(x_910, x_10, x_11, x_12, x_13, x_14, x_15, x_950); -lean_dec(x_15); -lean_dec(x_14); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -x_952 = !lean_is_exclusive(x_951); -if (x_952 == 0) -{ -lean_object* x_953; lean_object* x_954; lean_object* x_955; -x_953 = lean_ctor_get(x_951, 1); -x_954 = lean_ctor_get(x_951, 0); -lean_dec(x_954); -lean_ctor_set(x_951, 1, x_949); -lean_ctor_set(x_951, 0, x_945); -x_955 = lean_array_push(x_9, x_951); -lean_ctor_set(x_947, 1, x_953); -lean_ctor_set(x_947, 0, x_955); -return x_947; -} -else -{ -lean_object* x_956; lean_object* x_957; lean_object* x_958; -x_956 = lean_ctor_get(x_951, 1); -lean_inc(x_956); -lean_dec(x_951); -x_957 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_957, 0, x_945); -lean_ctor_set(x_957, 1, x_949); -x_958 = lean_array_push(x_9, x_957); -lean_ctor_set(x_947, 1, x_956); -lean_ctor_set(x_947, 0, x_958); -return x_947; -} -} -else -{ -lean_object* x_959; lean_object* x_960; lean_object* x_961; lean_object* x_962; lean_object* x_963; lean_object* x_964; lean_object* x_965; lean_object* x_966; -x_959 = lean_ctor_get(x_947, 0); -x_960 = lean_ctor_get(x_947, 1); -lean_inc(x_960); -lean_inc(x_959); -lean_dec(x_947); -x_961 = l_Lean_Elab_Term_SavedState_restore(x_910, x_10, x_11, x_12, x_13, x_14, x_15, x_960); -lean_dec(x_15); -lean_dec(x_14); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -x_962 = lean_ctor_get(x_961, 1); +lean_object* x_960; lean_object* x_961; lean_object* x_962; lean_object* x_963; lean_object* x_964; lean_object* x_965; uint8_t x_987; lean_object* x_988; +x_960 = l_Lean_Elab_Term_saveAllState___rarg(x_11, x_12, x_13, x_14, x_15, x_16); +x_961 = lean_ctor_get(x_960, 0); +lean_inc(x_961); +x_962 = lean_ctor_get(x_960, 1); lean_inc(x_962); -if (lean_is_exclusive(x_961)) { - lean_ctor_release(x_961, 0); - lean_ctor_release(x_961, 1); - x_963 = x_961; +if (lean_is_exclusive(x_960)) { + lean_ctor_release(x_960, 0); + lean_ctor_release(x_960, 1); + x_963 = x_960; } else { - lean_dec_ref(x_961); + lean_dec_ref(x_960); x_963 = lean_box(0); } -if (lean_is_scalar(x_963)) { - x_964 = lean_alloc_ctor(0, 2, 0); -} else { - x_964 = x_963; -} -lean_ctor_set(x_964, 0, x_945); -lean_ctor_set(x_964, 1, x_959); -x_965 = lean_array_push(x_9, x_964); -x_966 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_966, 0, x_965); -lean_ctor_set(x_966, 1, x_962); -return x_966; -} -} -} -else -{ -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -if (x_8 == 0) -{ -lean_object* x_985; lean_object* x_986; lean_object* x_987; lean_object* x_988; lean_object* x_989; lean_object* x_990; uint8_t x_1012; lean_object* x_1013; -x_985 = l_Lean_Elab_Term_saveAllState___rarg(x_11, x_12, x_13, x_14, x_15, x_16); -x_986 = lean_ctor_get(x_985, 0); -lean_inc(x_986); -x_987 = lean_ctor_get(x_985, 1); -lean_inc(x_987); -if (lean_is_exclusive(x_985)) { - lean_ctor_release(x_985, 0); - lean_ctor_release(x_985, 1); - x_988 = x_985; -} else { - lean_dec_ref(x_985); - x_988 = lean_box(0); -} -x_1012 = 1; +x_987 = 1; lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); -x_1013 = l_Lean_Elab_Term_elabTerm(x_1, x_5, x_1012, x_10, x_11, x_12, x_13, x_14, x_15, x_987); -if (lean_obj_tag(x_1013) == 0) +x_988 = l_Lean_Elab_Term_elabTerm(x_1, x_5, x_987, x_10, x_11, x_12, x_13, x_14, x_15, x_962); +if (lean_obj_tag(x_988) == 0) { -lean_object* x_1014; lean_object* x_1015; lean_object* x_1016; lean_object* x_1017; lean_object* x_1018; lean_object* x_1019; uint8_t x_1020; -lean_dec(x_988); -x_1014 = lean_ctor_get(x_1013, 0); -lean_inc(x_1014); -x_1015 = lean_ctor_get(x_1013, 1); -lean_inc(x_1015); -lean_dec(x_1013); -x_1016 = l_Lean_Elab_Term_saveAllState___rarg(x_11, x_12, x_13, x_14, x_15, x_1015); -x_1017 = lean_ctor_get(x_1016, 0); -lean_inc(x_1017); -x_1018 = lean_ctor_get(x_1016, 1); -lean_inc(x_1018); -lean_dec(x_1016); -x_1019 = l_Lean_Elab_Term_SavedState_restore(x_986, x_10, x_11, x_12, x_13, x_14, x_15, x_1018); -x_1020 = !lean_is_exclusive(x_1019); -if (x_1020 == 0) -{ -lean_object* x_1021; lean_object* x_1022; lean_object* x_1023; -x_1021 = lean_ctor_get(x_1019, 1); -x_1022 = lean_ctor_get(x_1019, 0); -lean_dec(x_1022); -lean_ctor_set(x_1019, 1, x_1017); -lean_ctor_set(x_1019, 0, x_1014); -x_1023 = l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppFn___lambda__1(x_9, x_1019, x_10, x_11, x_12, x_13, x_14, x_15, x_1021); -lean_dec(x_15); -lean_dec(x_14); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -return x_1023; -} -else -{ -lean_object* x_1024; lean_object* x_1025; lean_object* x_1026; -x_1024 = lean_ctor_get(x_1019, 1); -lean_inc(x_1024); -lean_dec(x_1019); -x_1025 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1025, 0, x_1014); -lean_ctor_set(x_1025, 1, x_1017); -x_1026 = l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppFn___lambda__1(x_9, x_1025, x_10, x_11, x_12, x_13, x_14, x_15, x_1024); -lean_dec(x_15); -lean_dec(x_14); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -return x_1026; -} -} -else -{ -lean_object* x_1027; lean_object* x_1028; -x_1027 = lean_ctor_get(x_1013, 0); -lean_inc(x_1027); -x_1028 = lean_ctor_get(x_1013, 1); -lean_inc(x_1028); -lean_dec(x_1013); -x_989 = x_1027; -x_990 = x_1028; -goto block_1011; -} -block_1011: -{ -if (lean_obj_tag(x_989) == 0) -{ -lean_object* x_991; lean_object* x_992; lean_object* x_993; lean_object* x_994; uint8_t x_995; +lean_object* x_989; lean_object* x_990; lean_object* x_991; lean_object* x_992; lean_object* x_993; lean_object* x_994; uint8_t x_995; +lean_dec(x_963); +x_989 = lean_ctor_get(x_988, 0); +lean_inc(x_989); +x_990 = lean_ctor_get(x_988, 1); +lean_inc(x_990); lean_dec(x_988); x_991 = l_Lean_Elab_Term_saveAllState___rarg(x_11, x_12, x_13, x_14, x_15, x_990); x_992 = lean_ctor_get(x_991, 0); @@ -29696,7 +29482,7 @@ lean_inc(x_992); x_993 = lean_ctor_get(x_991, 1); lean_inc(x_993); lean_dec(x_991); -x_994 = l_Lean_Elab_Term_SavedState_restore(x_986, x_10, x_11, x_12, x_13, x_14, x_15, x_993); +x_994 = l_Lean_Elab_Term_SavedState_restore(x_961, x_10, x_11, x_12, x_13, x_14, x_15, x_993); x_995 = !lean_is_exclusive(x_994); if (x_995 == 0) { @@ -29704,7 +29490,6 @@ lean_object* x_996; lean_object* x_997; lean_object* x_998; x_996 = lean_ctor_get(x_994, 1); x_997 = lean_ctor_get(x_994, 0); lean_dec(x_997); -lean_ctor_set_tag(x_994, 1); lean_ctor_set(x_994, 1, x_992); lean_ctor_set(x_994, 0, x_989); x_998 = l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppFn___lambda__1(x_9, x_994, x_10, x_11, x_12, x_13, x_14, x_15, x_996); @@ -29722,7 +29507,7 @@ lean_object* x_999; lean_object* x_1000; lean_object* x_1001; x_999 = lean_ctor_get(x_994, 1); lean_inc(x_999); lean_dec(x_994); -x_1000 = lean_alloc_ctor(1, 2, 0); +x_1000 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_1000, 0, x_989); lean_ctor_set(x_1000, 1, x_992); x_1001 = l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppFn___lambda__1(x_9, x_1000, x_10, x_11, x_12, x_13, x_14, x_15, x_999); @@ -29737,85 +29522,148 @@ return x_1001; } else { -lean_object* x_1002; lean_object* x_1003; uint8_t x_1004; -lean_dec(x_9); -x_1002 = lean_ctor_get(x_989, 0); +lean_object* x_1002; lean_object* x_1003; +x_1002 = lean_ctor_get(x_988, 0); lean_inc(x_1002); -x_1003 = l_Lean_Elab_postponeExceptionId; -x_1004 = lean_nat_dec_eq(x_1002, x_1003); -lean_dec(x_1002); -if (x_1004 == 0) -{ -lean_object* x_1005; -lean_dec(x_986); -lean_dec(x_15); -lean_dec(x_14); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -if (lean_is_scalar(x_988)) { - x_1005 = lean_alloc_ctor(1, 2, 0); -} else { - x_1005 = x_988; - lean_ctor_set_tag(x_1005, 1); -} -lean_ctor_set(x_1005, 0, x_989); -lean_ctor_set(x_1005, 1, x_990); -return x_1005; -} -else -{ -lean_object* x_1006; uint8_t x_1007; +x_1003 = lean_ctor_get(x_988, 1); +lean_inc(x_1003); lean_dec(x_988); -x_1006 = l_Lean_Elab_Term_SavedState_restore(x_986, x_10, x_11, x_12, x_13, x_14, x_15, x_990); +x_964 = x_1002; +x_965 = x_1003; +goto block_986; +} +block_986: +{ +if (lean_obj_tag(x_964) == 0) +{ +lean_object* x_966; lean_object* x_967; lean_object* x_968; lean_object* x_969; uint8_t x_970; +lean_dec(x_963); +x_966 = l_Lean_Elab_Term_saveAllState___rarg(x_11, x_12, x_13, x_14, x_15, x_965); +x_967 = lean_ctor_get(x_966, 0); +lean_inc(x_967); +x_968 = lean_ctor_get(x_966, 1); +lean_inc(x_968); +lean_dec(x_966); +x_969 = l_Lean_Elab_Term_SavedState_restore(x_961, x_10, x_11, x_12, x_13, x_14, x_15, x_968); +x_970 = !lean_is_exclusive(x_969); +if (x_970 == 0) +{ +lean_object* x_971; lean_object* x_972; lean_object* x_973; +x_971 = lean_ctor_get(x_969, 1); +x_972 = lean_ctor_get(x_969, 0); +lean_dec(x_972); +lean_ctor_set_tag(x_969, 1); +lean_ctor_set(x_969, 1, x_967); +lean_ctor_set(x_969, 0, x_964); +x_973 = l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppFn___lambda__1(x_9, x_969, x_10, x_11, x_12, x_13, x_14, x_15, x_971); lean_dec(x_15); lean_dec(x_14); lean_dec(x_13); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); -x_1007 = !lean_is_exclusive(x_1006); -if (x_1007 == 0) -{ -lean_object* x_1008; -x_1008 = lean_ctor_get(x_1006, 0); -lean_dec(x_1008); -lean_ctor_set_tag(x_1006, 1); -lean_ctor_set(x_1006, 0, x_989); -return x_1006; +return x_973; } else { -lean_object* x_1009; lean_object* x_1010; -x_1009 = lean_ctor_get(x_1006, 1); -lean_inc(x_1009); -lean_dec(x_1006); -x_1010 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1010, 0, x_989); -lean_ctor_set(x_1010, 1, x_1009); -return x_1010; -} -} -} +lean_object* x_974; lean_object* x_975; lean_object* x_976; +x_974 = lean_ctor_get(x_969, 1); +lean_inc(x_974); +lean_dec(x_969); +x_975 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_975, 0, x_964); +lean_ctor_set(x_975, 1, x_967); +x_976 = l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppFn___lambda__1(x_9, x_975, x_10, x_11, x_12, x_13, x_14, x_15, x_974); +lean_dec(x_15); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +return x_976; } } else { -lean_object* x_1029; lean_object* x_1030; lean_object* x_1031; lean_object* x_1032; lean_object* x_1033; lean_object* x_1034; lean_object* x_1035; lean_object* x_1057; -x_1029 = lean_box(0); -x_1030 = l_Lean_Elab_Term_saveAllState___rarg(x_11, x_12, x_13, x_14, x_15, x_16); -x_1031 = lean_ctor_get(x_1030, 0); -lean_inc(x_1031); -x_1032 = lean_ctor_get(x_1030, 1); -lean_inc(x_1032); -if (lean_is_exclusive(x_1030)) { - lean_ctor_release(x_1030, 0); - lean_ctor_release(x_1030, 1); - x_1033 = x_1030; +lean_object* x_977; lean_object* x_978; uint8_t x_979; +lean_dec(x_9); +x_977 = lean_ctor_get(x_964, 0); +lean_inc(x_977); +x_978 = l_Lean_Elab_postponeExceptionId; +x_979 = lean_nat_dec_eq(x_977, x_978); +lean_dec(x_977); +if (x_979 == 0) +{ +lean_object* x_980; +lean_dec(x_961); +lean_dec(x_15); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +if (lean_is_scalar(x_963)) { + x_980 = lean_alloc_ctor(1, 2, 0); } else { - lean_dec_ref(x_1030); - x_1033 = lean_box(0); + x_980 = x_963; + lean_ctor_set_tag(x_980, 1); +} +lean_ctor_set(x_980, 0, x_964); +lean_ctor_set(x_980, 1, x_965); +return x_980; +} +else +{ +lean_object* x_981; uint8_t x_982; +lean_dec(x_963); +x_981 = l_Lean_Elab_Term_SavedState_restore(x_961, x_10, x_11, x_12, x_13, x_14, x_15, x_965); +lean_dec(x_15); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +x_982 = !lean_is_exclusive(x_981); +if (x_982 == 0) +{ +lean_object* x_983; +x_983 = lean_ctor_get(x_981, 0); +lean_dec(x_983); +lean_ctor_set_tag(x_981, 1); +lean_ctor_set(x_981, 0, x_964); +return x_981; +} +else +{ +lean_object* x_984; lean_object* x_985; +x_984 = lean_ctor_get(x_981, 1); +lean_inc(x_984); +lean_dec(x_981); +x_985 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_985, 0, x_964); +lean_ctor_set(x_985, 1, x_984); +return x_985; +} +} +} +} +} +else +{ +lean_object* x_1004; lean_object* x_1005; lean_object* x_1006; lean_object* x_1007; lean_object* x_1008; lean_object* x_1009; lean_object* x_1010; lean_object* x_1032; +x_1004 = lean_box(0); +x_1005 = l_Lean_Elab_Term_saveAllState___rarg(x_11, x_12, x_13, x_14, x_15, x_16); +x_1006 = lean_ctor_get(x_1005, 0); +lean_inc(x_1006); +x_1007 = lean_ctor_get(x_1005, 1); +lean_inc(x_1007); +if (lean_is_exclusive(x_1005)) { + lean_ctor_release(x_1005, 0); + lean_ctor_release(x_1005, 1); + x_1008 = x_1005; +} else { + lean_dec_ref(x_1005); + x_1008 = lean_box(0); } lean_inc(x_15); lean_inc(x_14); @@ -29823,183 +29671,183 @@ lean_inc(x_13); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); -x_1057 = l_Lean_Elab_Term_elabTermEnsuringType(x_1, x_5, x_751, x_1029, x_10, x_11, x_12, x_13, x_14, x_15, x_1032); -if (lean_obj_tag(x_1057) == 0) +x_1032 = l_Lean_Elab_Term_elabTermEnsuringType(x_1, x_5, x_726, x_1004, x_10, x_11, x_12, x_13, x_14, x_15, x_1007); +if (lean_obj_tag(x_1032) == 0) { -lean_object* x_1058; lean_object* x_1059; lean_object* x_1060; lean_object* x_1061; lean_object* x_1062; lean_object* x_1063; uint8_t x_1064; -lean_dec(x_1033); -x_1058 = lean_ctor_get(x_1057, 0); -lean_inc(x_1058); -x_1059 = lean_ctor_get(x_1057, 1); -lean_inc(x_1059); -lean_dec(x_1057); -x_1060 = l_Lean_Elab_Term_saveAllState___rarg(x_11, x_12, x_13, x_14, x_15, x_1059); -x_1061 = lean_ctor_get(x_1060, 0); -lean_inc(x_1061); -x_1062 = lean_ctor_get(x_1060, 1); -lean_inc(x_1062); -lean_dec(x_1060); -x_1063 = l_Lean_Elab_Term_SavedState_restore(x_1031, x_10, x_11, x_12, x_13, x_14, x_15, x_1062); -x_1064 = !lean_is_exclusive(x_1063); -if (x_1064 == 0) -{ -lean_object* x_1065; lean_object* x_1066; lean_object* x_1067; -x_1065 = lean_ctor_get(x_1063, 1); -x_1066 = lean_ctor_get(x_1063, 0); -lean_dec(x_1066); -lean_ctor_set(x_1063, 1, x_1061); -lean_ctor_set(x_1063, 0, x_1058); -x_1067 = l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppFn___lambda__1(x_9, x_1063, x_10, x_11, x_12, x_13, x_14, x_15, x_1065); -lean_dec(x_15); -lean_dec(x_14); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -return x_1067; -} -else -{ -lean_object* x_1068; lean_object* x_1069; lean_object* x_1070; -x_1068 = lean_ctor_get(x_1063, 1); -lean_inc(x_1068); -lean_dec(x_1063); -x_1069 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1069, 0, x_1058); -lean_ctor_set(x_1069, 1, x_1061); -x_1070 = l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppFn___lambda__1(x_9, x_1069, x_10, x_11, x_12, x_13, x_14, x_15, x_1068); -lean_dec(x_15); -lean_dec(x_14); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -return x_1070; -} -} -else -{ -lean_object* x_1071; lean_object* x_1072; -x_1071 = lean_ctor_get(x_1057, 0); -lean_inc(x_1071); -x_1072 = lean_ctor_get(x_1057, 1); -lean_inc(x_1072); -lean_dec(x_1057); -x_1034 = x_1071; -x_1035 = x_1072; -goto block_1056; -} -block_1056: -{ -if (lean_obj_tag(x_1034) == 0) -{ -lean_object* x_1036; lean_object* x_1037; lean_object* x_1038; lean_object* x_1039; uint8_t x_1040; -lean_dec(x_1033); -x_1036 = l_Lean_Elab_Term_saveAllState___rarg(x_11, x_12, x_13, x_14, x_15, x_1035); -x_1037 = lean_ctor_get(x_1036, 0); +lean_object* x_1033; lean_object* x_1034; lean_object* x_1035; lean_object* x_1036; lean_object* x_1037; lean_object* x_1038; uint8_t x_1039; +lean_dec(x_1008); +x_1033 = lean_ctor_get(x_1032, 0); +lean_inc(x_1033); +x_1034 = lean_ctor_get(x_1032, 1); +lean_inc(x_1034); +lean_dec(x_1032); +x_1035 = l_Lean_Elab_Term_saveAllState___rarg(x_11, x_12, x_13, x_14, x_15, x_1034); +x_1036 = lean_ctor_get(x_1035, 0); +lean_inc(x_1036); +x_1037 = lean_ctor_get(x_1035, 1); lean_inc(x_1037); -x_1038 = lean_ctor_get(x_1036, 1); -lean_inc(x_1038); -lean_dec(x_1036); -x_1039 = l_Lean_Elab_Term_SavedState_restore(x_1031, x_10, x_11, x_12, x_13, x_14, x_15, x_1038); -x_1040 = !lean_is_exclusive(x_1039); -if (x_1040 == 0) +lean_dec(x_1035); +x_1038 = l_Lean_Elab_Term_SavedState_restore(x_1006, x_10, x_11, x_12, x_13, x_14, x_15, x_1037); +x_1039 = !lean_is_exclusive(x_1038); +if (x_1039 == 0) { -lean_object* x_1041; lean_object* x_1042; lean_object* x_1043; -x_1041 = lean_ctor_get(x_1039, 1); -x_1042 = lean_ctor_get(x_1039, 0); -lean_dec(x_1042); -lean_ctor_set_tag(x_1039, 1); -lean_ctor_set(x_1039, 1, x_1037); -lean_ctor_set(x_1039, 0, x_1034); -x_1043 = l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppFn___lambda__1(x_9, x_1039, x_10, x_11, x_12, x_13, x_14, x_15, x_1041); +lean_object* x_1040; lean_object* x_1041; lean_object* x_1042; +x_1040 = lean_ctor_get(x_1038, 1); +x_1041 = lean_ctor_get(x_1038, 0); +lean_dec(x_1041); +lean_ctor_set(x_1038, 1, x_1036); +lean_ctor_set(x_1038, 0, x_1033); +x_1042 = l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppFn___lambda__1(x_9, x_1038, x_10, x_11, x_12, x_13, x_14, x_15, x_1040); lean_dec(x_15); lean_dec(x_14); lean_dec(x_13); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); -return x_1043; +return x_1042; } else { -lean_object* x_1044; lean_object* x_1045; lean_object* x_1046; -x_1044 = lean_ctor_get(x_1039, 1); -lean_inc(x_1044); -lean_dec(x_1039); -x_1045 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1045, 0, x_1034); -lean_ctor_set(x_1045, 1, x_1037); -x_1046 = l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppFn___lambda__1(x_9, x_1045, x_10, x_11, x_12, x_13, x_14, x_15, x_1044); +lean_object* x_1043; lean_object* x_1044; lean_object* x_1045; +x_1043 = lean_ctor_get(x_1038, 1); +lean_inc(x_1043); +lean_dec(x_1038); +x_1044 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1044, 0, x_1033); +lean_ctor_set(x_1044, 1, x_1036); +x_1045 = l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppFn___lambda__1(x_9, x_1044, x_10, x_11, x_12, x_13, x_14, x_15, x_1043); lean_dec(x_15); lean_dec(x_14); lean_dec(x_13); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); -return x_1046; +return x_1045; } } else { -lean_object* x_1047; lean_object* x_1048; uint8_t x_1049; -lean_dec(x_9); -x_1047 = lean_ctor_get(x_1034, 0); +lean_object* x_1046; lean_object* x_1047; +x_1046 = lean_ctor_get(x_1032, 0); +lean_inc(x_1046); +x_1047 = lean_ctor_get(x_1032, 1); lean_inc(x_1047); -x_1048 = l_Lean_Elab_postponeExceptionId; -x_1049 = lean_nat_dec_eq(x_1047, x_1048); -lean_dec(x_1047); -if (x_1049 == 0) +lean_dec(x_1032); +x_1009 = x_1046; +x_1010 = x_1047; +goto block_1031; +} +block_1031: { -lean_object* x_1050; -lean_dec(x_1031); +if (lean_obj_tag(x_1009) == 0) +{ +lean_object* x_1011; lean_object* x_1012; lean_object* x_1013; lean_object* x_1014; uint8_t x_1015; +lean_dec(x_1008); +x_1011 = l_Lean_Elab_Term_saveAllState___rarg(x_11, x_12, x_13, x_14, x_15, x_1010); +x_1012 = lean_ctor_get(x_1011, 0); +lean_inc(x_1012); +x_1013 = lean_ctor_get(x_1011, 1); +lean_inc(x_1013); +lean_dec(x_1011); +x_1014 = l_Lean_Elab_Term_SavedState_restore(x_1006, x_10, x_11, x_12, x_13, x_14, x_15, x_1013); +x_1015 = !lean_is_exclusive(x_1014); +if (x_1015 == 0) +{ +lean_object* x_1016; lean_object* x_1017; lean_object* x_1018; +x_1016 = lean_ctor_get(x_1014, 1); +x_1017 = lean_ctor_get(x_1014, 0); +lean_dec(x_1017); +lean_ctor_set_tag(x_1014, 1); +lean_ctor_set(x_1014, 1, x_1012); +lean_ctor_set(x_1014, 0, x_1009); +x_1018 = l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppFn___lambda__1(x_9, x_1014, x_10, x_11, x_12, x_13, x_14, x_15, x_1016); lean_dec(x_15); lean_dec(x_14); lean_dec(x_13); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); -if (lean_is_scalar(x_1033)) { - x_1050 = lean_alloc_ctor(1, 2, 0); +return x_1018; +} +else +{ +lean_object* x_1019; lean_object* x_1020; lean_object* x_1021; +x_1019 = lean_ctor_get(x_1014, 1); +lean_inc(x_1019); +lean_dec(x_1014); +x_1020 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1020, 0, x_1009); +lean_ctor_set(x_1020, 1, x_1012); +x_1021 = l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppFn___lambda__1(x_9, x_1020, x_10, x_11, x_12, x_13, x_14, x_15, x_1019); +lean_dec(x_15); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +return x_1021; +} +} +else +{ +lean_object* x_1022; lean_object* x_1023; uint8_t x_1024; +lean_dec(x_9); +x_1022 = lean_ctor_get(x_1009, 0); +lean_inc(x_1022); +x_1023 = l_Lean_Elab_postponeExceptionId; +x_1024 = lean_nat_dec_eq(x_1022, x_1023); +lean_dec(x_1022); +if (x_1024 == 0) +{ +lean_object* x_1025; +lean_dec(x_1006); +lean_dec(x_15); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +if (lean_is_scalar(x_1008)) { + x_1025 = lean_alloc_ctor(1, 2, 0); } else { - x_1050 = x_1033; - lean_ctor_set_tag(x_1050, 1); + x_1025 = x_1008; + lean_ctor_set_tag(x_1025, 1); } -lean_ctor_set(x_1050, 0, x_1034); -lean_ctor_set(x_1050, 1, x_1035); -return x_1050; +lean_ctor_set(x_1025, 0, x_1009); +lean_ctor_set(x_1025, 1, x_1010); +return x_1025; } else { -lean_object* x_1051; uint8_t x_1052; -lean_dec(x_1033); -x_1051 = l_Lean_Elab_Term_SavedState_restore(x_1031, x_10, x_11, x_12, x_13, x_14, x_15, x_1035); +lean_object* x_1026; uint8_t x_1027; +lean_dec(x_1008); +x_1026 = l_Lean_Elab_Term_SavedState_restore(x_1006, x_10, x_11, x_12, x_13, x_14, x_15, x_1010); lean_dec(x_15); lean_dec(x_14); lean_dec(x_13); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); -x_1052 = !lean_is_exclusive(x_1051); -if (x_1052 == 0) +x_1027 = !lean_is_exclusive(x_1026); +if (x_1027 == 0) { -lean_object* x_1053; -x_1053 = lean_ctor_get(x_1051, 0); -lean_dec(x_1053); -lean_ctor_set_tag(x_1051, 1); -lean_ctor_set(x_1051, 0, x_1034); -return x_1051; +lean_object* x_1028; +x_1028 = lean_ctor_get(x_1026, 0); +lean_dec(x_1028); +lean_ctor_set_tag(x_1026, 1); +lean_ctor_set(x_1026, 0, x_1009); +return x_1026; } else { -lean_object* x_1054; lean_object* x_1055; -x_1054 = lean_ctor_get(x_1051, 1); -lean_inc(x_1054); -lean_dec(x_1051); -x_1055 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1055, 0, x_1034); -lean_ctor_set(x_1055, 1, x_1054); -return x_1055; +lean_object* x_1029; lean_object* x_1030; +x_1029 = lean_ctor_get(x_1026, 1); +lean_inc(x_1029); +lean_dec(x_1026); +x_1030 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1030, 0, x_1009); +lean_ctor_set(x_1030, 1, x_1029); +return x_1030; } } } @@ -30012,125 +29860,125 @@ return x_1055; } else { -lean_object* x_1076; lean_object* x_1077; +lean_object* x_1051; lean_object* x_1052; lean_dec(x_9); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_1076 = l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppFn___closed__15; -x_1077 = l_Lean_throwError___at_Lean_Elab_Term_throwErrorIfErrors___spec__1___rarg(x_1076, x_10, x_11, x_12, x_13, x_14, x_15, x_16); +x_1051 = l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppFn___closed__15; +x_1052 = l_Lean_throwError___at_Lean_Elab_Term_throwErrorIfErrors___spec__1___rarg(x_1051, x_10, x_11, x_12, x_13, x_14, x_15, x_16); lean_dec(x_15); lean_dec(x_14); lean_dec(x_13); lean_dec(x_12); lean_dec(x_11); -return x_1077; +return x_1052; } } } else { -lean_object* x_1078; lean_object* x_1079; lean_object* x_1080; lean_object* x_1081; lean_object* x_1082; lean_object* x_1083; -x_1078 = lean_unsigned_to_nat(0u); -x_1079 = l_Lean_Syntax_getArg(x_1, x_1078); -x_1080 = lean_unsigned_to_nat(2u); -x_1081 = l_Lean_Syntax_getArg(x_1, x_1080); +lean_object* x_1053; lean_object* x_1054; lean_object* x_1055; lean_object* x_1056; lean_object* x_1057; lean_object* x_1058; +x_1053 = lean_unsigned_to_nat(0u); +x_1054 = l_Lean_Syntax_getArg(x_1, x_1053); +x_1055 = lean_unsigned_to_nat(2u); +x_1056 = l_Lean_Syntax_getArg(x_1, x_1055); lean_dec(x_1); -x_1082 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_1082, 0, x_1081); -x_1083 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1083, 0, x_1082); -lean_ctor_set(x_1083, 1, x_2); -x_1 = x_1079; -x_2 = x_1083; +x_1057 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_1057, 0, x_1056); +x_1058 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1058, 0, x_1057); +lean_ctor_set(x_1058, 1, x_2); +x_1 = x_1054; +x_2 = x_1058; goto _start; } } else { -lean_object* x_1085; lean_object* x_1086; lean_object* x_1087; lean_object* x_1088; lean_object* x_1089; lean_object* x_1090; lean_object* x_1091; lean_object* x_1092; lean_object* x_1093; lean_object* x_1094; lean_object* x_1095; lean_object* x_1096; lean_object* x_1097; lean_object* x_1098; -x_1085 = lean_unsigned_to_nat(0u); -x_1086 = l_Lean_Syntax_getArg(x_1, x_1085); -x_1087 = lean_unsigned_to_nat(2u); -x_1088 = l_Lean_Syntax_getArg(x_1, x_1087); +lean_object* x_1060; lean_object* x_1061; lean_object* x_1062; lean_object* x_1063; lean_object* x_1064; lean_object* x_1065; lean_object* x_1066; lean_object* x_1067; lean_object* x_1068; lean_object* x_1069; lean_object* x_1070; lean_object* x_1071; lean_object* x_1072; lean_object* x_1073; +x_1060 = lean_unsigned_to_nat(0u); +x_1061 = l_Lean_Syntax_getArg(x_1, x_1060); +x_1062 = lean_unsigned_to_nat(2u); +x_1063 = l_Lean_Syntax_getArg(x_1, x_1062); lean_dec(x_1); -x_1089 = l_Lean_Elab_Term_getCurrMacroScope(x_10, x_11, x_12, x_13, x_14, x_15, x_16); -x_1090 = lean_ctor_get(x_1089, 1); -lean_inc(x_1090); -lean_dec(x_1089); -x_1091 = l_Lean_Elab_Term_getMainModule___rarg(x_15, x_1090); -x_1092 = lean_ctor_get(x_1091, 1); -lean_inc(x_1092); -lean_dec(x_1091); -x_1093 = l_Array_empty___closed__1; -x_1094 = lean_array_push(x_1093, x_1086); -x_1095 = l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppFn___closed__16; -x_1096 = lean_array_push(x_1094, x_1095); -x_1097 = lean_array_push(x_1096, x_1088); -x_1098 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1098, 0, x_20); -lean_ctor_set(x_1098, 1, x_1097); -x_1 = x_1098; -x_16 = x_1092; +x_1064 = l_Lean_Elab_Term_getCurrMacroScope(x_10, x_11, x_12, x_13, x_14, x_15, x_16); +x_1065 = lean_ctor_get(x_1064, 1); +lean_inc(x_1065); +lean_dec(x_1064); +x_1066 = l_Lean_Elab_Term_getMainModule___rarg(x_15, x_1065); +x_1067 = lean_ctor_get(x_1066, 1); +lean_inc(x_1067); +lean_dec(x_1066); +x_1068 = l_Array_empty___closed__1; +x_1069 = lean_array_push(x_1068, x_1061); +x_1070 = l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppFn___closed__16; +x_1071 = lean_array_push(x_1069, x_1070); +x_1072 = lean_array_push(x_1071, x_1063); +x_1073 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1073, 0, x_20); +lean_ctor_set(x_1073, 1, x_1072); +x_1 = x_1073; +x_16 = x_1067; goto _start; } } else { -lean_object* x_1100; lean_object* x_1101; lean_object* x_1102; lean_object* x_1103; lean_object* x_1104; uint8_t x_1105; -x_1100 = lean_unsigned_to_nat(0u); -x_1101 = l_Lean_Syntax_getArg(x_1, x_1100); -x_1102 = lean_unsigned_to_nat(2u); -x_1103 = l_Lean_Syntax_getArg(x_1, x_1102); -x_1104 = l_Lean_fieldIdxKind___closed__2; -lean_inc(x_1103); -x_1105 = l_Lean_Syntax_isOfKind(x_1103, x_1104); -if (x_1105 == 0) +lean_object* x_1075; lean_object* x_1076; lean_object* x_1077; lean_object* x_1078; lean_object* x_1079; uint8_t x_1080; +x_1075 = lean_unsigned_to_nat(0u); +x_1076 = l_Lean_Syntax_getArg(x_1, x_1075); +x_1077 = lean_unsigned_to_nat(2u); +x_1078 = l_Lean_Syntax_getArg(x_1, x_1077); +x_1079 = l_Lean_fieldIdxKind___closed__2; +lean_inc(x_1078); +x_1080 = l_Lean_Syntax_isOfKind(x_1078, x_1079); +if (x_1080 == 0) { -lean_object* x_1106; uint8_t x_1107; -x_1106 = l_Lean_identKind___closed__2; -lean_inc(x_1103); -x_1107 = l_Lean_Syntax_isOfKind(x_1103, x_1106); -if (x_1107 == 0) +lean_object* x_1081; uint8_t x_1082; +x_1081 = l_Lean_identKind___closed__2; +lean_inc(x_1078); +x_1082 = l_Lean_Syntax_isOfKind(x_1078, x_1081); +if (x_1082 == 0) { -uint8_t x_1108; uint8_t x_1109; -lean_dec(x_1103); -lean_dec(x_1101); -x_1108 = l_List_isEmpty___rarg(x_2); +uint8_t x_1083; uint8_t x_1084; +lean_dec(x_1078); +lean_dec(x_1076); +x_1083 = l_List_isEmpty___rarg(x_2); if (x_8 == 0) { -uint8_t x_1432; -x_1432 = 1; -x_1109 = x_1432; -goto block_1431; +uint8_t x_1407; +x_1407 = 1; +x_1084 = x_1407; +goto block_1406; } else { -uint8_t x_1433; -x_1433 = 0; -x_1109 = x_1433; -goto block_1431; +uint8_t x_1408; +x_1408 = 0; +x_1084 = x_1408; +goto block_1406; } -block_1431: +block_1406: { -if (x_1108 == 0) +if (x_1083 == 0) { -lean_object* x_1110; lean_object* x_1111; lean_object* x_1112; lean_object* x_1113; lean_object* x_1114; lean_object* x_1115; lean_object* x_1116; lean_object* x_1147; lean_object* x_1148; lean_object* x_1170; -x_1110 = lean_box(0); -x_1111 = l_Lean_Elab_Term_saveAllState___rarg(x_11, x_12, x_13, x_14, x_15, x_16); -x_1112 = lean_ctor_get(x_1111, 0); -lean_inc(x_1112); -x_1113 = lean_ctor_get(x_1111, 1); -lean_inc(x_1113); -if (lean_is_exclusive(x_1111)) { - lean_ctor_release(x_1111, 0); - lean_ctor_release(x_1111, 1); - x_1114 = x_1111; +lean_object* x_1085; lean_object* x_1086; lean_object* x_1087; lean_object* x_1088; lean_object* x_1089; lean_object* x_1090; lean_object* x_1091; lean_object* x_1122; lean_object* x_1123; lean_object* x_1145; +x_1085 = lean_box(0); +x_1086 = l_Lean_Elab_Term_saveAllState___rarg(x_11, x_12, x_13, x_14, x_15, x_16); +x_1087 = lean_ctor_get(x_1086, 0); +lean_inc(x_1087); +x_1088 = lean_ctor_get(x_1086, 1); +lean_inc(x_1088); +if (lean_is_exclusive(x_1086)) { + lean_ctor_release(x_1086, 0); + lean_ctor_release(x_1086, 1); + x_1089 = x_1086; } else { - lean_dec_ref(x_1111); - x_1114 = lean_box(0); + lean_dec_ref(x_1086); + x_1089 = lean_box(0); } lean_inc(x_15); lean_inc(x_14); @@ -30138,15 +29986,15 @@ lean_inc(x_13); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); -x_1170 = l_Lean_Elab_Term_elabTerm(x_1, x_1110, x_1109, x_10, x_11, x_12, x_13, x_14, x_15, x_1113); -if (lean_obj_tag(x_1170) == 0) +x_1145 = l_Lean_Elab_Term_elabTerm(x_1, x_1085, x_1084, x_10, x_11, x_12, x_13, x_14, x_15, x_1088); +if (lean_obj_tag(x_1145) == 0) { -lean_object* x_1171; lean_object* x_1172; lean_object* x_1173; -x_1171 = lean_ctor_get(x_1170, 0); -lean_inc(x_1171); -x_1172 = lean_ctor_get(x_1170, 1); -lean_inc(x_1172); -lean_dec(x_1170); +lean_object* x_1146; lean_object* x_1147; lean_object* x_1148; +x_1146 = lean_ctor_get(x_1145, 0); +lean_inc(x_1146); +x_1147 = lean_ctor_get(x_1145, 1); +lean_inc(x_1147); +lean_dec(x_1145); lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); @@ -30154,355 +30002,727 @@ lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); lean_inc(x_5); -x_1173 = l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppLVals(x_1171, x_2, x_3, x_4, x_5, x_6, x_7, x_10, x_11, x_12, x_13, x_14, x_15, x_1172); -if (lean_obj_tag(x_1173) == 0) +x_1148 = l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppLVals(x_1146, x_2, x_3, x_4, x_5, x_6, x_7, x_10, x_11, x_12, x_13, x_14, x_15, x_1147); +if (lean_obj_tag(x_1148) == 0) { if (x_8 == 0) { -lean_object* x_1174; lean_object* x_1175; -lean_dec(x_1114); +lean_object* x_1149; lean_object* x_1150; +lean_dec(x_1089); lean_dec(x_5); -x_1174 = lean_ctor_get(x_1173, 0); -lean_inc(x_1174); -x_1175 = lean_ctor_get(x_1173, 1); -lean_inc(x_1175); -lean_dec(x_1173); -x_1147 = x_1174; -x_1148 = x_1175; -goto block_1169; +x_1149 = lean_ctor_get(x_1148, 0); +lean_inc(x_1149); +x_1150 = lean_ctor_get(x_1148, 1); +lean_inc(x_1150); +lean_dec(x_1148); +x_1122 = x_1149; +x_1123 = x_1150; +goto block_1144; } else { +lean_object* x_1151; lean_object* x_1152; lean_object* x_1153; +x_1151 = lean_ctor_get(x_1148, 0); +lean_inc(x_1151); +x_1152 = lean_ctor_get(x_1148, 1); +lean_inc(x_1152); +lean_dec(x_1148); +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_1153 = l_Lean_Elab_Term_ensureHasType(x_5, x_1151, x_1085, x_10, x_11, x_12, x_13, x_14, x_15, x_1152); +if (lean_obj_tag(x_1153) == 0) +{ +lean_object* x_1154; lean_object* x_1155; +lean_dec(x_1089); +x_1154 = lean_ctor_get(x_1153, 0); +lean_inc(x_1154); +x_1155 = lean_ctor_get(x_1153, 1); +lean_inc(x_1155); +lean_dec(x_1153); +x_1122 = x_1154; +x_1123 = x_1155; +goto block_1144; +} +else +{ +lean_object* x_1156; lean_object* x_1157; +x_1156 = lean_ctor_get(x_1153, 0); +lean_inc(x_1156); +x_1157 = lean_ctor_get(x_1153, 1); +lean_inc(x_1157); +lean_dec(x_1153); +x_1090 = x_1156; +x_1091 = x_1157; +goto block_1121; +} +} +} +else +{ +lean_object* x_1158; lean_object* x_1159; +lean_dec(x_5); +x_1158 = lean_ctor_get(x_1148, 0); +lean_inc(x_1158); +x_1159 = lean_ctor_get(x_1148, 1); +lean_inc(x_1159); +lean_dec(x_1148); +x_1090 = x_1158; +x_1091 = x_1159; +goto block_1121; +} +} +else +{ +lean_object* x_1160; lean_object* x_1161; +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_1160 = lean_ctor_get(x_1145, 0); +lean_inc(x_1160); +x_1161 = lean_ctor_get(x_1145, 1); +lean_inc(x_1161); +lean_dec(x_1145); +x_1090 = x_1160; +x_1091 = x_1161; +goto block_1121; +} +block_1121: +{ +if (lean_obj_tag(x_1090) == 0) +{ +lean_object* x_1092; uint8_t x_1093; +lean_dec(x_1089); +x_1092 = l_Lean_Elab_Term_saveAllState___rarg(x_11, x_12, x_13, x_14, x_15, x_1091); +x_1093 = !lean_is_exclusive(x_1092); +if (x_1093 == 0) +{ +lean_object* x_1094; lean_object* x_1095; lean_object* x_1096; uint8_t x_1097; +x_1094 = lean_ctor_get(x_1092, 0); +x_1095 = lean_ctor_get(x_1092, 1); +x_1096 = l_Lean_Elab_Term_SavedState_restore(x_1087, x_10, x_11, x_12, x_13, x_14, x_15, x_1095); +lean_dec(x_15); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +x_1097 = !lean_is_exclusive(x_1096); +if (x_1097 == 0) +{ +lean_object* x_1098; lean_object* x_1099; lean_object* x_1100; +x_1098 = lean_ctor_get(x_1096, 1); +x_1099 = lean_ctor_get(x_1096, 0); +lean_dec(x_1099); +lean_ctor_set_tag(x_1096, 1); +lean_ctor_set(x_1096, 1, x_1094); +lean_ctor_set(x_1096, 0, x_1090); +x_1100 = lean_array_push(x_9, x_1096); +lean_ctor_set(x_1092, 1, x_1098); +lean_ctor_set(x_1092, 0, x_1100); +return x_1092; +} +else +{ +lean_object* x_1101; lean_object* x_1102; lean_object* x_1103; +x_1101 = lean_ctor_get(x_1096, 1); +lean_inc(x_1101); +lean_dec(x_1096); +x_1102 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1102, 0, x_1090); +lean_ctor_set(x_1102, 1, x_1094); +x_1103 = lean_array_push(x_9, x_1102); +lean_ctor_set(x_1092, 1, x_1101); +lean_ctor_set(x_1092, 0, x_1103); +return x_1092; +} +} +else +{ +lean_object* x_1104; lean_object* x_1105; lean_object* x_1106; lean_object* x_1107; lean_object* x_1108; lean_object* x_1109; lean_object* x_1110; lean_object* x_1111; +x_1104 = lean_ctor_get(x_1092, 0); +x_1105 = lean_ctor_get(x_1092, 1); +lean_inc(x_1105); +lean_inc(x_1104); +lean_dec(x_1092); +x_1106 = l_Lean_Elab_Term_SavedState_restore(x_1087, x_10, x_11, x_12, x_13, x_14, x_15, x_1105); +lean_dec(x_15); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +x_1107 = lean_ctor_get(x_1106, 1); +lean_inc(x_1107); +if (lean_is_exclusive(x_1106)) { + lean_ctor_release(x_1106, 0); + lean_ctor_release(x_1106, 1); + x_1108 = x_1106; +} else { + lean_dec_ref(x_1106); + x_1108 = lean_box(0); +} +if (lean_is_scalar(x_1108)) { + x_1109 = lean_alloc_ctor(1, 2, 0); +} else { + x_1109 = x_1108; + lean_ctor_set_tag(x_1109, 1); +} +lean_ctor_set(x_1109, 0, x_1090); +lean_ctor_set(x_1109, 1, x_1104); +x_1110 = lean_array_push(x_9, x_1109); +x_1111 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1111, 0, x_1110); +lean_ctor_set(x_1111, 1, x_1107); +return x_1111; +} +} +else +{ +lean_object* x_1112; lean_object* x_1113; uint8_t x_1114; +lean_dec(x_9); +x_1112 = lean_ctor_get(x_1090, 0); +lean_inc(x_1112); +x_1113 = l_Lean_Elab_postponeExceptionId; +x_1114 = lean_nat_dec_eq(x_1112, x_1113); +lean_dec(x_1112); +if (x_1114 == 0) +{ +lean_object* x_1115; +lean_dec(x_1087); +lean_dec(x_15); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +if (lean_is_scalar(x_1089)) { + x_1115 = lean_alloc_ctor(1, 2, 0); +} else { + x_1115 = x_1089; + lean_ctor_set_tag(x_1115, 1); +} +lean_ctor_set(x_1115, 0, x_1090); +lean_ctor_set(x_1115, 1, x_1091); +return x_1115; +} +else +{ +lean_object* x_1116; uint8_t x_1117; +lean_dec(x_1089); +x_1116 = l_Lean_Elab_Term_SavedState_restore(x_1087, x_10, x_11, x_12, x_13, x_14, x_15, x_1091); +lean_dec(x_15); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +x_1117 = !lean_is_exclusive(x_1116); +if (x_1117 == 0) +{ +lean_object* x_1118; +x_1118 = lean_ctor_get(x_1116, 0); +lean_dec(x_1118); +lean_ctor_set_tag(x_1116, 1); +lean_ctor_set(x_1116, 0, x_1090); +return x_1116; +} +else +{ +lean_object* x_1119; lean_object* x_1120; +x_1119 = lean_ctor_get(x_1116, 1); +lean_inc(x_1119); +lean_dec(x_1116); +x_1120 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1120, 0, x_1090); +lean_ctor_set(x_1120, 1, x_1119); +return x_1120; +} +} +} +} +block_1144: +{ +lean_object* x_1124; uint8_t x_1125; +x_1124 = l_Lean_Elab_Term_saveAllState___rarg(x_11, x_12, x_13, x_14, x_15, x_1123); +x_1125 = !lean_is_exclusive(x_1124); +if (x_1125 == 0) +{ +lean_object* x_1126; lean_object* x_1127; lean_object* x_1128; uint8_t x_1129; +x_1126 = lean_ctor_get(x_1124, 0); +x_1127 = lean_ctor_get(x_1124, 1); +x_1128 = l_Lean_Elab_Term_SavedState_restore(x_1087, x_10, x_11, x_12, x_13, x_14, x_15, x_1127); +lean_dec(x_15); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +x_1129 = !lean_is_exclusive(x_1128); +if (x_1129 == 0) +{ +lean_object* x_1130; lean_object* x_1131; lean_object* x_1132; +x_1130 = lean_ctor_get(x_1128, 1); +x_1131 = lean_ctor_get(x_1128, 0); +lean_dec(x_1131); +lean_ctor_set(x_1128, 1, x_1126); +lean_ctor_set(x_1128, 0, x_1122); +x_1132 = lean_array_push(x_9, x_1128); +lean_ctor_set(x_1124, 1, x_1130); +lean_ctor_set(x_1124, 0, x_1132); +return x_1124; +} +else +{ +lean_object* x_1133; lean_object* x_1134; lean_object* x_1135; +x_1133 = lean_ctor_get(x_1128, 1); +lean_inc(x_1133); +lean_dec(x_1128); +x_1134 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1134, 0, x_1122); +lean_ctor_set(x_1134, 1, x_1126); +x_1135 = lean_array_push(x_9, x_1134); +lean_ctor_set(x_1124, 1, x_1133); +lean_ctor_set(x_1124, 0, x_1135); +return x_1124; +} +} +else +{ +lean_object* x_1136; lean_object* x_1137; lean_object* x_1138; lean_object* x_1139; lean_object* x_1140; lean_object* x_1141; lean_object* x_1142; lean_object* x_1143; +x_1136 = lean_ctor_get(x_1124, 0); +x_1137 = lean_ctor_get(x_1124, 1); +lean_inc(x_1137); +lean_inc(x_1136); +lean_dec(x_1124); +x_1138 = l_Lean_Elab_Term_SavedState_restore(x_1087, x_10, x_11, x_12, x_13, x_14, x_15, x_1137); +lean_dec(x_15); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +x_1139 = lean_ctor_get(x_1138, 1); +lean_inc(x_1139); +if (lean_is_exclusive(x_1138)) { + lean_ctor_release(x_1138, 0); + lean_ctor_release(x_1138, 1); + x_1140 = x_1138; +} else { + lean_dec_ref(x_1138); + x_1140 = lean_box(0); +} +if (lean_is_scalar(x_1140)) { + x_1141 = lean_alloc_ctor(0, 2, 0); +} else { + x_1141 = x_1140; +} +lean_ctor_set(x_1141, 0, x_1122); +lean_ctor_set(x_1141, 1, x_1136); +x_1142 = lean_array_push(x_9, x_1141); +x_1143 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1143, 0, x_1142); +lean_ctor_set(x_1143, 1, x_1139); +return x_1143; +} +} +} +else +{ +uint8_t x_1162; +x_1162 = l_Array_isEmpty___rarg(x_3); +if (x_1162 == 0) +{ +lean_object* x_1163; lean_object* x_1164; lean_object* x_1165; lean_object* x_1166; lean_object* x_1167; lean_object* x_1168; lean_object* x_1169; lean_object* x_1200; lean_object* x_1201; lean_object* x_1223; +x_1163 = lean_box(0); +x_1164 = l_Lean_Elab_Term_saveAllState___rarg(x_11, x_12, x_13, x_14, x_15, x_16); +x_1165 = lean_ctor_get(x_1164, 0); +lean_inc(x_1165); +x_1166 = lean_ctor_get(x_1164, 1); +lean_inc(x_1166); +if (lean_is_exclusive(x_1164)) { + lean_ctor_release(x_1164, 0); + lean_ctor_release(x_1164, 1); + x_1167 = x_1164; +} else { + lean_dec_ref(x_1164); + x_1167 = lean_box(0); +} +lean_inc(x_15); +lean_inc(x_14); +lean_inc(x_13); +lean_inc(x_12); +lean_inc(x_11); +lean_inc(x_10); +x_1223 = l_Lean_Elab_Term_elabTerm(x_1, x_1163, x_1084, x_10, x_11, x_12, x_13, x_14, x_15, x_1166); +if (lean_obj_tag(x_1223) == 0) +{ +lean_object* x_1224; lean_object* x_1225; lean_object* x_1226; +x_1224 = lean_ctor_get(x_1223, 0); +lean_inc(x_1224); +x_1225 = lean_ctor_get(x_1223, 1); +lean_inc(x_1225); +lean_dec(x_1223); +lean_inc(x_15); +lean_inc(x_14); +lean_inc(x_13); +lean_inc(x_12); +lean_inc(x_11); +lean_inc(x_10); +lean_inc(x_5); +x_1226 = l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppLVals(x_1224, x_2, x_3, x_4, x_5, x_6, x_7, x_10, x_11, x_12, x_13, x_14, x_15, x_1225); +if (lean_obj_tag(x_1226) == 0) +{ +if (x_8 == 0) +{ +lean_object* x_1227; lean_object* x_1228; +lean_dec(x_1167); +lean_dec(x_5); +x_1227 = lean_ctor_get(x_1226, 0); +lean_inc(x_1227); +x_1228 = lean_ctor_get(x_1226, 1); +lean_inc(x_1228); +lean_dec(x_1226); +x_1200 = x_1227; +x_1201 = x_1228; +goto block_1222; +} +else +{ +lean_object* x_1229; lean_object* x_1230; lean_object* x_1231; +x_1229 = lean_ctor_get(x_1226, 0); +lean_inc(x_1229); +x_1230 = lean_ctor_get(x_1226, 1); +lean_inc(x_1230); +lean_dec(x_1226); +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_1231 = l_Lean_Elab_Term_ensureHasType(x_5, x_1229, x_1163, x_10, x_11, x_12, x_13, x_14, x_15, x_1230); +if (lean_obj_tag(x_1231) == 0) +{ +lean_object* x_1232; lean_object* x_1233; +lean_dec(x_1167); +x_1232 = lean_ctor_get(x_1231, 0); +lean_inc(x_1232); +x_1233 = lean_ctor_get(x_1231, 1); +lean_inc(x_1233); +lean_dec(x_1231); +x_1200 = x_1232; +x_1201 = x_1233; +goto block_1222; +} +else +{ +lean_object* x_1234; lean_object* x_1235; +x_1234 = lean_ctor_get(x_1231, 0); +lean_inc(x_1234); +x_1235 = lean_ctor_get(x_1231, 1); +lean_inc(x_1235); +lean_dec(x_1231); +x_1168 = x_1234; +x_1169 = x_1235; +goto block_1199; +} +} +} +else +{ +lean_object* x_1236; lean_object* x_1237; +lean_dec(x_5); +x_1236 = lean_ctor_get(x_1226, 0); +lean_inc(x_1236); +x_1237 = lean_ctor_get(x_1226, 1); +lean_inc(x_1237); +lean_dec(x_1226); +x_1168 = x_1236; +x_1169 = x_1237; +goto block_1199; +} +} +else +{ +lean_object* x_1238; lean_object* x_1239; +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_1238 = lean_ctor_get(x_1223, 0); +lean_inc(x_1238); +x_1239 = lean_ctor_get(x_1223, 1); +lean_inc(x_1239); +lean_dec(x_1223); +x_1168 = x_1238; +x_1169 = x_1239; +goto block_1199; +} +block_1199: +{ +if (lean_obj_tag(x_1168) == 0) +{ +lean_object* x_1170; uint8_t x_1171; +lean_dec(x_1167); +x_1170 = l_Lean_Elab_Term_saveAllState___rarg(x_11, x_12, x_13, x_14, x_15, x_1169); +x_1171 = !lean_is_exclusive(x_1170); +if (x_1171 == 0) +{ +lean_object* x_1172; lean_object* x_1173; lean_object* x_1174; uint8_t x_1175; +x_1172 = lean_ctor_get(x_1170, 0); +x_1173 = lean_ctor_get(x_1170, 1); +x_1174 = l_Lean_Elab_Term_SavedState_restore(x_1165, x_10, x_11, x_12, x_13, x_14, x_15, x_1173); +lean_dec(x_15); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +x_1175 = !lean_is_exclusive(x_1174); +if (x_1175 == 0) +{ lean_object* x_1176; lean_object* x_1177; lean_object* x_1178; -x_1176 = lean_ctor_get(x_1173, 0); -lean_inc(x_1176); -x_1177 = lean_ctor_get(x_1173, 1); -lean_inc(x_1177); -lean_dec(x_1173); -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_1178 = l_Lean_Elab_Term_ensureHasType(x_5, x_1176, x_1110, x_10, x_11, x_12, x_13, x_14, x_15, x_1177); -if (lean_obj_tag(x_1178) == 0) +x_1176 = lean_ctor_get(x_1174, 1); +x_1177 = lean_ctor_get(x_1174, 0); +lean_dec(x_1177); +lean_ctor_set_tag(x_1174, 1); +lean_ctor_set(x_1174, 1, x_1172); +lean_ctor_set(x_1174, 0, x_1168); +x_1178 = lean_array_push(x_9, x_1174); +lean_ctor_set(x_1170, 1, x_1176); +lean_ctor_set(x_1170, 0, x_1178); +return x_1170; +} +else { -lean_object* x_1179; lean_object* x_1180; -lean_dec(x_1114); -x_1179 = lean_ctor_get(x_1178, 0); +lean_object* x_1179; lean_object* x_1180; lean_object* x_1181; +x_1179 = lean_ctor_get(x_1174, 1); lean_inc(x_1179); -x_1180 = lean_ctor_get(x_1178, 1); -lean_inc(x_1180); -lean_dec(x_1178); -x_1147 = x_1179; -x_1148 = x_1180; -goto block_1169; -} -else -{ -lean_object* x_1181; lean_object* x_1182; -x_1181 = lean_ctor_get(x_1178, 0); -lean_inc(x_1181); -x_1182 = lean_ctor_get(x_1178, 1); -lean_inc(x_1182); -lean_dec(x_1178); -x_1115 = x_1181; -x_1116 = x_1182; -goto block_1146; -} +lean_dec(x_1174); +x_1180 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1180, 0, x_1168); +lean_ctor_set(x_1180, 1, x_1172); +x_1181 = lean_array_push(x_9, x_1180); +lean_ctor_set(x_1170, 1, x_1179); +lean_ctor_set(x_1170, 0, x_1181); +return x_1170; } } else { -lean_object* x_1183; lean_object* x_1184; -lean_dec(x_5); -x_1183 = lean_ctor_get(x_1173, 0); +lean_object* x_1182; lean_object* x_1183; lean_object* x_1184; lean_object* x_1185; lean_object* x_1186; lean_object* x_1187; lean_object* x_1188; lean_object* x_1189; +x_1182 = lean_ctor_get(x_1170, 0); +x_1183 = lean_ctor_get(x_1170, 1); lean_inc(x_1183); -x_1184 = lean_ctor_get(x_1173, 1); -lean_inc(x_1184); -lean_dec(x_1173); -x_1115 = x_1183; -x_1116 = x_1184; -goto block_1146; -} -} -else -{ -lean_object* x_1185; lean_object* x_1186; -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -x_1185 = lean_ctor_get(x_1170, 0); -lean_inc(x_1185); -x_1186 = lean_ctor_get(x_1170, 1); -lean_inc(x_1186); +lean_inc(x_1182); lean_dec(x_1170); -x_1115 = x_1185; -x_1116 = x_1186; -goto block_1146; -} -block_1146: -{ -if (lean_obj_tag(x_1115) == 0) -{ -lean_object* x_1117; uint8_t x_1118; -lean_dec(x_1114); -x_1117 = l_Lean_Elab_Term_saveAllState___rarg(x_11, x_12, x_13, x_14, x_15, x_1116); -x_1118 = !lean_is_exclusive(x_1117); -if (x_1118 == 0) -{ -lean_object* x_1119; lean_object* x_1120; lean_object* x_1121; uint8_t x_1122; -x_1119 = lean_ctor_get(x_1117, 0); -x_1120 = lean_ctor_get(x_1117, 1); -x_1121 = l_Lean_Elab_Term_SavedState_restore(x_1112, x_10, x_11, x_12, x_13, x_14, x_15, x_1120); +x_1184 = l_Lean_Elab_Term_SavedState_restore(x_1165, x_10, x_11, x_12, x_13, x_14, x_15, x_1183); lean_dec(x_15); lean_dec(x_14); lean_dec(x_13); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); -x_1122 = !lean_is_exclusive(x_1121); -if (x_1122 == 0) -{ -lean_object* x_1123; lean_object* x_1124; lean_object* x_1125; -x_1123 = lean_ctor_get(x_1121, 1); -x_1124 = lean_ctor_get(x_1121, 0); -lean_dec(x_1124); -lean_ctor_set_tag(x_1121, 1); -lean_ctor_set(x_1121, 1, x_1119); -lean_ctor_set(x_1121, 0, x_1115); -x_1125 = lean_array_push(x_9, x_1121); -lean_ctor_set(x_1117, 1, x_1123); -lean_ctor_set(x_1117, 0, x_1125); -return x_1117; -} -else -{ -lean_object* x_1126; lean_object* x_1127; lean_object* x_1128; -x_1126 = lean_ctor_get(x_1121, 1); -lean_inc(x_1126); -lean_dec(x_1121); -x_1127 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1127, 0, x_1115); -lean_ctor_set(x_1127, 1, x_1119); -x_1128 = lean_array_push(x_9, x_1127); -lean_ctor_set(x_1117, 1, x_1126); -lean_ctor_set(x_1117, 0, x_1128); -return x_1117; -} -} -else -{ -lean_object* x_1129; lean_object* x_1130; lean_object* x_1131; lean_object* x_1132; lean_object* x_1133; lean_object* x_1134; lean_object* x_1135; lean_object* x_1136; -x_1129 = lean_ctor_get(x_1117, 0); -x_1130 = lean_ctor_get(x_1117, 1); -lean_inc(x_1130); -lean_inc(x_1129); -lean_dec(x_1117); -x_1131 = l_Lean_Elab_Term_SavedState_restore(x_1112, x_10, x_11, x_12, x_13, x_14, x_15, x_1130); -lean_dec(x_15); -lean_dec(x_14); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -x_1132 = lean_ctor_get(x_1131, 1); -lean_inc(x_1132); -if (lean_is_exclusive(x_1131)) { - lean_ctor_release(x_1131, 0); - lean_ctor_release(x_1131, 1); - x_1133 = x_1131; +x_1185 = lean_ctor_get(x_1184, 1); +lean_inc(x_1185); +if (lean_is_exclusive(x_1184)) { + lean_ctor_release(x_1184, 0); + lean_ctor_release(x_1184, 1); + x_1186 = x_1184; } else { - lean_dec_ref(x_1131); - x_1133 = lean_box(0); + lean_dec_ref(x_1184); + x_1186 = lean_box(0); } -if (lean_is_scalar(x_1133)) { - x_1134 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_1186)) { + x_1187 = lean_alloc_ctor(1, 2, 0); } else { - x_1134 = x_1133; - lean_ctor_set_tag(x_1134, 1); + x_1187 = x_1186; + lean_ctor_set_tag(x_1187, 1); } -lean_ctor_set(x_1134, 0, x_1115); -lean_ctor_set(x_1134, 1, x_1129); -x_1135 = lean_array_push(x_9, x_1134); -x_1136 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1136, 0, x_1135); -lean_ctor_set(x_1136, 1, x_1132); -return x_1136; +lean_ctor_set(x_1187, 0, x_1168); +lean_ctor_set(x_1187, 1, x_1182); +x_1188 = lean_array_push(x_9, x_1187); +x_1189 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1189, 0, x_1188); +lean_ctor_set(x_1189, 1, x_1185); +return x_1189; } } else { -lean_object* x_1137; lean_object* x_1138; uint8_t x_1139; +lean_object* x_1190; lean_object* x_1191; uint8_t x_1192; lean_dec(x_9); -x_1137 = lean_ctor_get(x_1115, 0); -lean_inc(x_1137); -x_1138 = l_Lean_Elab_postponeExceptionId; -x_1139 = lean_nat_dec_eq(x_1137, x_1138); -lean_dec(x_1137); -if (x_1139 == 0) -{ -lean_object* x_1140; -lean_dec(x_1112); -lean_dec(x_15); -lean_dec(x_14); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -if (lean_is_scalar(x_1114)) { - x_1140 = lean_alloc_ctor(1, 2, 0); -} else { - x_1140 = x_1114; - lean_ctor_set_tag(x_1140, 1); -} -lean_ctor_set(x_1140, 0, x_1115); -lean_ctor_set(x_1140, 1, x_1116); -return x_1140; -} -else -{ -lean_object* x_1141; uint8_t x_1142; -lean_dec(x_1114); -x_1141 = l_Lean_Elab_Term_SavedState_restore(x_1112, x_10, x_11, x_12, x_13, x_14, x_15, x_1116); -lean_dec(x_15); -lean_dec(x_14); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -x_1142 = !lean_is_exclusive(x_1141); -if (x_1142 == 0) -{ -lean_object* x_1143; -x_1143 = lean_ctor_get(x_1141, 0); -lean_dec(x_1143); -lean_ctor_set_tag(x_1141, 1); -lean_ctor_set(x_1141, 0, x_1115); -return x_1141; -} -else -{ -lean_object* x_1144; lean_object* x_1145; -x_1144 = lean_ctor_get(x_1141, 1); -lean_inc(x_1144); -lean_dec(x_1141); -x_1145 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1145, 0, x_1115); -lean_ctor_set(x_1145, 1, x_1144); -return x_1145; -} -} -} -} -block_1169: -{ -lean_object* x_1149; uint8_t x_1150; -x_1149 = l_Lean_Elab_Term_saveAllState___rarg(x_11, x_12, x_13, x_14, x_15, x_1148); -x_1150 = !lean_is_exclusive(x_1149); -if (x_1150 == 0) -{ -lean_object* x_1151; lean_object* x_1152; lean_object* x_1153; uint8_t x_1154; -x_1151 = lean_ctor_get(x_1149, 0); -x_1152 = lean_ctor_get(x_1149, 1); -x_1153 = l_Lean_Elab_Term_SavedState_restore(x_1112, x_10, x_11, x_12, x_13, x_14, x_15, x_1152); -lean_dec(x_15); -lean_dec(x_14); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -x_1154 = !lean_is_exclusive(x_1153); -if (x_1154 == 0) -{ -lean_object* x_1155; lean_object* x_1156; lean_object* x_1157; -x_1155 = lean_ctor_get(x_1153, 1); -x_1156 = lean_ctor_get(x_1153, 0); -lean_dec(x_1156); -lean_ctor_set(x_1153, 1, x_1151); -lean_ctor_set(x_1153, 0, x_1147); -x_1157 = lean_array_push(x_9, x_1153); -lean_ctor_set(x_1149, 1, x_1155); -lean_ctor_set(x_1149, 0, x_1157); -return x_1149; -} -else -{ -lean_object* x_1158; lean_object* x_1159; lean_object* x_1160; -x_1158 = lean_ctor_get(x_1153, 1); -lean_inc(x_1158); -lean_dec(x_1153); -x_1159 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1159, 0, x_1147); -lean_ctor_set(x_1159, 1, x_1151); -x_1160 = lean_array_push(x_9, x_1159); -lean_ctor_set(x_1149, 1, x_1158); -lean_ctor_set(x_1149, 0, x_1160); -return x_1149; -} -} -else -{ -lean_object* x_1161; lean_object* x_1162; lean_object* x_1163; lean_object* x_1164; lean_object* x_1165; lean_object* x_1166; lean_object* x_1167; lean_object* x_1168; -x_1161 = lean_ctor_get(x_1149, 0); -x_1162 = lean_ctor_get(x_1149, 1); -lean_inc(x_1162); -lean_inc(x_1161); -lean_dec(x_1149); -x_1163 = l_Lean_Elab_Term_SavedState_restore(x_1112, x_10, x_11, x_12, x_13, x_14, x_15, x_1162); -lean_dec(x_15); -lean_dec(x_14); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -x_1164 = lean_ctor_get(x_1163, 1); -lean_inc(x_1164); -if (lean_is_exclusive(x_1163)) { - lean_ctor_release(x_1163, 0); - lean_ctor_release(x_1163, 1); - x_1165 = x_1163; -} else { - lean_dec_ref(x_1163); - x_1165 = lean_box(0); -} -if (lean_is_scalar(x_1165)) { - x_1166 = lean_alloc_ctor(0, 2, 0); -} else { - x_1166 = x_1165; -} -lean_ctor_set(x_1166, 0, x_1147); -lean_ctor_set(x_1166, 1, x_1161); -x_1167 = lean_array_push(x_9, x_1166); -x_1168 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1168, 0, x_1167); -lean_ctor_set(x_1168, 1, x_1164); -return x_1168; -} -} -} -else -{ -uint8_t x_1187; -x_1187 = l_Array_isEmpty___rarg(x_3); -if (x_1187 == 0) -{ -lean_object* x_1188; lean_object* x_1189; lean_object* x_1190; lean_object* x_1191; lean_object* x_1192; lean_object* x_1193; lean_object* x_1194; lean_object* x_1225; lean_object* x_1226; lean_object* x_1248; -x_1188 = lean_box(0); -x_1189 = l_Lean_Elab_Term_saveAllState___rarg(x_11, x_12, x_13, x_14, x_15, x_16); -x_1190 = lean_ctor_get(x_1189, 0); +x_1190 = lean_ctor_get(x_1168, 0); lean_inc(x_1190); -x_1191 = lean_ctor_get(x_1189, 1); -lean_inc(x_1191); -if (lean_is_exclusive(x_1189)) { - lean_ctor_release(x_1189, 0); - lean_ctor_release(x_1189, 1); - x_1192 = x_1189; +x_1191 = l_Lean_Elab_postponeExceptionId; +x_1192 = lean_nat_dec_eq(x_1190, x_1191); +lean_dec(x_1190); +if (x_1192 == 0) +{ +lean_object* x_1193; +lean_dec(x_1165); +lean_dec(x_15); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +if (lean_is_scalar(x_1167)) { + x_1193 = lean_alloc_ctor(1, 2, 0); } else { - lean_dec_ref(x_1189); - x_1192 = lean_box(0); + x_1193 = x_1167; + lean_ctor_set_tag(x_1193, 1); +} +lean_ctor_set(x_1193, 0, x_1168); +lean_ctor_set(x_1193, 1, x_1169); +return x_1193; +} +else +{ +lean_object* x_1194; uint8_t x_1195; +lean_dec(x_1167); +x_1194 = l_Lean_Elab_Term_SavedState_restore(x_1165, x_10, x_11, x_12, x_13, x_14, x_15, x_1169); +lean_dec(x_15); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +x_1195 = !lean_is_exclusive(x_1194); +if (x_1195 == 0) +{ +lean_object* x_1196; +x_1196 = lean_ctor_get(x_1194, 0); +lean_dec(x_1196); +lean_ctor_set_tag(x_1194, 1); +lean_ctor_set(x_1194, 0, x_1168); +return x_1194; +} +else +{ +lean_object* x_1197; lean_object* x_1198; +x_1197 = lean_ctor_get(x_1194, 1); +lean_inc(x_1197); +lean_dec(x_1194); +x_1198 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1198, 0, x_1168); +lean_ctor_set(x_1198, 1, x_1197); +return x_1198; +} +} +} +} +block_1222: +{ +lean_object* x_1202; uint8_t x_1203; +x_1202 = l_Lean_Elab_Term_saveAllState___rarg(x_11, x_12, x_13, x_14, x_15, x_1201); +x_1203 = !lean_is_exclusive(x_1202); +if (x_1203 == 0) +{ +lean_object* x_1204; lean_object* x_1205; lean_object* x_1206; uint8_t x_1207; +x_1204 = lean_ctor_get(x_1202, 0); +x_1205 = lean_ctor_get(x_1202, 1); +x_1206 = l_Lean_Elab_Term_SavedState_restore(x_1165, x_10, x_11, x_12, x_13, x_14, x_15, x_1205); +lean_dec(x_15); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +x_1207 = !lean_is_exclusive(x_1206); +if (x_1207 == 0) +{ +lean_object* x_1208; lean_object* x_1209; lean_object* x_1210; +x_1208 = lean_ctor_get(x_1206, 1); +x_1209 = lean_ctor_get(x_1206, 0); +lean_dec(x_1209); +lean_ctor_set(x_1206, 1, x_1204); +lean_ctor_set(x_1206, 0, x_1200); +x_1210 = lean_array_push(x_9, x_1206); +lean_ctor_set(x_1202, 1, x_1208); +lean_ctor_set(x_1202, 0, x_1210); +return x_1202; +} +else +{ +lean_object* x_1211; lean_object* x_1212; lean_object* x_1213; +x_1211 = lean_ctor_get(x_1206, 1); +lean_inc(x_1211); +lean_dec(x_1206); +x_1212 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1212, 0, x_1200); +lean_ctor_set(x_1212, 1, x_1204); +x_1213 = lean_array_push(x_9, x_1212); +lean_ctor_set(x_1202, 1, x_1211); +lean_ctor_set(x_1202, 0, x_1213); +return x_1202; +} +} +else +{ +lean_object* x_1214; lean_object* x_1215; lean_object* x_1216; lean_object* x_1217; lean_object* x_1218; lean_object* x_1219; lean_object* x_1220; lean_object* x_1221; +x_1214 = lean_ctor_get(x_1202, 0); +x_1215 = lean_ctor_get(x_1202, 1); +lean_inc(x_1215); +lean_inc(x_1214); +lean_dec(x_1202); +x_1216 = l_Lean_Elab_Term_SavedState_restore(x_1165, x_10, x_11, x_12, x_13, x_14, x_15, x_1215); +lean_dec(x_15); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +x_1217 = lean_ctor_get(x_1216, 1); +lean_inc(x_1217); +if (lean_is_exclusive(x_1216)) { + lean_ctor_release(x_1216, 0); + lean_ctor_release(x_1216, 1); + x_1218 = x_1216; +} else { + lean_dec_ref(x_1216); + x_1218 = lean_box(0); +} +if (lean_is_scalar(x_1218)) { + x_1219 = lean_alloc_ctor(0, 2, 0); +} else { + x_1219 = x_1218; +} +lean_ctor_set(x_1219, 0, x_1200); +lean_ctor_set(x_1219, 1, x_1214); +x_1220 = lean_array_push(x_9, x_1219); +x_1221 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1221, 0, x_1220); +lean_ctor_set(x_1221, 1, x_1217); +return x_1221; +} +} +} +else +{ +uint8_t x_1240; +x_1240 = l_Array_isEmpty___rarg(x_4); +if (x_1240 == 0) +{ +lean_object* x_1241; lean_object* x_1242; lean_object* x_1243; lean_object* x_1244; lean_object* x_1245; lean_object* x_1246; lean_object* x_1247; lean_object* x_1278; lean_object* x_1279; lean_object* x_1301; +x_1241 = lean_box(0); +x_1242 = l_Lean_Elab_Term_saveAllState___rarg(x_11, x_12, x_13, x_14, x_15, x_16); +x_1243 = lean_ctor_get(x_1242, 0); +lean_inc(x_1243); +x_1244 = lean_ctor_get(x_1242, 1); +lean_inc(x_1244); +if (lean_is_exclusive(x_1242)) { + lean_ctor_release(x_1242, 0); + lean_ctor_release(x_1242, 1); + x_1245 = x_1242; +} else { + lean_dec_ref(x_1242); + x_1245 = lean_box(0); } lean_inc(x_15); lean_inc(x_14); @@ -30510,15 +30730,15 @@ lean_inc(x_13); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); -x_1248 = l_Lean_Elab_Term_elabTerm(x_1, x_1188, x_1109, x_10, x_11, x_12, x_13, x_14, x_15, x_1191); -if (lean_obj_tag(x_1248) == 0) +x_1301 = l_Lean_Elab_Term_elabTerm(x_1, x_1241, x_1084, x_10, x_11, x_12, x_13, x_14, x_15, x_1244); +if (lean_obj_tag(x_1301) == 0) { -lean_object* x_1249; lean_object* x_1250; lean_object* x_1251; -x_1249 = lean_ctor_get(x_1248, 0); -lean_inc(x_1249); -x_1250 = lean_ctor_get(x_1248, 1); -lean_inc(x_1250); -lean_dec(x_1248); +lean_object* x_1302; lean_object* x_1303; lean_object* x_1304; +x_1302 = lean_ctor_get(x_1301, 0); +lean_inc(x_1302); +x_1303 = lean_ctor_get(x_1301, 1); +lean_inc(x_1303); +lean_dec(x_1301); lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); @@ -30526,806 +30746,372 @@ lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); lean_inc(x_5); -x_1251 = l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppLVals(x_1249, x_2, x_3, x_4, x_5, x_6, x_7, x_10, x_11, x_12, x_13, x_14, x_15, x_1250); -if (lean_obj_tag(x_1251) == 0) +x_1304 = l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppLVals(x_1302, x_2, x_3, x_4, x_5, x_6, x_7, x_10, x_11, x_12, x_13, x_14, x_15, x_1303); +if (lean_obj_tag(x_1304) == 0) { if (x_8 == 0) { -lean_object* x_1252; lean_object* x_1253; -lean_dec(x_1192); +lean_object* x_1305; lean_object* x_1306; +lean_dec(x_1245); lean_dec(x_5); -x_1252 = lean_ctor_get(x_1251, 0); -lean_inc(x_1252); -x_1253 = lean_ctor_get(x_1251, 1); -lean_inc(x_1253); -lean_dec(x_1251); -x_1225 = x_1252; -x_1226 = x_1253; -goto block_1247; +x_1305 = lean_ctor_get(x_1304, 0); +lean_inc(x_1305); +x_1306 = lean_ctor_get(x_1304, 1); +lean_inc(x_1306); +lean_dec(x_1304); +x_1278 = x_1305; +x_1279 = x_1306; +goto block_1300; } else { +lean_object* x_1307; lean_object* x_1308; lean_object* x_1309; +x_1307 = lean_ctor_get(x_1304, 0); +lean_inc(x_1307); +x_1308 = lean_ctor_get(x_1304, 1); +lean_inc(x_1308); +lean_dec(x_1304); +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_1309 = l_Lean_Elab_Term_ensureHasType(x_5, x_1307, x_1241, x_10, x_11, x_12, x_13, x_14, x_15, x_1308); +if (lean_obj_tag(x_1309) == 0) +{ +lean_object* x_1310; lean_object* x_1311; +lean_dec(x_1245); +x_1310 = lean_ctor_get(x_1309, 0); +lean_inc(x_1310); +x_1311 = lean_ctor_get(x_1309, 1); +lean_inc(x_1311); +lean_dec(x_1309); +x_1278 = x_1310; +x_1279 = x_1311; +goto block_1300; +} +else +{ +lean_object* x_1312; lean_object* x_1313; +x_1312 = lean_ctor_get(x_1309, 0); +lean_inc(x_1312); +x_1313 = lean_ctor_get(x_1309, 1); +lean_inc(x_1313); +lean_dec(x_1309); +x_1246 = x_1312; +x_1247 = x_1313; +goto block_1277; +} +} +} +else +{ +lean_object* x_1314; lean_object* x_1315; +lean_dec(x_5); +x_1314 = lean_ctor_get(x_1304, 0); +lean_inc(x_1314); +x_1315 = lean_ctor_get(x_1304, 1); +lean_inc(x_1315); +lean_dec(x_1304); +x_1246 = x_1314; +x_1247 = x_1315; +goto block_1277; +} +} +else +{ +lean_object* x_1316; lean_object* x_1317; +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_1316 = lean_ctor_get(x_1301, 0); +lean_inc(x_1316); +x_1317 = lean_ctor_get(x_1301, 1); +lean_inc(x_1317); +lean_dec(x_1301); +x_1246 = x_1316; +x_1247 = x_1317; +goto block_1277; +} +block_1277: +{ +if (lean_obj_tag(x_1246) == 0) +{ +lean_object* x_1248; uint8_t x_1249; +lean_dec(x_1245); +x_1248 = l_Lean_Elab_Term_saveAllState___rarg(x_11, x_12, x_13, x_14, x_15, x_1247); +x_1249 = !lean_is_exclusive(x_1248); +if (x_1249 == 0) +{ +lean_object* x_1250; lean_object* x_1251; lean_object* x_1252; uint8_t x_1253; +x_1250 = lean_ctor_get(x_1248, 0); +x_1251 = lean_ctor_get(x_1248, 1); +x_1252 = l_Lean_Elab_Term_SavedState_restore(x_1243, x_10, x_11, x_12, x_13, x_14, x_15, x_1251); +lean_dec(x_15); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +x_1253 = !lean_is_exclusive(x_1252); +if (x_1253 == 0) +{ lean_object* x_1254; lean_object* x_1255; lean_object* x_1256; -x_1254 = lean_ctor_get(x_1251, 0); -lean_inc(x_1254); -x_1255 = lean_ctor_get(x_1251, 1); -lean_inc(x_1255); -lean_dec(x_1251); -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_1256 = l_Lean_Elab_Term_ensureHasType(x_5, x_1254, x_1188, x_10, x_11, x_12, x_13, x_14, x_15, x_1255); -if (lean_obj_tag(x_1256) == 0) +x_1254 = lean_ctor_get(x_1252, 1); +x_1255 = lean_ctor_get(x_1252, 0); +lean_dec(x_1255); +lean_ctor_set_tag(x_1252, 1); +lean_ctor_set(x_1252, 1, x_1250); +lean_ctor_set(x_1252, 0, x_1246); +x_1256 = lean_array_push(x_9, x_1252); +lean_ctor_set(x_1248, 1, x_1254); +lean_ctor_set(x_1248, 0, x_1256); +return x_1248; +} +else { -lean_object* x_1257; lean_object* x_1258; -lean_dec(x_1192); -x_1257 = lean_ctor_get(x_1256, 0); +lean_object* x_1257; lean_object* x_1258; lean_object* x_1259; +x_1257 = lean_ctor_get(x_1252, 1); lean_inc(x_1257); -x_1258 = lean_ctor_get(x_1256, 1); -lean_inc(x_1258); -lean_dec(x_1256); -x_1225 = x_1257; -x_1226 = x_1258; -goto block_1247; -} -else -{ -lean_object* x_1259; lean_object* x_1260; -x_1259 = lean_ctor_get(x_1256, 0); -lean_inc(x_1259); -x_1260 = lean_ctor_get(x_1256, 1); -lean_inc(x_1260); -lean_dec(x_1256); -x_1193 = x_1259; -x_1194 = x_1260; -goto block_1224; -} +lean_dec(x_1252); +x_1258 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1258, 0, x_1246); +lean_ctor_set(x_1258, 1, x_1250); +x_1259 = lean_array_push(x_9, x_1258); +lean_ctor_set(x_1248, 1, x_1257); +lean_ctor_set(x_1248, 0, x_1259); +return x_1248; } } else { -lean_object* x_1261; lean_object* x_1262; -lean_dec(x_5); -x_1261 = lean_ctor_get(x_1251, 0); +lean_object* x_1260; lean_object* x_1261; lean_object* x_1262; lean_object* x_1263; lean_object* x_1264; lean_object* x_1265; lean_object* x_1266; lean_object* x_1267; +x_1260 = lean_ctor_get(x_1248, 0); +x_1261 = lean_ctor_get(x_1248, 1); lean_inc(x_1261); -x_1262 = lean_ctor_get(x_1251, 1); -lean_inc(x_1262); -lean_dec(x_1251); -x_1193 = x_1261; -x_1194 = x_1262; -goto block_1224; +lean_inc(x_1260); +lean_dec(x_1248); +x_1262 = l_Lean_Elab_Term_SavedState_restore(x_1243, x_10, x_11, x_12, x_13, x_14, x_15, x_1261); +lean_dec(x_15); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +x_1263 = lean_ctor_get(x_1262, 1); +lean_inc(x_1263); +if (lean_is_exclusive(x_1262)) { + lean_ctor_release(x_1262, 0); + lean_ctor_release(x_1262, 1); + x_1264 = x_1262; +} else { + lean_dec_ref(x_1262); + x_1264 = lean_box(0); +} +if (lean_is_scalar(x_1264)) { + x_1265 = lean_alloc_ctor(1, 2, 0); +} else { + x_1265 = x_1264; + lean_ctor_set_tag(x_1265, 1); +} +lean_ctor_set(x_1265, 0, x_1246); +lean_ctor_set(x_1265, 1, x_1260); +x_1266 = lean_array_push(x_9, x_1265); +x_1267 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1267, 0, x_1266); +lean_ctor_set(x_1267, 1, x_1263); +return x_1267; +} +} +else +{ +lean_object* x_1268; lean_object* x_1269; uint8_t x_1270; +lean_dec(x_9); +x_1268 = lean_ctor_get(x_1246, 0); +lean_inc(x_1268); +x_1269 = l_Lean_Elab_postponeExceptionId; +x_1270 = lean_nat_dec_eq(x_1268, x_1269); +lean_dec(x_1268); +if (x_1270 == 0) +{ +lean_object* x_1271; +lean_dec(x_1243); +lean_dec(x_15); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +if (lean_is_scalar(x_1245)) { + x_1271 = lean_alloc_ctor(1, 2, 0); +} else { + x_1271 = x_1245; + lean_ctor_set_tag(x_1271, 1); +} +lean_ctor_set(x_1271, 0, x_1246); +lean_ctor_set(x_1271, 1, x_1247); +return x_1271; +} +else +{ +lean_object* x_1272; uint8_t x_1273; +lean_dec(x_1245); +x_1272 = l_Lean_Elab_Term_SavedState_restore(x_1243, x_10, x_11, x_12, x_13, x_14, x_15, x_1247); +lean_dec(x_15); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +x_1273 = !lean_is_exclusive(x_1272); +if (x_1273 == 0) +{ +lean_object* x_1274; +x_1274 = lean_ctor_get(x_1272, 0); +lean_dec(x_1274); +lean_ctor_set_tag(x_1272, 1); +lean_ctor_set(x_1272, 0, x_1246); +return x_1272; +} +else +{ +lean_object* x_1275; lean_object* x_1276; +x_1275 = lean_ctor_get(x_1272, 1); +lean_inc(x_1275); +lean_dec(x_1272); +x_1276 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1276, 0, x_1246); +lean_ctor_set(x_1276, 1, x_1275); +return x_1276; +} +} +} +} +block_1300: +{ +lean_object* x_1280; uint8_t x_1281; +x_1280 = l_Lean_Elab_Term_saveAllState___rarg(x_11, x_12, x_13, x_14, x_15, x_1279); +x_1281 = !lean_is_exclusive(x_1280); +if (x_1281 == 0) +{ +lean_object* x_1282; lean_object* x_1283; lean_object* x_1284; uint8_t x_1285; +x_1282 = lean_ctor_get(x_1280, 0); +x_1283 = lean_ctor_get(x_1280, 1); +x_1284 = l_Lean_Elab_Term_SavedState_restore(x_1243, x_10, x_11, x_12, x_13, x_14, x_15, x_1283); +lean_dec(x_15); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +x_1285 = !lean_is_exclusive(x_1284); +if (x_1285 == 0) +{ +lean_object* x_1286; lean_object* x_1287; lean_object* x_1288; +x_1286 = lean_ctor_get(x_1284, 1); +x_1287 = lean_ctor_get(x_1284, 0); +lean_dec(x_1287); +lean_ctor_set(x_1284, 1, x_1282); +lean_ctor_set(x_1284, 0, x_1278); +x_1288 = lean_array_push(x_9, x_1284); +lean_ctor_set(x_1280, 1, x_1286); +lean_ctor_set(x_1280, 0, x_1288); +return x_1280; +} +else +{ +lean_object* x_1289; lean_object* x_1290; lean_object* x_1291; +x_1289 = lean_ctor_get(x_1284, 1); +lean_inc(x_1289); +lean_dec(x_1284); +x_1290 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1290, 0, x_1278); +lean_ctor_set(x_1290, 1, x_1282); +x_1291 = lean_array_push(x_9, x_1290); +lean_ctor_set(x_1280, 1, x_1289); +lean_ctor_set(x_1280, 0, x_1291); +return x_1280; +} +} +else +{ +lean_object* x_1292; lean_object* x_1293; lean_object* x_1294; lean_object* x_1295; lean_object* x_1296; lean_object* x_1297; lean_object* x_1298; lean_object* x_1299; +x_1292 = lean_ctor_get(x_1280, 0); +x_1293 = lean_ctor_get(x_1280, 1); +lean_inc(x_1293); +lean_inc(x_1292); +lean_dec(x_1280); +x_1294 = l_Lean_Elab_Term_SavedState_restore(x_1243, x_10, x_11, x_12, x_13, x_14, x_15, x_1293); +lean_dec(x_15); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +x_1295 = lean_ctor_get(x_1294, 1); +lean_inc(x_1295); +if (lean_is_exclusive(x_1294)) { + lean_ctor_release(x_1294, 0); + lean_ctor_release(x_1294, 1); + x_1296 = x_1294; +} else { + lean_dec_ref(x_1294); + x_1296 = lean_box(0); +} +if (lean_is_scalar(x_1296)) { + x_1297 = lean_alloc_ctor(0, 2, 0); +} else { + x_1297 = x_1296; +} +lean_ctor_set(x_1297, 0, x_1278); +lean_ctor_set(x_1297, 1, x_1292); +x_1298 = lean_array_push(x_9, x_1297); +x_1299 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1299, 0, x_1298); +lean_ctor_set(x_1299, 1, x_1295); +return x_1299; +} } } else { -lean_object* x_1263; lean_object* x_1264; -lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); -x_1263 = lean_ctor_get(x_1248, 0); -lean_inc(x_1263); -x_1264 = lean_ctor_get(x_1248, 1); -lean_inc(x_1264); -lean_dec(x_1248); -x_1193 = x_1263; -x_1194 = x_1264; -goto block_1224; -} -block_1224: -{ -if (lean_obj_tag(x_1193) == 0) -{ -lean_object* x_1195; uint8_t x_1196; -lean_dec(x_1192); -x_1195 = l_Lean_Elab_Term_saveAllState___rarg(x_11, x_12, x_13, x_14, x_15, x_1194); -x_1196 = !lean_is_exclusive(x_1195); -if (x_1196 == 0) -{ -lean_object* x_1197; lean_object* x_1198; lean_object* x_1199; uint8_t x_1200; -x_1197 = lean_ctor_get(x_1195, 0); -x_1198 = lean_ctor_get(x_1195, 1); -x_1199 = l_Lean_Elab_Term_SavedState_restore(x_1190, x_10, x_11, x_12, x_13, x_14, x_15, x_1198); -lean_dec(x_15); -lean_dec(x_14); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -x_1200 = !lean_is_exclusive(x_1199); -if (x_1200 == 0) -{ -lean_object* x_1201; lean_object* x_1202; lean_object* x_1203; -x_1201 = lean_ctor_get(x_1199, 1); -x_1202 = lean_ctor_get(x_1199, 0); -lean_dec(x_1202); -lean_ctor_set_tag(x_1199, 1); -lean_ctor_set(x_1199, 1, x_1197); -lean_ctor_set(x_1199, 0, x_1193); -x_1203 = lean_array_push(x_9, x_1199); -lean_ctor_set(x_1195, 1, x_1201); -lean_ctor_set(x_1195, 0, x_1203); -return x_1195; -} -else -{ -lean_object* x_1204; lean_object* x_1205; lean_object* x_1206; -x_1204 = lean_ctor_get(x_1199, 1); -lean_inc(x_1204); -lean_dec(x_1199); -x_1205 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1205, 0, x_1193); -lean_ctor_set(x_1205, 1, x_1197); -x_1206 = lean_array_push(x_9, x_1205); -lean_ctor_set(x_1195, 1, x_1204); -lean_ctor_set(x_1195, 0, x_1206); -return x_1195; -} -} -else -{ -lean_object* x_1207; lean_object* x_1208; lean_object* x_1209; lean_object* x_1210; lean_object* x_1211; lean_object* x_1212; lean_object* x_1213; lean_object* x_1214; -x_1207 = lean_ctor_get(x_1195, 0); -x_1208 = lean_ctor_get(x_1195, 1); -lean_inc(x_1208); -lean_inc(x_1207); -lean_dec(x_1195); -x_1209 = l_Lean_Elab_Term_SavedState_restore(x_1190, x_10, x_11, x_12, x_13, x_14, x_15, x_1208); -lean_dec(x_15); -lean_dec(x_14); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -x_1210 = lean_ctor_get(x_1209, 1); -lean_inc(x_1210); -if (lean_is_exclusive(x_1209)) { - lean_ctor_release(x_1209, 0); - lean_ctor_release(x_1209, 1); - x_1211 = x_1209; -} else { - lean_dec_ref(x_1209); - x_1211 = lean_box(0); -} -if (lean_is_scalar(x_1211)) { - x_1212 = lean_alloc_ctor(1, 2, 0); -} else { - x_1212 = x_1211; - lean_ctor_set_tag(x_1212, 1); -} -lean_ctor_set(x_1212, 0, x_1193); -lean_ctor_set(x_1212, 1, x_1207); -x_1213 = lean_array_push(x_9, x_1212); -x_1214 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1214, 0, x_1213); -lean_ctor_set(x_1214, 1, x_1210); -return x_1214; -} -} -else -{ -lean_object* x_1215; lean_object* x_1216; uint8_t x_1217; -lean_dec(x_9); -x_1215 = lean_ctor_get(x_1193, 0); -lean_inc(x_1215); -x_1216 = l_Lean_Elab_postponeExceptionId; -x_1217 = lean_nat_dec_eq(x_1215, x_1216); -lean_dec(x_1215); -if (x_1217 == 0) -{ -lean_object* x_1218; -lean_dec(x_1190); -lean_dec(x_15); -lean_dec(x_14); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -if (lean_is_scalar(x_1192)) { - x_1218 = lean_alloc_ctor(1, 2, 0); -} else { - x_1218 = x_1192; - lean_ctor_set_tag(x_1218, 1); -} -lean_ctor_set(x_1218, 0, x_1193); -lean_ctor_set(x_1218, 1, x_1194); -return x_1218; -} -else -{ -lean_object* x_1219; uint8_t x_1220; -lean_dec(x_1192); -x_1219 = l_Lean_Elab_Term_SavedState_restore(x_1190, x_10, x_11, x_12, x_13, x_14, x_15, x_1194); -lean_dec(x_15); -lean_dec(x_14); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -x_1220 = !lean_is_exclusive(x_1219); -if (x_1220 == 0) -{ -lean_object* x_1221; -x_1221 = lean_ctor_get(x_1219, 0); -lean_dec(x_1221); -lean_ctor_set_tag(x_1219, 1); -lean_ctor_set(x_1219, 0, x_1193); -return x_1219; -} -else -{ -lean_object* x_1222; lean_object* x_1223; -x_1222 = lean_ctor_get(x_1219, 1); -lean_inc(x_1222); -lean_dec(x_1219); -x_1223 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1223, 0, x_1193); -lean_ctor_set(x_1223, 1, x_1222); -return x_1223; -} -} -} -} -block_1247: -{ -lean_object* x_1227; uint8_t x_1228; -x_1227 = l_Lean_Elab_Term_saveAllState___rarg(x_11, x_12, x_13, x_14, x_15, x_1226); -x_1228 = !lean_is_exclusive(x_1227); -if (x_1228 == 0) -{ -lean_object* x_1229; lean_object* x_1230; lean_object* x_1231; uint8_t x_1232; -x_1229 = lean_ctor_get(x_1227, 0); -x_1230 = lean_ctor_get(x_1227, 1); -x_1231 = l_Lean_Elab_Term_SavedState_restore(x_1190, x_10, x_11, x_12, x_13, x_14, x_15, x_1230); -lean_dec(x_15); -lean_dec(x_14); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -x_1232 = !lean_is_exclusive(x_1231); -if (x_1232 == 0) -{ -lean_object* x_1233; lean_object* x_1234; lean_object* x_1235; -x_1233 = lean_ctor_get(x_1231, 1); -x_1234 = lean_ctor_get(x_1231, 0); -lean_dec(x_1234); -lean_ctor_set(x_1231, 1, x_1229); -lean_ctor_set(x_1231, 0, x_1225); -x_1235 = lean_array_push(x_9, x_1231); -lean_ctor_set(x_1227, 1, x_1233); -lean_ctor_set(x_1227, 0, x_1235); -return x_1227; -} -else -{ -lean_object* x_1236; lean_object* x_1237; lean_object* x_1238; -x_1236 = lean_ctor_get(x_1231, 1); -lean_inc(x_1236); -lean_dec(x_1231); -x_1237 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1237, 0, x_1225); -lean_ctor_set(x_1237, 1, x_1229); -x_1238 = lean_array_push(x_9, x_1237); -lean_ctor_set(x_1227, 1, x_1236); -lean_ctor_set(x_1227, 0, x_1238); -return x_1227; -} -} -else -{ -lean_object* x_1239; lean_object* x_1240; lean_object* x_1241; lean_object* x_1242; lean_object* x_1243; lean_object* x_1244; lean_object* x_1245; lean_object* x_1246; -x_1239 = lean_ctor_get(x_1227, 0); -x_1240 = lean_ctor_get(x_1227, 1); -lean_inc(x_1240); -lean_inc(x_1239); -lean_dec(x_1227); -x_1241 = l_Lean_Elab_Term_SavedState_restore(x_1190, x_10, x_11, x_12, x_13, x_14, x_15, x_1240); -lean_dec(x_15); -lean_dec(x_14); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -x_1242 = lean_ctor_get(x_1241, 1); -lean_inc(x_1242); -if (lean_is_exclusive(x_1241)) { - lean_ctor_release(x_1241, 0); - lean_ctor_release(x_1241, 1); - x_1243 = x_1241; -} else { - lean_dec_ref(x_1241); - x_1243 = lean_box(0); -} -if (lean_is_scalar(x_1243)) { - x_1244 = lean_alloc_ctor(0, 2, 0); -} else { - x_1244 = x_1243; -} -lean_ctor_set(x_1244, 0, x_1225); -lean_ctor_set(x_1244, 1, x_1239); -x_1245 = lean_array_push(x_9, x_1244); -x_1246 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1246, 0, x_1245); -lean_ctor_set(x_1246, 1, x_1242); -return x_1246; -} -} -} -else -{ -uint8_t x_1265; -x_1265 = l_Array_isEmpty___rarg(x_4); -if (x_1265 == 0) -{ -lean_object* x_1266; lean_object* x_1267; lean_object* x_1268; lean_object* x_1269; lean_object* x_1270; lean_object* x_1271; lean_object* x_1272; lean_object* x_1303; lean_object* x_1304; lean_object* x_1326; -x_1266 = lean_box(0); -x_1267 = l_Lean_Elab_Term_saveAllState___rarg(x_11, x_12, x_13, x_14, x_15, x_16); -x_1268 = lean_ctor_get(x_1267, 0); -lean_inc(x_1268); -x_1269 = lean_ctor_get(x_1267, 1); -lean_inc(x_1269); -if (lean_is_exclusive(x_1267)) { - lean_ctor_release(x_1267, 0); - lean_ctor_release(x_1267, 1); - x_1270 = x_1267; -} else { - lean_dec_ref(x_1267); - x_1270 = lean_box(0); -} -lean_inc(x_15); -lean_inc(x_14); -lean_inc(x_13); -lean_inc(x_12); -lean_inc(x_11); -lean_inc(x_10); -x_1326 = l_Lean_Elab_Term_elabTerm(x_1, x_1266, x_1109, x_10, x_11, x_12, x_13, x_14, x_15, x_1269); -if (lean_obj_tag(x_1326) == 0) -{ -lean_object* x_1327; lean_object* x_1328; lean_object* x_1329; -x_1327 = lean_ctor_get(x_1326, 0); -lean_inc(x_1327); -x_1328 = lean_ctor_get(x_1326, 1); -lean_inc(x_1328); -lean_dec(x_1326); -lean_inc(x_15); -lean_inc(x_14); -lean_inc(x_13); -lean_inc(x_12); -lean_inc(x_11); -lean_inc(x_10); -lean_inc(x_5); -x_1329 = l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppLVals(x_1327, x_2, x_3, x_4, x_5, x_6, x_7, x_10, x_11, x_12, x_13, x_14, x_15, x_1328); -if (lean_obj_tag(x_1329) == 0) -{ if (x_8 == 0) { -lean_object* x_1330; lean_object* x_1331; -lean_dec(x_1270); -lean_dec(x_5); -x_1330 = lean_ctor_get(x_1329, 0); -lean_inc(x_1330); -x_1331 = lean_ctor_get(x_1329, 1); -lean_inc(x_1331); -lean_dec(x_1329); -x_1303 = x_1330; -x_1304 = x_1331; -goto block_1325; -} -else -{ -lean_object* x_1332; lean_object* x_1333; lean_object* x_1334; -x_1332 = lean_ctor_get(x_1329, 0); -lean_inc(x_1332); -x_1333 = lean_ctor_get(x_1329, 1); -lean_inc(x_1333); -lean_dec(x_1329); -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_1334 = l_Lean_Elab_Term_ensureHasType(x_5, x_1332, x_1266, x_10, x_11, x_12, x_13, x_14, x_15, x_1333); -if (lean_obj_tag(x_1334) == 0) -{ -lean_object* x_1335; lean_object* x_1336; -lean_dec(x_1270); -x_1335 = lean_ctor_get(x_1334, 0); -lean_inc(x_1335); -x_1336 = lean_ctor_get(x_1334, 1); -lean_inc(x_1336); -lean_dec(x_1334); -x_1303 = x_1335; -x_1304 = x_1336; -goto block_1325; -} -else -{ -lean_object* x_1337; lean_object* x_1338; -x_1337 = lean_ctor_get(x_1334, 0); -lean_inc(x_1337); -x_1338 = lean_ctor_get(x_1334, 1); -lean_inc(x_1338); -lean_dec(x_1334); -x_1271 = x_1337; -x_1272 = x_1338; -goto block_1302; -} -} -} -else -{ -lean_object* x_1339; lean_object* x_1340; -lean_dec(x_5); -x_1339 = lean_ctor_get(x_1329, 0); -lean_inc(x_1339); -x_1340 = lean_ctor_get(x_1329, 1); -lean_inc(x_1340); -lean_dec(x_1329); -x_1271 = x_1339; -x_1272 = x_1340; -goto block_1302; -} -} -else -{ -lean_object* x_1341; lean_object* x_1342; -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -x_1341 = lean_ctor_get(x_1326, 0); -lean_inc(x_1341); -x_1342 = lean_ctor_get(x_1326, 1); -lean_inc(x_1342); -lean_dec(x_1326); -x_1271 = x_1341; -x_1272 = x_1342; -goto block_1302; -} -block_1302: -{ -if (lean_obj_tag(x_1271) == 0) -{ -lean_object* x_1273; uint8_t x_1274; -lean_dec(x_1270); -x_1273 = l_Lean_Elab_Term_saveAllState___rarg(x_11, x_12, x_13, x_14, x_15, x_1272); -x_1274 = !lean_is_exclusive(x_1273); -if (x_1274 == 0) -{ -lean_object* x_1275; lean_object* x_1276; lean_object* x_1277; uint8_t x_1278; -x_1275 = lean_ctor_get(x_1273, 0); -x_1276 = lean_ctor_get(x_1273, 1); -x_1277 = l_Lean_Elab_Term_SavedState_restore(x_1268, x_10, x_11, x_12, x_13, x_14, x_15, x_1276); -lean_dec(x_15); -lean_dec(x_14); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -x_1278 = !lean_is_exclusive(x_1277); -if (x_1278 == 0) -{ -lean_object* x_1279; lean_object* x_1280; lean_object* x_1281; -x_1279 = lean_ctor_get(x_1277, 1); -x_1280 = lean_ctor_get(x_1277, 0); -lean_dec(x_1280); -lean_ctor_set_tag(x_1277, 1); -lean_ctor_set(x_1277, 1, x_1275); -lean_ctor_set(x_1277, 0, x_1271); -x_1281 = lean_array_push(x_9, x_1277); -lean_ctor_set(x_1273, 1, x_1279); -lean_ctor_set(x_1273, 0, x_1281); -return x_1273; -} -else -{ -lean_object* x_1282; lean_object* x_1283; lean_object* x_1284; -x_1282 = lean_ctor_get(x_1277, 1); -lean_inc(x_1282); -lean_dec(x_1277); -x_1283 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1283, 0, x_1271); -lean_ctor_set(x_1283, 1, x_1275); -x_1284 = lean_array_push(x_9, x_1283); -lean_ctor_set(x_1273, 1, x_1282); -lean_ctor_set(x_1273, 0, x_1284); -return x_1273; -} -} -else -{ -lean_object* x_1285; lean_object* x_1286; lean_object* x_1287; lean_object* x_1288; lean_object* x_1289; lean_object* x_1290; lean_object* x_1291; lean_object* x_1292; -x_1285 = lean_ctor_get(x_1273, 0); -x_1286 = lean_ctor_get(x_1273, 1); -lean_inc(x_1286); -lean_inc(x_1285); -lean_dec(x_1273); -x_1287 = l_Lean_Elab_Term_SavedState_restore(x_1268, x_10, x_11, x_12, x_13, x_14, x_15, x_1286); -lean_dec(x_15); -lean_dec(x_14); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -x_1288 = lean_ctor_get(x_1287, 1); -lean_inc(x_1288); -if (lean_is_exclusive(x_1287)) { - lean_ctor_release(x_1287, 0); - lean_ctor_release(x_1287, 1); - x_1289 = x_1287; -} else { - lean_dec_ref(x_1287); - x_1289 = lean_box(0); -} -if (lean_is_scalar(x_1289)) { - x_1290 = lean_alloc_ctor(1, 2, 0); -} else { - x_1290 = x_1289; - lean_ctor_set_tag(x_1290, 1); -} -lean_ctor_set(x_1290, 0, x_1271); -lean_ctor_set(x_1290, 1, x_1285); -x_1291 = lean_array_push(x_9, x_1290); -x_1292 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1292, 0, x_1291); -lean_ctor_set(x_1292, 1, x_1288); -return x_1292; -} -} -else -{ -lean_object* x_1293; lean_object* x_1294; uint8_t x_1295; -lean_dec(x_9); -x_1293 = lean_ctor_get(x_1271, 0); -lean_inc(x_1293); -x_1294 = l_Lean_Elab_postponeExceptionId; -x_1295 = lean_nat_dec_eq(x_1293, x_1294); -lean_dec(x_1293); -if (x_1295 == 0) -{ -lean_object* x_1296; -lean_dec(x_1268); -lean_dec(x_15); -lean_dec(x_14); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -if (lean_is_scalar(x_1270)) { - x_1296 = lean_alloc_ctor(1, 2, 0); -} else { - x_1296 = x_1270; - lean_ctor_set_tag(x_1296, 1); -} -lean_ctor_set(x_1296, 0, x_1271); -lean_ctor_set(x_1296, 1, x_1272); -return x_1296; -} -else -{ -lean_object* x_1297; uint8_t x_1298; -lean_dec(x_1270); -x_1297 = l_Lean_Elab_Term_SavedState_restore(x_1268, x_10, x_11, x_12, x_13, x_14, x_15, x_1272); -lean_dec(x_15); -lean_dec(x_14); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -x_1298 = !lean_is_exclusive(x_1297); -if (x_1298 == 0) -{ -lean_object* x_1299; -x_1299 = lean_ctor_get(x_1297, 0); -lean_dec(x_1299); -lean_ctor_set_tag(x_1297, 1); -lean_ctor_set(x_1297, 0, x_1271); -return x_1297; -} -else -{ -lean_object* x_1300; lean_object* x_1301; -x_1300 = lean_ctor_get(x_1297, 1); -lean_inc(x_1300); -lean_dec(x_1297); -x_1301 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1301, 0, x_1271); -lean_ctor_set(x_1301, 1, x_1300); -return x_1301; -} -} -} -} -block_1325: -{ -lean_object* x_1305; uint8_t x_1306; -x_1305 = l_Lean_Elab_Term_saveAllState___rarg(x_11, x_12, x_13, x_14, x_15, x_1304); -x_1306 = !lean_is_exclusive(x_1305); -if (x_1306 == 0) -{ -lean_object* x_1307; lean_object* x_1308; lean_object* x_1309; uint8_t x_1310; -x_1307 = lean_ctor_get(x_1305, 0); -x_1308 = lean_ctor_get(x_1305, 1); -x_1309 = l_Lean_Elab_Term_SavedState_restore(x_1268, x_10, x_11, x_12, x_13, x_14, x_15, x_1308); -lean_dec(x_15); -lean_dec(x_14); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -x_1310 = !lean_is_exclusive(x_1309); -if (x_1310 == 0) -{ -lean_object* x_1311; lean_object* x_1312; lean_object* x_1313; -x_1311 = lean_ctor_get(x_1309, 1); -x_1312 = lean_ctor_get(x_1309, 0); -lean_dec(x_1312); -lean_ctor_set(x_1309, 1, x_1307); -lean_ctor_set(x_1309, 0, x_1303); -x_1313 = lean_array_push(x_9, x_1309); -lean_ctor_set(x_1305, 1, x_1311); -lean_ctor_set(x_1305, 0, x_1313); -return x_1305; -} -else -{ -lean_object* x_1314; lean_object* x_1315; lean_object* x_1316; -x_1314 = lean_ctor_get(x_1309, 1); -lean_inc(x_1314); -lean_dec(x_1309); -x_1315 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1315, 0, x_1303); -lean_ctor_set(x_1315, 1, x_1307); -x_1316 = lean_array_push(x_9, x_1315); -lean_ctor_set(x_1305, 1, x_1314); -lean_ctor_set(x_1305, 0, x_1316); -return x_1305; -} -} -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; -x_1317 = lean_ctor_get(x_1305, 0); -x_1318 = lean_ctor_get(x_1305, 1); -lean_inc(x_1318); -lean_inc(x_1317); -lean_dec(x_1305); -x_1319 = l_Lean_Elab_Term_SavedState_restore(x_1268, x_10, x_11, x_12, x_13, x_14, x_15, x_1318); -lean_dec(x_15); -lean_dec(x_14); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -x_1320 = lean_ctor_get(x_1319, 1); +lean_object* x_1318; lean_object* x_1319; lean_object* x_1320; lean_object* x_1321; lean_object* x_1322; lean_object* x_1323; uint8_t x_1345; lean_object* x_1346; +x_1318 = l_Lean_Elab_Term_saveAllState___rarg(x_11, x_12, x_13, x_14, x_15, x_16); +x_1319 = lean_ctor_get(x_1318, 0); +lean_inc(x_1319); +x_1320 = lean_ctor_get(x_1318, 1); lean_inc(x_1320); -if (lean_is_exclusive(x_1319)) { - lean_ctor_release(x_1319, 0); - lean_ctor_release(x_1319, 1); - x_1321 = x_1319; +if (lean_is_exclusive(x_1318)) { + lean_ctor_release(x_1318, 0); + lean_ctor_release(x_1318, 1); + x_1321 = x_1318; } else { - lean_dec_ref(x_1319); + lean_dec_ref(x_1318); x_1321 = lean_box(0); } -if (lean_is_scalar(x_1321)) { - x_1322 = lean_alloc_ctor(0, 2, 0); -} else { - x_1322 = x_1321; -} -lean_ctor_set(x_1322, 0, x_1303); -lean_ctor_set(x_1322, 1, x_1317); -x_1323 = lean_array_push(x_9, x_1322); -x_1324 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1324, 0, x_1323); -lean_ctor_set(x_1324, 1, x_1320); -return x_1324; -} -} -} -else -{ -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -if (x_8 == 0) -{ -lean_object* x_1343; lean_object* x_1344; lean_object* x_1345; lean_object* x_1346; lean_object* x_1347; lean_object* x_1348; uint8_t x_1370; lean_object* x_1371; -x_1343 = l_Lean_Elab_Term_saveAllState___rarg(x_11, x_12, x_13, x_14, x_15, x_16); -x_1344 = lean_ctor_get(x_1343, 0); -lean_inc(x_1344); -x_1345 = lean_ctor_get(x_1343, 1); -lean_inc(x_1345); -if (lean_is_exclusive(x_1343)) { - lean_ctor_release(x_1343, 0); - lean_ctor_release(x_1343, 1); - x_1346 = x_1343; -} else { - lean_dec_ref(x_1343); - x_1346 = lean_box(0); -} -x_1370 = 1; +x_1345 = 1; lean_inc(x_15); lean_inc(x_14); lean_inc(x_13); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); -x_1371 = l_Lean_Elab_Term_elabTerm(x_1, x_5, x_1370, x_10, x_11, x_12, x_13, x_14, x_15, x_1345); -if (lean_obj_tag(x_1371) == 0) +x_1346 = l_Lean_Elab_Term_elabTerm(x_1, x_5, x_1345, x_10, x_11, x_12, x_13, x_14, x_15, x_1320); +if (lean_obj_tag(x_1346) == 0) { -lean_object* x_1372; lean_object* x_1373; lean_object* x_1374; lean_object* x_1375; lean_object* x_1376; lean_object* x_1377; uint8_t x_1378; -lean_dec(x_1346); -x_1372 = lean_ctor_get(x_1371, 0); -lean_inc(x_1372); -x_1373 = lean_ctor_get(x_1371, 1); -lean_inc(x_1373); -lean_dec(x_1371); -x_1374 = l_Lean_Elab_Term_saveAllState___rarg(x_11, x_12, x_13, x_14, x_15, x_1373); -x_1375 = lean_ctor_get(x_1374, 0); -lean_inc(x_1375); -x_1376 = lean_ctor_get(x_1374, 1); -lean_inc(x_1376); -lean_dec(x_1374); -x_1377 = l_Lean_Elab_Term_SavedState_restore(x_1344, x_10, x_11, x_12, x_13, x_14, x_15, x_1376); -x_1378 = !lean_is_exclusive(x_1377); -if (x_1378 == 0) -{ -lean_object* x_1379; lean_object* x_1380; lean_object* x_1381; -x_1379 = lean_ctor_get(x_1377, 1); -x_1380 = lean_ctor_get(x_1377, 0); -lean_dec(x_1380); -lean_ctor_set(x_1377, 1, x_1375); -lean_ctor_set(x_1377, 0, x_1372); -x_1381 = l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppFn___lambda__1(x_9, x_1377, x_10, x_11, x_12, x_13, x_14, x_15, x_1379); -lean_dec(x_15); -lean_dec(x_14); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -return x_1381; -} -else -{ -lean_object* x_1382; lean_object* x_1383; lean_object* x_1384; -x_1382 = lean_ctor_get(x_1377, 1); -lean_inc(x_1382); -lean_dec(x_1377); -x_1383 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1383, 0, x_1372); -lean_ctor_set(x_1383, 1, x_1375); -x_1384 = l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppFn___lambda__1(x_9, x_1383, x_10, x_11, x_12, x_13, x_14, x_15, x_1382); -lean_dec(x_15); -lean_dec(x_14); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -return x_1384; -} -} -else -{ -lean_object* x_1385; lean_object* x_1386; -x_1385 = lean_ctor_get(x_1371, 0); -lean_inc(x_1385); -x_1386 = lean_ctor_get(x_1371, 1); -lean_inc(x_1386); -lean_dec(x_1371); -x_1347 = x_1385; -x_1348 = x_1386; -goto block_1369; -} -block_1369: -{ -if (lean_obj_tag(x_1347) == 0) -{ -lean_object* x_1349; lean_object* x_1350; lean_object* x_1351; lean_object* x_1352; uint8_t x_1353; +lean_object* x_1347; lean_object* x_1348; lean_object* x_1349; lean_object* x_1350; lean_object* x_1351; lean_object* x_1352; uint8_t x_1353; +lean_dec(x_1321); +x_1347 = lean_ctor_get(x_1346, 0); +lean_inc(x_1347); +x_1348 = lean_ctor_get(x_1346, 1); +lean_inc(x_1348); lean_dec(x_1346); x_1349 = l_Lean_Elab_Term_saveAllState___rarg(x_11, x_12, x_13, x_14, x_15, x_1348); x_1350 = lean_ctor_get(x_1349, 0); @@ -31333,7 +31119,7 @@ lean_inc(x_1350); x_1351 = lean_ctor_get(x_1349, 1); lean_inc(x_1351); lean_dec(x_1349); -x_1352 = l_Lean_Elab_Term_SavedState_restore(x_1344, x_10, x_11, x_12, x_13, x_14, x_15, x_1351); +x_1352 = l_Lean_Elab_Term_SavedState_restore(x_1319, x_10, x_11, x_12, x_13, x_14, x_15, x_1351); x_1353 = !lean_is_exclusive(x_1352); if (x_1353 == 0) { @@ -31341,7 +31127,6 @@ lean_object* x_1354; lean_object* x_1355; lean_object* x_1356; x_1354 = lean_ctor_get(x_1352, 1); x_1355 = lean_ctor_get(x_1352, 0); lean_dec(x_1355); -lean_ctor_set_tag(x_1352, 1); lean_ctor_set(x_1352, 1, x_1350); lean_ctor_set(x_1352, 0, x_1347); x_1356 = l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppFn___lambda__1(x_9, x_1352, x_10, x_11, x_12, x_13, x_14, x_15, x_1354); @@ -31359,7 +31144,7 @@ lean_object* x_1357; lean_object* x_1358; lean_object* x_1359; x_1357 = lean_ctor_get(x_1352, 1); lean_inc(x_1357); lean_dec(x_1352); -x_1358 = lean_alloc_ctor(1, 2, 0); +x_1358 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_1358, 0, x_1347); lean_ctor_set(x_1358, 1, x_1350); x_1359 = l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppFn___lambda__1(x_9, x_1358, x_10, x_11, x_12, x_13, x_14, x_15, x_1357); @@ -31374,85 +31159,148 @@ return x_1359; } else { -lean_object* x_1360; lean_object* x_1361; uint8_t x_1362; -lean_dec(x_9); -x_1360 = lean_ctor_get(x_1347, 0); +lean_object* x_1360; lean_object* x_1361; +x_1360 = lean_ctor_get(x_1346, 0); lean_inc(x_1360); -x_1361 = l_Lean_Elab_postponeExceptionId; -x_1362 = lean_nat_dec_eq(x_1360, x_1361); -lean_dec(x_1360); -if (x_1362 == 0) -{ -lean_object* x_1363; -lean_dec(x_1344); -lean_dec(x_15); -lean_dec(x_14); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -if (lean_is_scalar(x_1346)) { - x_1363 = lean_alloc_ctor(1, 2, 0); -} else { - x_1363 = x_1346; - lean_ctor_set_tag(x_1363, 1); -} -lean_ctor_set(x_1363, 0, x_1347); -lean_ctor_set(x_1363, 1, x_1348); -return x_1363; -} -else -{ -lean_object* x_1364; uint8_t x_1365; +x_1361 = lean_ctor_get(x_1346, 1); +lean_inc(x_1361); lean_dec(x_1346); -x_1364 = l_Lean_Elab_Term_SavedState_restore(x_1344, x_10, x_11, x_12, x_13, x_14, x_15, x_1348); +x_1322 = x_1360; +x_1323 = x_1361; +goto block_1344; +} +block_1344: +{ +if (lean_obj_tag(x_1322) == 0) +{ +lean_object* x_1324; lean_object* x_1325; lean_object* x_1326; lean_object* x_1327; uint8_t x_1328; +lean_dec(x_1321); +x_1324 = l_Lean_Elab_Term_saveAllState___rarg(x_11, x_12, x_13, x_14, x_15, x_1323); +x_1325 = lean_ctor_get(x_1324, 0); +lean_inc(x_1325); +x_1326 = lean_ctor_get(x_1324, 1); +lean_inc(x_1326); +lean_dec(x_1324); +x_1327 = l_Lean_Elab_Term_SavedState_restore(x_1319, x_10, x_11, x_12, x_13, x_14, x_15, x_1326); +x_1328 = !lean_is_exclusive(x_1327); +if (x_1328 == 0) +{ +lean_object* x_1329; lean_object* x_1330; lean_object* x_1331; +x_1329 = lean_ctor_get(x_1327, 1); +x_1330 = lean_ctor_get(x_1327, 0); +lean_dec(x_1330); +lean_ctor_set_tag(x_1327, 1); +lean_ctor_set(x_1327, 1, x_1325); +lean_ctor_set(x_1327, 0, x_1322); +x_1331 = l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppFn___lambda__1(x_9, x_1327, x_10, x_11, x_12, x_13, x_14, x_15, x_1329); lean_dec(x_15); lean_dec(x_14); lean_dec(x_13); lean_dec(x_12); lean_dec(x_11); lean_dec(x_10); -x_1365 = !lean_is_exclusive(x_1364); -if (x_1365 == 0) -{ -lean_object* x_1366; -x_1366 = lean_ctor_get(x_1364, 0); -lean_dec(x_1366); -lean_ctor_set_tag(x_1364, 1); -lean_ctor_set(x_1364, 0, x_1347); -return x_1364; +return x_1331; } else { -lean_object* x_1367; lean_object* x_1368; -x_1367 = lean_ctor_get(x_1364, 1); -lean_inc(x_1367); -lean_dec(x_1364); -x_1368 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1368, 0, x_1347); -lean_ctor_set(x_1368, 1, x_1367); -return x_1368; -} -} -} +lean_object* x_1332; lean_object* x_1333; lean_object* x_1334; +x_1332 = lean_ctor_get(x_1327, 1); +lean_inc(x_1332); +lean_dec(x_1327); +x_1333 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1333, 0, x_1322); +lean_ctor_set(x_1333, 1, x_1325); +x_1334 = l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppFn___lambda__1(x_9, x_1333, x_10, x_11, x_12, x_13, x_14, x_15, x_1332); +lean_dec(x_15); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +return x_1334; } } else { -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_1415; -x_1387 = lean_box(0); -x_1388 = l_Lean_Elab_Term_saveAllState___rarg(x_11, x_12, x_13, x_14, x_15, x_16); -x_1389 = lean_ctor_get(x_1388, 0); -lean_inc(x_1389); -x_1390 = lean_ctor_get(x_1388, 1); -lean_inc(x_1390); -if (lean_is_exclusive(x_1388)) { - lean_ctor_release(x_1388, 0); - lean_ctor_release(x_1388, 1); - x_1391 = x_1388; +lean_object* x_1335; lean_object* x_1336; uint8_t x_1337; +lean_dec(x_9); +x_1335 = lean_ctor_get(x_1322, 0); +lean_inc(x_1335); +x_1336 = l_Lean_Elab_postponeExceptionId; +x_1337 = lean_nat_dec_eq(x_1335, x_1336); +lean_dec(x_1335); +if (x_1337 == 0) +{ +lean_object* x_1338; +lean_dec(x_1319); +lean_dec(x_15); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +if (lean_is_scalar(x_1321)) { + x_1338 = lean_alloc_ctor(1, 2, 0); } else { - lean_dec_ref(x_1388); - x_1391 = lean_box(0); + x_1338 = x_1321; + lean_ctor_set_tag(x_1338, 1); +} +lean_ctor_set(x_1338, 0, x_1322); +lean_ctor_set(x_1338, 1, x_1323); +return x_1338; +} +else +{ +lean_object* x_1339; uint8_t x_1340; +lean_dec(x_1321); +x_1339 = l_Lean_Elab_Term_SavedState_restore(x_1319, x_10, x_11, x_12, x_13, x_14, x_15, x_1323); +lean_dec(x_15); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +x_1340 = !lean_is_exclusive(x_1339); +if (x_1340 == 0) +{ +lean_object* x_1341; +x_1341 = lean_ctor_get(x_1339, 0); +lean_dec(x_1341); +lean_ctor_set_tag(x_1339, 1); +lean_ctor_set(x_1339, 0, x_1322); +return x_1339; +} +else +{ +lean_object* x_1342; lean_object* x_1343; +x_1342 = lean_ctor_get(x_1339, 1); +lean_inc(x_1342); +lean_dec(x_1339); +x_1343 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1343, 0, x_1322); +lean_ctor_set(x_1343, 1, x_1342); +return x_1343; +} +} +} +} +} +else +{ +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_1390; +x_1362 = lean_box(0); +x_1363 = l_Lean_Elab_Term_saveAllState___rarg(x_11, x_12, x_13, x_14, x_15, x_16); +x_1364 = lean_ctor_get(x_1363, 0); +lean_inc(x_1364); +x_1365 = lean_ctor_get(x_1363, 1); +lean_inc(x_1365); +if (lean_is_exclusive(x_1363)) { + lean_ctor_release(x_1363, 0); + lean_ctor_release(x_1363, 1); + x_1366 = x_1363; +} else { + lean_dec_ref(x_1363); + x_1366 = lean_box(0); } lean_inc(x_15); lean_inc(x_14); @@ -31460,243 +31308,243 @@ lean_inc(x_13); lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); -x_1415 = l_Lean_Elab_Term_elabTermEnsuringType(x_1, x_5, x_1109, x_1387, x_10, x_11, x_12, x_13, x_14, x_15, x_1390); -if (lean_obj_tag(x_1415) == 0) +x_1390 = l_Lean_Elab_Term_elabTermEnsuringType(x_1, x_5, x_1084, x_1362, x_10, x_11, x_12, x_13, x_14, x_15, x_1365); +if (lean_obj_tag(x_1390) == 0) { -lean_object* x_1416; lean_object* x_1417; lean_object* x_1418; lean_object* x_1419; lean_object* x_1420; lean_object* x_1421; uint8_t x_1422; -lean_dec(x_1391); -x_1416 = lean_ctor_get(x_1415, 0); -lean_inc(x_1416); -x_1417 = lean_ctor_get(x_1415, 1); -lean_inc(x_1417); -lean_dec(x_1415); -x_1418 = l_Lean_Elab_Term_saveAllState___rarg(x_11, x_12, x_13, x_14, x_15, x_1417); -x_1419 = lean_ctor_get(x_1418, 0); -lean_inc(x_1419); -x_1420 = lean_ctor_get(x_1418, 1); -lean_inc(x_1420); -lean_dec(x_1418); -x_1421 = l_Lean_Elab_Term_SavedState_restore(x_1389, x_10, x_11, x_12, x_13, x_14, x_15, x_1420); -x_1422 = !lean_is_exclusive(x_1421); -if (x_1422 == 0) +lean_object* x_1391; lean_object* x_1392; lean_object* x_1393; lean_object* x_1394; lean_object* x_1395; lean_object* x_1396; uint8_t x_1397; +lean_dec(x_1366); +x_1391 = lean_ctor_get(x_1390, 0); +lean_inc(x_1391); +x_1392 = lean_ctor_get(x_1390, 1); +lean_inc(x_1392); +lean_dec(x_1390); +x_1393 = l_Lean_Elab_Term_saveAllState___rarg(x_11, x_12, x_13, x_14, x_15, x_1392); +x_1394 = lean_ctor_get(x_1393, 0); +lean_inc(x_1394); +x_1395 = lean_ctor_get(x_1393, 1); +lean_inc(x_1395); +lean_dec(x_1393); +x_1396 = l_Lean_Elab_Term_SavedState_restore(x_1364, x_10, x_11, x_12, x_13, x_14, x_15, x_1395); +x_1397 = !lean_is_exclusive(x_1396); +if (x_1397 == 0) +{ +lean_object* x_1398; lean_object* x_1399; lean_object* x_1400; +x_1398 = lean_ctor_get(x_1396, 1); +x_1399 = lean_ctor_get(x_1396, 0); +lean_dec(x_1399); +lean_ctor_set(x_1396, 1, x_1394); +lean_ctor_set(x_1396, 0, x_1391); +x_1400 = l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppFn___lambda__1(x_9, x_1396, x_10, x_11, x_12, x_13, x_14, x_15, x_1398); +lean_dec(x_15); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +return x_1400; +} +else +{ +lean_object* x_1401; lean_object* x_1402; lean_object* x_1403; +x_1401 = lean_ctor_get(x_1396, 1); +lean_inc(x_1401); +lean_dec(x_1396); +x_1402 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1402, 0, x_1391); +lean_ctor_set(x_1402, 1, x_1394); +x_1403 = l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppFn___lambda__1(x_9, x_1402, x_10, x_11, x_12, x_13, x_14, x_15, x_1401); +lean_dec(x_15); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +return x_1403; +} +} +else +{ +lean_object* x_1404; lean_object* x_1405; +x_1404 = lean_ctor_get(x_1390, 0); +lean_inc(x_1404); +x_1405 = lean_ctor_get(x_1390, 1); +lean_inc(x_1405); +lean_dec(x_1390); +x_1367 = x_1404; +x_1368 = x_1405; +goto block_1389; +} +block_1389: +{ +if (lean_obj_tag(x_1367) == 0) +{ +lean_object* x_1369; lean_object* x_1370; lean_object* x_1371; lean_object* x_1372; uint8_t x_1373; +lean_dec(x_1366); +x_1369 = l_Lean_Elab_Term_saveAllState___rarg(x_11, x_12, x_13, x_14, x_15, x_1368); +x_1370 = lean_ctor_get(x_1369, 0); +lean_inc(x_1370); +x_1371 = lean_ctor_get(x_1369, 1); +lean_inc(x_1371); +lean_dec(x_1369); +x_1372 = l_Lean_Elab_Term_SavedState_restore(x_1364, x_10, x_11, x_12, x_13, x_14, x_15, x_1371); +x_1373 = !lean_is_exclusive(x_1372); +if (x_1373 == 0) +{ +lean_object* x_1374; lean_object* x_1375; lean_object* x_1376; +x_1374 = lean_ctor_get(x_1372, 1); +x_1375 = lean_ctor_get(x_1372, 0); +lean_dec(x_1375); +lean_ctor_set_tag(x_1372, 1); +lean_ctor_set(x_1372, 1, x_1370); +lean_ctor_set(x_1372, 0, x_1367); +x_1376 = l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppFn___lambda__1(x_9, x_1372, x_10, x_11, x_12, x_13, x_14, x_15, x_1374); +lean_dec(x_15); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +return x_1376; +} +else +{ +lean_object* x_1377; lean_object* x_1378; lean_object* x_1379; +x_1377 = lean_ctor_get(x_1372, 1); +lean_inc(x_1377); +lean_dec(x_1372); +x_1378 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1378, 0, x_1367); +lean_ctor_set(x_1378, 1, x_1370); +x_1379 = l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppFn___lambda__1(x_9, x_1378, x_10, x_11, x_12, x_13, x_14, x_15, x_1377); +lean_dec(x_15); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +return x_1379; +} +} +else +{ +lean_object* x_1380; lean_object* x_1381; uint8_t x_1382; +lean_dec(x_9); +x_1380 = lean_ctor_get(x_1367, 0); +lean_inc(x_1380); +x_1381 = l_Lean_Elab_postponeExceptionId; +x_1382 = lean_nat_dec_eq(x_1380, x_1381); +lean_dec(x_1380); +if (x_1382 == 0) +{ +lean_object* x_1383; +lean_dec(x_1364); +lean_dec(x_15); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +if (lean_is_scalar(x_1366)) { + x_1383 = lean_alloc_ctor(1, 2, 0); +} else { + x_1383 = x_1366; + lean_ctor_set_tag(x_1383, 1); +} +lean_ctor_set(x_1383, 0, x_1367); +lean_ctor_set(x_1383, 1, x_1368); +return x_1383; +} +else +{ +lean_object* x_1384; uint8_t x_1385; +lean_dec(x_1366); +x_1384 = l_Lean_Elab_Term_SavedState_restore(x_1364, x_10, x_11, x_12, x_13, x_14, x_15, x_1368); +lean_dec(x_15); +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_10); +x_1385 = !lean_is_exclusive(x_1384); +if (x_1385 == 0) +{ +lean_object* x_1386; +x_1386 = lean_ctor_get(x_1384, 0); +lean_dec(x_1386); +lean_ctor_set_tag(x_1384, 1); +lean_ctor_set(x_1384, 0, x_1367); +return x_1384; +} +else +{ +lean_object* x_1387; lean_object* x_1388; +x_1387 = lean_ctor_get(x_1384, 1); +lean_inc(x_1387); +lean_dec(x_1384); +x_1388 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1388, 0, x_1367); +lean_ctor_set(x_1388, 1, x_1387); +return x_1388; +} +} +} +} +} +} +} +} +} +} +else +{ +lean_object* x_1409; lean_object* x_1410; lean_object* x_1411; lean_object* x_1412; lean_object* x_1413; +lean_dec(x_1); +x_1409 = l_Lean_Syntax_getId(x_1078); +lean_dec(x_1078); +x_1410 = lean_erase_macro_scopes(x_1409); +x_1411 = l_Lean_Name_components(x_1410); +x_1412 = l_List_map___at___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppFn___spec__1(x_1411); +x_1413 = l_List_append___rarg(x_1412, x_2); +x_1 = x_1076; +x_2 = x_1413; +goto _start; +} +} +else +{ +lean_object* x_1415; lean_object* x_1416; +lean_dec(x_1); +x_1415 = l_Lean_fieldIdxKind; +x_1416 = l___private_Init_Meta_0__Lean_Syntax_isNatLitAux(x_1415, x_1078); +lean_dec(x_1078); +if (lean_obj_tag(x_1416) == 0) +{ +lean_object* x_1417; lean_object* x_1418; lean_object* x_1419; lean_object* x_1420; lean_object* x_1421; +x_1417 = l_instInhabitedNat; +x_1418 = l_Option_get_x21___rarg___closed__4; +x_1419 = lean_panic_fn(x_1417, x_1418); +x_1420 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_1420, 0, x_1419); +x_1421 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1421, 0, x_1420); +lean_ctor_set(x_1421, 1, x_2); +x_1 = x_1076; +x_2 = x_1421; +goto _start; +} +else { lean_object* x_1423; lean_object* x_1424; lean_object* x_1425; -x_1423 = lean_ctor_get(x_1421, 1); -x_1424 = lean_ctor_get(x_1421, 0); -lean_dec(x_1424); -lean_ctor_set(x_1421, 1, x_1419); -lean_ctor_set(x_1421, 0, x_1416); -x_1425 = l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppFn___lambda__1(x_9, x_1421, x_10, x_11, x_12, x_13, x_14, x_15, x_1423); -lean_dec(x_15); -lean_dec(x_14); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -return x_1425; -} -else -{ -lean_object* x_1426; lean_object* x_1427; lean_object* x_1428; -x_1426 = lean_ctor_get(x_1421, 1); -lean_inc(x_1426); -lean_dec(x_1421); -x_1427 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1427, 0, x_1416); -lean_ctor_set(x_1427, 1, x_1419); -x_1428 = l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppFn___lambda__1(x_9, x_1427, x_10, x_11, x_12, x_13, x_14, x_15, x_1426); -lean_dec(x_15); -lean_dec(x_14); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -return x_1428; -} -} -else -{ -lean_object* x_1429; lean_object* x_1430; -x_1429 = lean_ctor_get(x_1415, 0); -lean_inc(x_1429); -x_1430 = lean_ctor_get(x_1415, 1); -lean_inc(x_1430); -lean_dec(x_1415); -x_1392 = x_1429; -x_1393 = x_1430; -goto block_1414; -} -block_1414: -{ -if (lean_obj_tag(x_1392) == 0) -{ -lean_object* x_1394; lean_object* x_1395; lean_object* x_1396; lean_object* x_1397; uint8_t x_1398; -lean_dec(x_1391); -x_1394 = l_Lean_Elab_Term_saveAllState___rarg(x_11, x_12, x_13, x_14, x_15, x_1393); -x_1395 = lean_ctor_get(x_1394, 0); -lean_inc(x_1395); -x_1396 = lean_ctor_get(x_1394, 1); -lean_inc(x_1396); -lean_dec(x_1394); -x_1397 = l_Lean_Elab_Term_SavedState_restore(x_1389, x_10, x_11, x_12, x_13, x_14, x_15, x_1396); -x_1398 = !lean_is_exclusive(x_1397); -if (x_1398 == 0) -{ -lean_object* x_1399; lean_object* x_1400; lean_object* x_1401; -x_1399 = lean_ctor_get(x_1397, 1); -x_1400 = lean_ctor_get(x_1397, 0); -lean_dec(x_1400); -lean_ctor_set_tag(x_1397, 1); -lean_ctor_set(x_1397, 1, x_1395); -lean_ctor_set(x_1397, 0, x_1392); -x_1401 = l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppFn___lambda__1(x_9, x_1397, x_10, x_11, x_12, x_13, x_14, x_15, x_1399); -lean_dec(x_15); -lean_dec(x_14); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -return x_1401; -} -else -{ -lean_object* x_1402; lean_object* x_1403; lean_object* x_1404; -x_1402 = lean_ctor_get(x_1397, 1); -lean_inc(x_1402); -lean_dec(x_1397); -x_1403 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1403, 0, x_1392); -lean_ctor_set(x_1403, 1, x_1395); -x_1404 = l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppFn___lambda__1(x_9, x_1403, x_10, x_11, x_12, x_13, x_14, x_15, x_1402); -lean_dec(x_15); -lean_dec(x_14); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -return x_1404; -} -} -else -{ -lean_object* x_1405; lean_object* x_1406; uint8_t x_1407; -lean_dec(x_9); -x_1405 = lean_ctor_get(x_1392, 0); -lean_inc(x_1405); -x_1406 = l_Lean_Elab_postponeExceptionId; -x_1407 = lean_nat_dec_eq(x_1405, x_1406); -lean_dec(x_1405); -if (x_1407 == 0) -{ -lean_object* x_1408; -lean_dec(x_1389); -lean_dec(x_15); -lean_dec(x_14); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -if (lean_is_scalar(x_1391)) { - x_1408 = lean_alloc_ctor(1, 2, 0); -} else { - x_1408 = x_1391; - lean_ctor_set_tag(x_1408, 1); -} -lean_ctor_set(x_1408, 0, x_1392); -lean_ctor_set(x_1408, 1, x_1393); -return x_1408; -} -else -{ -lean_object* x_1409; uint8_t x_1410; -lean_dec(x_1391); -x_1409 = l_Lean_Elab_Term_SavedState_restore(x_1389, x_10, x_11, x_12, x_13, x_14, x_15, x_1393); -lean_dec(x_15); -lean_dec(x_14); -lean_dec(x_13); -lean_dec(x_12); -lean_dec(x_11); -lean_dec(x_10); -x_1410 = !lean_is_exclusive(x_1409); -if (x_1410 == 0) -{ -lean_object* x_1411; -x_1411 = lean_ctor_get(x_1409, 0); -lean_dec(x_1411); -lean_ctor_set_tag(x_1409, 1); -lean_ctor_set(x_1409, 0, x_1392); -return x_1409; -} -else -{ -lean_object* x_1412; lean_object* x_1413; -x_1412 = lean_ctor_get(x_1409, 1); -lean_inc(x_1412); -lean_dec(x_1409); -x_1413 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1413, 0, x_1392); -lean_ctor_set(x_1413, 1, x_1412); -return x_1413; -} -} -} -} -} -} -} -} -} -} -else -{ -lean_object* x_1434; lean_object* x_1435; lean_object* x_1436; lean_object* x_1437; lean_object* x_1438; -lean_dec(x_1); -x_1434 = l_Lean_Syntax_getId(x_1103); -lean_dec(x_1103); -x_1435 = lean_erase_macro_scopes(x_1434); -x_1436 = l_Lean_Name_components(x_1435); -x_1437 = l_List_map___at___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppFn___spec__1(x_1436); -x_1438 = l_List_append___rarg(x_1437, x_2); -x_1 = x_1101; -x_2 = x_1438; -goto _start; -} -} -else -{ -lean_object* x_1440; lean_object* x_1441; -lean_dec(x_1); -x_1440 = l_Lean_fieldIdxKind; -x_1441 = l___private_Init_Meta_0__Lean_Syntax_isNatLitAux(x_1440, x_1103); -lean_dec(x_1103); -if (lean_obj_tag(x_1441) == 0) -{ -lean_object* x_1442; lean_object* x_1443; lean_object* x_1444; lean_object* x_1445; lean_object* x_1446; -x_1442 = l_instInhabitedNat; -x_1443 = l_Option_get_x21___rarg___closed__4; -x_1444 = lean_panic_fn(x_1442, x_1443); -x_1445 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_1445, 0, x_1444); -x_1446 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1446, 0, x_1445); -lean_ctor_set(x_1446, 1, x_2); -x_1 = x_1101; -x_2 = x_1446; -goto _start; -} -else -{ -lean_object* x_1448; lean_object* x_1449; lean_object* x_1450; -x_1448 = lean_ctor_get(x_1441, 0); -lean_inc(x_1448); -lean_dec(x_1441); -x_1449 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_1449, 0, x_1448); -x_1450 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1450, 0, x_1449); -lean_ctor_set(x_1450, 1, x_2); -x_1 = x_1101; -x_2 = x_1450; +x_1423 = lean_ctor_get(x_1416, 0); +lean_inc(x_1423); +lean_dec(x_1416); +x_1424 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_1424, 0, x_1423); +x_1425 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1425, 0, x_1424); +lean_ctor_set(x_1425, 1, x_2); +x_1 = x_1076; +x_2 = x_1425; goto _start; } } @@ -31704,17 +31552,17 @@ goto _start; } else { -lean_object* x_1452; lean_object* x_1453; lean_object* x_1454; uint8_t x_1455; -x_1452 = l_Lean_Syntax_getArgs(x_1); +lean_object* x_1427; lean_object* x_1428; lean_object* x_1429; uint8_t x_1430; +x_1427 = l_Lean_Syntax_getArgs(x_1); lean_dec(x_1); -x_1453 = lean_array_get_size(x_1452); -x_1454 = lean_unsigned_to_nat(0u); -x_1455 = lean_nat_dec_lt(x_1454, x_1453); -if (x_1455 == 0) +x_1428 = lean_array_get_size(x_1427); +x_1429 = lean_unsigned_to_nat(0u); +x_1430 = lean_nat_dec_lt(x_1429, x_1428); +if (x_1430 == 0) { -lean_object* x_1456; -lean_dec(x_1453); -lean_dec(x_1452); +lean_object* x_1431; +lean_dec(x_1428); +lean_dec(x_1427); lean_dec(x_15); lean_dec(x_14); lean_dec(x_13); @@ -31725,27 +31573,27 @@ lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); -x_1456 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1456, 0, x_9); -lean_ctor_set(x_1456, 1, x_16); -return x_1456; +x_1431 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1431, 0, x_9); +lean_ctor_set(x_1431, 1, x_16); +return x_1431; } else { -uint8_t x_1457; -x_1457 = !lean_is_exclusive(x_10); -if (x_1457 == 0) +uint8_t x_1432; +x_1432 = !lean_is_exclusive(x_10); +if (x_1432 == 0) { -uint8_t x_1458; uint8_t x_1459; -x_1458 = 0; -lean_ctor_set_uint8(x_10, sizeof(void*)*6 + 1, x_1458); -x_1459 = lean_nat_dec_le(x_1453, x_1453); -if (x_1459 == 0) +uint8_t x_1433; uint8_t x_1434; +x_1433 = 0; +lean_ctor_set_uint8(x_10, sizeof(void*)*6 + 1, x_1433); +x_1434 = lean_nat_dec_le(x_1428, x_1428); +if (x_1434 == 0) { -lean_object* x_1460; +lean_object* x_1435; lean_dec(x_10); -lean_dec(x_1453); -lean_dec(x_1452); +lean_dec(x_1428); +lean_dec(x_1427); lean_dec(x_15); lean_dec(x_14); lean_dec(x_13); @@ -31755,58 +31603,58 @@ lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); -x_1460 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1460, 0, x_9); -lean_ctor_set(x_1460, 1, x_16); -return x_1460; +x_1435 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1435, 0, x_9); +lean_ctor_set(x_1435, 1, x_16); +return x_1435; } else { -size_t x_1461; size_t x_1462; lean_object* x_1463; -x_1461 = 0; -x_1462 = lean_usize_of_nat(x_1453); -lean_dec(x_1453); -x_1463 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppFn___spec__2(x_2, x_3, x_4, x_5, x_6, x_7, x_1452, x_1461, x_1462, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16); -lean_dec(x_1452); -return x_1463; +size_t x_1436; size_t x_1437; lean_object* x_1438; +x_1436 = 0; +x_1437 = lean_usize_of_nat(x_1428); +lean_dec(x_1428); +x_1438 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppFn___spec__2(x_2, x_3, x_4, x_5, x_6, x_7, x_1427, x_1436, x_1437, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16); +lean_dec(x_1427); +return x_1438; } } else { -lean_object* x_1464; lean_object* x_1465; lean_object* x_1466; lean_object* x_1467; lean_object* x_1468; uint8_t x_1469; uint8_t x_1470; lean_object* x_1471; uint8_t x_1472; lean_object* x_1473; uint8_t x_1474; -x_1464 = lean_ctor_get(x_10, 0); -x_1465 = lean_ctor_get(x_10, 1); -x_1466 = lean_ctor_get(x_10, 2); -x_1467 = lean_ctor_get(x_10, 3); -x_1468 = lean_ctor_get(x_10, 4); -x_1469 = lean_ctor_get_uint8(x_10, sizeof(void*)*6); -x_1470 = lean_ctor_get_uint8(x_10, sizeof(void*)*6 + 2); -x_1471 = lean_ctor_get(x_10, 5); -lean_inc(x_1471); -lean_inc(x_1468); -lean_inc(x_1467); -lean_inc(x_1466); -lean_inc(x_1465); -lean_inc(x_1464); +lean_object* x_1439; lean_object* x_1440; lean_object* x_1441; lean_object* x_1442; lean_object* x_1443; uint8_t x_1444; uint8_t x_1445; lean_object* x_1446; uint8_t x_1447; lean_object* x_1448; uint8_t x_1449; +x_1439 = lean_ctor_get(x_10, 0); +x_1440 = lean_ctor_get(x_10, 1); +x_1441 = lean_ctor_get(x_10, 2); +x_1442 = lean_ctor_get(x_10, 3); +x_1443 = lean_ctor_get(x_10, 4); +x_1444 = lean_ctor_get_uint8(x_10, sizeof(void*)*6); +x_1445 = lean_ctor_get_uint8(x_10, sizeof(void*)*6 + 2); +x_1446 = lean_ctor_get(x_10, 5); +lean_inc(x_1446); +lean_inc(x_1443); +lean_inc(x_1442); +lean_inc(x_1441); +lean_inc(x_1440); +lean_inc(x_1439); lean_dec(x_10); -x_1472 = 0; -x_1473 = lean_alloc_ctor(0, 6, 3); -lean_ctor_set(x_1473, 0, x_1464); -lean_ctor_set(x_1473, 1, x_1465); -lean_ctor_set(x_1473, 2, x_1466); -lean_ctor_set(x_1473, 3, x_1467); -lean_ctor_set(x_1473, 4, x_1468); -lean_ctor_set(x_1473, 5, x_1471); -lean_ctor_set_uint8(x_1473, sizeof(void*)*6, x_1469); -lean_ctor_set_uint8(x_1473, sizeof(void*)*6 + 1, x_1472); -lean_ctor_set_uint8(x_1473, sizeof(void*)*6 + 2, x_1470); -x_1474 = lean_nat_dec_le(x_1453, x_1453); -if (x_1474 == 0) +x_1447 = 0; +x_1448 = lean_alloc_ctor(0, 6, 3); +lean_ctor_set(x_1448, 0, x_1439); +lean_ctor_set(x_1448, 1, x_1440); +lean_ctor_set(x_1448, 2, x_1441); +lean_ctor_set(x_1448, 3, x_1442); +lean_ctor_set(x_1448, 4, x_1443); +lean_ctor_set(x_1448, 5, x_1446); +lean_ctor_set_uint8(x_1448, sizeof(void*)*6, x_1444); +lean_ctor_set_uint8(x_1448, sizeof(void*)*6 + 1, x_1447); +lean_ctor_set_uint8(x_1448, sizeof(void*)*6 + 2, x_1445); +x_1449 = lean_nat_dec_le(x_1428, x_1428); +if (x_1449 == 0) { -lean_object* x_1475; -lean_dec(x_1473); -lean_dec(x_1453); -lean_dec(x_1452); +lean_object* x_1450; +lean_dec(x_1448); +lean_dec(x_1428); +lean_dec(x_1427); lean_dec(x_15); lean_dec(x_14); lean_dec(x_13); @@ -31816,20 +31664,20 @@ lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); -x_1475 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1475, 0, x_9); -lean_ctor_set(x_1475, 1, x_16); -return x_1475; +x_1450 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1450, 0, x_9); +lean_ctor_set(x_1450, 1, x_16); +return x_1450; } else { -size_t x_1476; size_t x_1477; lean_object* x_1478; -x_1476 = 0; -x_1477 = lean_usize_of_nat(x_1453); -lean_dec(x_1453); -x_1478 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppFn___spec__2(x_2, x_3, x_4, x_5, x_6, x_7, x_1452, x_1476, x_1477, x_9, x_1473, x_11, x_12, x_13, x_14, x_15, x_16); -lean_dec(x_1452); -return x_1478; +size_t x_1451; size_t x_1452; lean_object* x_1453; +x_1451 = 0; +x_1452 = lean_usize_of_nat(x_1428); +lean_dec(x_1428); +x_1453 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppFn___spec__2(x_2, x_3, x_4, x_5, x_6, x_7, x_1427, x_1451, x_1452, x_9, x_1448, x_11, x_12, x_13, x_14, x_15, x_16); +lean_dec(x_1427); +return x_1453; } } } @@ -32399,7 +32247,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_Array_mapMUnsafe_map___at___private_Lean_Elab_App_0__Lean_Elab_Term_mergeFailures___spec__1___closed__1; x_2 = l_Array_mapMUnsafe_map___at___private_Lean_Elab_App_0__Lean_Elab_Term_mergeFailures___spec__1___closed__2; -x_3 = lean_unsigned_to_nat(858u); +x_3 = lean_unsigned_to_nat(859u); x_4 = lean_unsigned_to_nat(35u); 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); @@ -32687,7 +32535,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_Array_mapMUnsafe_map___at___private_Lean_Elab_App_0__Lean_Elab_Term_mergeFailures___spec__1___closed__1; x_2 = l_Array_mapMUnsafe_map___at___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppAux___spec__1___closed__1; -x_3 = lean_unsigned_to_nat(876u); +x_3 = lean_unsigned_to_nat(877u); x_4 = lean_unsigned_to_nat(35u); 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); @@ -34550,7 +34398,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_App___hyg_7747_(lean_object* x_1) { +lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7710_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; @@ -34901,7 +34749,7 @@ lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_elabArrayRef___closed__1); res = l___regBuiltin_Lean_Elab_Term_elabArrayRef(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_App___hyg_7747_(lean_io_mk_world()); +res = l_Lean_Elab_Term_initFn____x40_Lean_Elab_App___hyg_7710_(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/Binders.c b/stage0/stdlib/Lean/Elab/Binders.c index 44b05d7ce7..291b362190 100644 --- a/stage0/stdlib/Lean/Elab/Binders.c +++ b/stage0/stdlib/Lean/Elab/Binders.c @@ -409,6 +409,7 @@ lean_object* l_Lean_Elab_Term_quoteAutoTactic___closed__12; lean_object* l_Lean_Elab_Term_quoteAutoTactic_match__1(lean_object*); lean_object* l_Lean_Elab_Term_elabLetDeclAux___lambda__1___closed__2; extern lean_object* l_myMacro____x40_Init_Notation___hyg_1625____closed__4; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13713____closed__2; 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; @@ -464,7 +465,6 @@ lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Term_elabForall__ lean_object* l_Lean_Elab_Term_quoteAutoTactic___closed__17; lean_object* l_Lean_Elab_Term_elabLetDeclAux___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_mkLetRec(lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13707____closed__2; lean_object* l_Lean_setEnv___at_Lean_Elab_Term_declareTacticSyntax___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_expandExplicitBindersAux_loop___closed__8; lean_object* l_Lean_Syntax_getArg(lean_object*, lean_object*); @@ -17805,7 +17805,7 @@ x_79 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_79, 0, x_69); lean_ctor_set(x_79, 1, x_78); x_80 = lean_array_push(x_67, x_79); -x_81 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13707____closed__2; +x_81 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13713____closed__2; x_82 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_82, 0, x_81); lean_ctor_set(x_82, 1, x_80); @@ -17840,7 +17840,7 @@ x_97 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_97, 0, x_87); lean_ctor_set(x_97, 1, x_96); x_98 = lean_array_push(x_85, x_97); -x_99 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13707____closed__2; +x_99 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13713____closed__2; x_100 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_100, 0, x_99); lean_ctor_set(x_100, 1, x_98); @@ -17973,7 +17973,7 @@ x_153 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_153, 0, x_143); lean_ctor_set(x_153, 1, x_152); x_154 = lean_array_push(x_141, x_153); -x_155 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13707____closed__2; +x_155 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13713____closed__2; x_156 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_156, 0, x_155); lean_ctor_set(x_156, 1, x_154); diff --git a/stage0/stdlib/Lean/Elab/BuiltinNotation.c b/stage0/stdlib/Lean/Elab/BuiltinNotation.c index db20e62326..4e9df82dc4 100644 --- a/stage0/stdlib/Lean/Elab/BuiltinNotation.c +++ b/stage0/stdlib/Lean/Elab/BuiltinNotation.c @@ -14,6 +14,7 @@ extern "C" { #endif extern lean_object* l_myMacro____x40_Init_Notation___hyg_10790____closed__11; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14154____closed__2; lean_object* l_Lean_Elab_Term_expandHave_match__3(lean_object*); lean_object* l_Lean_Elab_Term_expandAssert___closed__21; lean_object* l_Lean_mkCIdentFrom(lean_object*, lean_object*); @@ -78,7 +79,6 @@ lean_object* lean_array_uset(lean_object*, size_t, lean_object*); lean_object* l_Lean_Elab_Term_expandSuffices_match__7(lean_object*); lean_object* l_Lean_Elab_Term_elabPanic___closed__3; lean_object* l_Lean_Elab_Term_expandAssert___closed__23; -lean_object* l_Lean_Elab_Term_elabAnonymousCtor___closed__11; lean_object* l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_mkNativeReflAuxDecl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Util_Trace_0__Lean_checkTraceOptionM___at_Lean_Meta_isLevelDefEqAux___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_withLocalDeclImp___rarg(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -86,6 +86,7 @@ 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__12; extern lean_object* l_Array_empty___closed__1; lean_object* l_Lean_Elab_Term_expandAssert___closed__12; +lean_object* l_Lean_Elab_Term_expandHave___closed__4; lean_object* l_Lean_Elab_Term_expandAssert_match__1(lean_object*); lean_object* lean_environment_find(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_expandEmptyC___closed__8; @@ -123,7 +124,6 @@ lean_object* l_Lean_Meta_withLocalDecl___at___private_Lean_Elab_Term_0__Lean_Ela lean_object* l_Lean_Meta_mkAppM___rarg___lambda__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_expandEmptyC___closed__9; lean_object* l___regBuiltin_Lean_Elab_Term_expandAssert___closed__3; -extern lean_object* l_Array_getEvenElems___rarg___closed__1; lean_object* l_Lean_Elab_Term_mkPairs_loop___closed__2; lean_object* l_Lean_Elab_Term_elabSubst___closed__7; lean_object* l_Lean_Elab_Term_elabPanic___closed__6; @@ -184,6 +184,7 @@ lean_object* l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserM lean_object* l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabClosedTerm___lambda__1___closed__1; lean_object* l_Lean_Elab_Term_elabParen___closed__1; extern lean_object* l_Lean_Meta_mkDecideProof___rarg___lambda__1___closed__2; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13713____closed__3; lean_object* l___regBuiltin_Lean_Elab_Term_elabTParserMacro(lean_object*); lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_expandCDot___spec__1(size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabPanic___closed__10; @@ -193,9 +194,9 @@ lean_object* l_Lean_Elab_Term_expandUnreachable___rarg___closed__7; lean_object* l_Lean_Elab_Term_expandAssert_match__1___rarg(lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserMacroAux___closed__24; lean_object* l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabTParserMacroAux(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15698____closed__2; lean_object* l___regBuiltin_Lean_Elab_Term_expandHave(lean_object*); lean_object* l_Lean_Elab_Term_expandAssert___closed__22; +lean_object* l_Lean_Syntax_SepArray_getElems___rarg(lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_elabPanic(lean_object*); extern lean_object* l___private_Init_Meta_0__Lean_quoteOption___rarg___closed__6; lean_object* l_Lean_Elab_Term_expandSuffices_match__4___rarg(lean_object*, lean_object*, lean_object*); @@ -327,7 +328,6 @@ lean_object* l_Lean_Syntax_mkStrLit(lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_expandDbgTrace___closed__2; lean_object* l_Lean_Elab_Term_expandSorry___rarg___closed__6; extern lean_object* l_Lean_Parser_Tactic_suffices___closed__1; -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14019____closed__2; extern lean_object* l_Lean_Literal_type___closed__2; extern lean_object* l_Lean_instToExprUnit___lambda__1___closed__3; lean_object* l_Lean_Elab_Term_expandHave_match__2(lean_object*); @@ -338,6 +338,7 @@ lean_object* l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserM extern lean_object* l_Lean_KernelException_toMessageData___closed__15; lean_object* l_Lean_Meta_mkEqRefl___at_Lean_Elab_Term_elabNativeDecide___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabNativeRefl___lambda__1___closed__8; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14025____closed__2; extern lean_object* l_Lean_instInhabitedSyntax; uint8_t l_Lean_Expr_isConstOf(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_expandHave_match__4___rarg(lean_object*, lean_object*, lean_object*); @@ -366,7 +367,6 @@ 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; -lean_object* l_Lean_Elab_Term_elabAnonymousCtor___closed__10; lean_object* l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_getPropToDecide___closed__4; lean_object* l_Lean_Elab_Term_elabSubst___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*, lean_object*); lean_object* l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_mkNativeReflAuxDecl___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -454,6 +454,7 @@ lean_object* l_Lean_Elab_Term_elabNativeRefl___lambda__1___closed__4; lean_object* l_Lean_Elab_Term_elabPanic_match__1(lean_object*); lean_object* l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserMacroAux___closed__15; lean_object* l_Lean_Elab_Term_elabPanic___closed__12; +lean_object* l_Lean_Elab_Term_expandHave___closed__3; uint8_t l_Array_anyMUnsafe_any___at___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_hasCDot___spec__1(lean_object*, size_t, size_t); 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_Lean_Meta_withLocalDecl___at_Lean_Elab_Term_elabSubst___spec__3(lean_object*); @@ -491,7 +492,6 @@ uint8_t l_Lean_Syntax_isNone(lean_object*); lean_object* l_Lean_Meta_inferType(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_expandUnreachable___rarg___closed__9; extern lean_object* l_Lean_Meta_mkSorry___rarg___lambda__1___closed__2; -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13707____closed__3; 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_Meta_withNewMCtxDepth___at___private_Lean_Meta_Instances_0__Lean_Meta_mkInstanceKey___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -528,7 +528,6 @@ lean_object* l_Lean_Elab_Term_elabNativeDecide___boxed(lean_object*); lean_object* l_Lean_Elab_Term_elabSubst___closed__2; lean_object* l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserMacroAux___closed__8; lean_object* l_Lean_Elab_Term_elabPanic___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_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15698____closed__4; lean_object* l_Lean_Meta_reduceNative_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Meta_reduceNative_x3f___closed__4; lean_object* l___regBuiltin_Lean_Elab_Term_elabParserMacro___closed__1; @@ -558,6 +557,7 @@ lean_object* l_Lean_throwError___at_Lean_Elab_Term_elabLetDeclAux___spec__1___ra lean_object* l_Lean_Elab_Term_elabSubst___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_List_beq___at___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserMacroAux___spec__1___boxed(lean_object*, lean_object*); lean_object* l_Lean_Expr_getAppFn(lean_object*); +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15704____closed__2; lean_object* l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserMacroAux___closed__27; lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_expandCDot___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_elabSubst___closed__8; @@ -565,6 +565,7 @@ lean_object* l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserM lean_object* l_Lean_Elab_Term_elabAnonymousCtor___closed__7; extern lean_object* l_Lean_expandExplicitBindersAux_loop___closed__4; lean_object* l_Lean_Elab_Term_expandAssert___closed__9; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15704____closed__4; lean_object* l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserMacroAux___closed__23; lean_object* l_unsafeCast(lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_expandSuffices___closed__1; @@ -610,7 +611,6 @@ lean_object* l_Lean_Meta_mkEqRefl___at_Lean_Elab_Term_elabNativeRefl___spec__1(l lean_object* l_Lean_mkConst(lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Elab_Term_elabStateRefT(lean_object*); lean_object* l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabTParserMacroAux___closed__4; -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14148____closed__2; lean_object* l_Lean_Elab_Term_expandShow___closed__14; extern lean_object* l_myMacro____x40_Init_Notation___hyg_12545____closed__14; lean_object* l_Lean_Elab_Term_expandAssert___closed__1; @@ -626,7 +626,6 @@ 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; @@ -801,27 +800,6 @@ x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -static lean_object* _init_l_Lean_Elab_Term_elabAnonymousCtor___closed__10() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Array_empty___closed__1; -x_2 = l_Array_appendCore___rarg(x_1, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Elab_Term_elabAnonymousCtor___closed__11() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_nullKind___closed__2; -x_2 = l_Lean_Elab_Term_elabAnonymousCtor___closed__10; -x_3 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3, 0, x_1); -lean_ctor_set(x_3, 1, x_2); -return x_3; -} -} lean_object* l_Lean_Elab_Term_elabAnonymousCtor(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: { @@ -899,7 +877,7 @@ lean_dec(x_22); x_25 = l_Lean_Expr_getAppFn(x_23); if (lean_obj_tag(x_25) == 4) { -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_54; +lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; x_26 = lean_ctor_get(x_25, 0); lean_inc(x_26); lean_dec(x_25); @@ -912,299 +890,328 @@ lean_dec(x_27); x_30 = lean_ctor_get(x_28, 0); lean_inc(x_30); lean_dec(x_28); -x_54 = lean_environment_find(x_30, x_26); -if (lean_obj_tag(x_54) == 0) +x_31 = lean_environment_find(x_30, x_26); +if (lean_obj_tag(x_31) == 0) { -lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; +lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_dec(x_15); lean_dec(x_2); lean_dec(x_1); -x_55 = l_Lean_indentExpr(x_23); -x_56 = l_Lean_Elab_Term_elabAnonymousCtor___closed__7; -x_57 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_57, 0, x_56); -lean_ctor_set(x_57, 1, x_55); -x_58 = l_Lean_KernelException_toMessageData___closed__15; -x_59 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_59, 0, x_57); -lean_ctor_set(x_59, 1, x_58); -x_60 = l_Lean_throwError___at_Lean_Elab_Term_throwErrorIfErrors___spec__1___rarg(x_59, x_3, x_4, x_5, x_6, x_7, x_8, x_29); +x_32 = l_Lean_indentExpr(x_23); +x_33 = l_Lean_Elab_Term_elabAnonymousCtor___closed__7; +x_34 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_34, 0, x_33); +lean_ctor_set(x_34, 1, x_32); +x_35 = l_Lean_KernelException_toMessageData___closed__15; +x_36 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_36, 0, x_34); +lean_ctor_set(x_36, 1, x_35); +x_37 = l_Lean_throwError___at_Lean_Elab_Term_throwErrorIfErrors___spec__1___rarg(x_36, x_3, x_4, x_5, x_6, x_7, x_8, x_29); lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -return x_60; +return x_37; } else { -lean_object* x_61; -x_61 = lean_ctor_get(x_54, 0); -lean_inc(x_61); -lean_dec(x_54); -if (lean_obj_tag(x_61) == 5) +lean_object* x_38; +x_38 = lean_ctor_get(x_31, 0); +lean_inc(x_38); +lean_dec(x_31); +if (lean_obj_tag(x_38) == 5) { -lean_object* x_62; lean_object* x_63; -x_62 = lean_ctor_get(x_61, 0); -lean_inc(x_62); -lean_dec(x_61); -x_63 = lean_ctor_get(x_62, 4); -lean_inc(x_63); -lean_dec(x_62); -if (lean_obj_tag(x_63) == 0) +lean_object* x_39; lean_object* x_40; +x_39 = lean_ctor_get(x_38, 0); +lean_inc(x_39); +lean_dec(x_38); +x_40 = lean_ctor_get(x_39, 4); +lean_inc(x_40); +lean_dec(x_39); +if (lean_obj_tag(x_40) == 0) { -lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; +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_dec(x_15); lean_dec(x_2); lean_dec(x_1); -x_64 = l_Lean_indentExpr(x_23); -x_65 = l_Lean_Elab_Term_elabAnonymousCtor___closed__9; -x_66 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_66, 0, x_65); -lean_ctor_set(x_66, 1, x_64); -x_67 = l_Lean_KernelException_toMessageData___closed__15; -x_68 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_68, 0, x_66); -lean_ctor_set(x_68, 1, x_67); -x_69 = l_Lean_throwError___at_Lean_Elab_Term_throwErrorIfErrors___spec__1___rarg(x_68, x_3, x_4, x_5, x_6, x_7, x_8, x_29); +x_41 = l_Lean_indentExpr(x_23); +x_42 = l_Lean_Elab_Term_elabAnonymousCtor___closed__9; +x_43 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_43, 0, x_42); +lean_ctor_set(x_43, 1, x_41); +x_44 = l_Lean_KernelException_toMessageData___closed__15; +x_45 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_45, 0, x_43); +lean_ctor_set(x_45, 1, x_44); +x_46 = l_Lean_throwError___at_Lean_Elab_Term_throwErrorIfErrors___spec__1___rarg(x_45, x_3, x_4, x_5, x_6, x_7, x_8, x_29); lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); +return x_46; +} +else +{ +lean_object* x_47; +x_47 = lean_ctor_get(x_40, 1); +lean_inc(x_47); +if (lean_obj_tag(x_47) == 0) +{ +uint8_t x_48; +lean_dec(x_23); +x_48 = !lean_is_exclusive(x_40); +if (x_48 == 0) +{ +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; uint8_t x_65; +x_49 = lean_ctor_get(x_40, 0); +x_50 = lean_ctor_get(x_40, 1); +lean_dec(x_50); +x_51 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4, x_5, x_6, x_7, x_8, x_29); +x_52 = lean_ctor_get(x_51, 1); +lean_inc(x_52); +lean_dec(x_51); +x_53 = l_Lean_Elab_Term_getMainModule___rarg(x_8, x_52); +x_54 = lean_ctor_get(x_53, 1); +lean_inc(x_54); +lean_dec(x_53); +x_55 = l_Lean_mkCIdentFrom(x_1, x_49); +x_56 = l_Array_empty___closed__1; +x_57 = lean_array_push(x_56, x_55); +x_58 = l_Lean_Syntax_SepArray_getElems___rarg(x_15); +lean_dec(x_15); +x_59 = l_Array_appendCore___rarg(x_56, x_58); +lean_dec(x_58); +x_60 = l_Lean_nullKind___closed__2; +x_61 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_61, 0, x_60); +lean_ctor_set(x_61, 1, x_59); +x_62 = lean_array_push(x_57, x_61); +x_63 = l_myMacro____x40_Init_Notation___hyg_1625____closed__4; +x_64 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_64, 0, x_63); +lean_ctor_set(x_64, 1, x_62); +x_65 = !lean_is_exclusive(x_3); +if (x_65 == 0) +{ +lean_object* x_66; lean_object* x_67; uint8_t x_68; lean_object* x_69; +x_66 = lean_ctor_get(x_3, 3); +lean_inc(x_64); +x_67 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_67, 0, x_1); +lean_ctor_set(x_67, 1, x_64); +lean_ctor_set(x_40, 1, x_66); +lean_ctor_set(x_40, 0, x_67); +lean_ctor_set(x_3, 3, x_40); +x_68 = 1; +x_69 = l_Lean_Elab_Term_elabTerm(x_64, x_2, x_68, x_3, x_4, x_5, x_6, x_7, x_8, x_54); return x_69; } else { -lean_object* x_70; -x_70 = lean_ctor_get(x_63, 1); -lean_inc(x_70); -if (lean_obj_tag(x_70) == 0) -{ -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; uint8_t x_81; -lean_dec(x_23); -x_71 = lean_ctor_get(x_63, 0); -lean_inc(x_71); -lean_dec(x_63); -x_72 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4, x_5, x_6, x_7, x_8, x_29); -x_73 = lean_ctor_get(x_72, 1); +lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; uint8_t x_75; uint8_t x_76; uint8_t x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; uint8_t x_81; lean_object* x_82; +x_70 = lean_ctor_get(x_3, 0); +x_71 = lean_ctor_get(x_3, 1); +x_72 = lean_ctor_get(x_3, 2); +x_73 = lean_ctor_get(x_3, 3); +x_74 = lean_ctor_get(x_3, 4); +x_75 = lean_ctor_get_uint8(x_3, sizeof(void*)*6); +x_76 = lean_ctor_get_uint8(x_3, sizeof(void*)*6 + 1); +x_77 = lean_ctor_get_uint8(x_3, sizeof(void*)*6 + 2); +x_78 = lean_ctor_get(x_3, 5); +lean_inc(x_78); +lean_inc(x_74); lean_inc(x_73); -lean_dec(x_72); -x_74 = l_Lean_Elab_Term_getMainModule___rarg(x_8, x_73); -x_75 = lean_ctor_get(x_74, 1); -lean_inc(x_75); -lean_dec(x_74); -x_76 = l_Lean_mkCIdentFrom(x_1, x_71); -x_77 = l_Array_empty___closed__1; -x_78 = lean_array_push(x_77, x_76); -x_79 = lean_array_get_size(x_15); -x_80 = lean_unsigned_to_nat(0u); -x_81 = lean_nat_dec_lt(x_80, x_79); -if (x_81 == 0) -{ -lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; -lean_dec(x_79); -lean_dec(x_15); -x_82 = l_Lean_Elab_Term_elabAnonymousCtor___closed__11; -x_83 = lean_array_push(x_78, x_82); -x_84 = l_myMacro____x40_Init_Notation___hyg_1625____closed__4; -x_85 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_85, 0, x_84); -lean_ctor_set(x_85, 1, x_83); -x_31 = x_85; -x_32 = x_75; -goto block_53; -} -else -{ -uint8_t x_86; -x_86 = lean_nat_dec_le(x_79, x_79); -if (x_86 == 0) -{ -lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; -lean_dec(x_79); -lean_dec(x_15); -x_87 = l_Lean_Elab_Term_elabAnonymousCtor___closed__11; -x_88 = lean_array_push(x_78, x_87); -x_89 = l_myMacro____x40_Init_Notation___hyg_1625____closed__4; -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_31 = x_90; -x_32 = x_75; -goto block_53; -} -else -{ -size_t x_91; size_t 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; -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_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); -lean_dec(x_94); -x_96 = l_Array_appendCore___rarg(x_77, x_95); -lean_dec(x_95); -x_97 = l_Lean_nullKind___closed__2; -x_98 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_98, 0, x_97); -lean_ctor_set(x_98, 1, x_96); -x_99 = lean_array_push(x_78, x_98); -x_100 = l_myMacro____x40_Init_Notation___hyg_1625____closed__4; -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_31 = x_101; -x_32 = x_75; -goto block_53; -} -} -} -else -{ -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_70); -lean_dec(x_63); -lean_dec(x_15); -lean_dec(x_2); -lean_dec(x_1); -x_102 = l_Lean_indentExpr(x_23); -x_103 = l_Lean_Elab_Term_elabAnonymousCtor___closed__9; -x_104 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_104, 0, x_103); -lean_ctor_set(x_104, 1, x_102); -x_105 = l_Lean_KernelException_toMessageData___closed__15; -x_106 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_106, 0, x_104); -lean_ctor_set(x_106, 1, x_105); -x_107 = l_Lean_throwError___at_Lean_Elab_Term_throwErrorIfErrors___spec__1___rarg(x_106, x_3, x_4, x_5, x_6, x_7, x_8, x_29); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -return x_107; -} -} -} -else -{ -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_dec(x_61); -lean_dec(x_15); -lean_dec(x_2); -lean_dec(x_1); -x_108 = l_Lean_indentExpr(x_23); -x_109 = l_Lean_Elab_Term_elabAnonymousCtor___closed__7; -x_110 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_110, 0, x_109); -lean_ctor_set(x_110, 1, x_108); -x_111 = l_Lean_KernelException_toMessageData___closed__15; -x_112 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_112, 0, x_110); -lean_ctor_set(x_112, 1, x_111); -x_113 = l_Lean_throwError___at_Lean_Elab_Term_throwErrorIfErrors___spec__1___rarg(x_112, x_3, x_4, x_5, x_6, x_7, x_8, x_29); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -return x_113; -} -} -block_53: -{ -uint8_t x_33; -x_33 = !lean_is_exclusive(x_3); -if (x_33 == 0) -{ -lean_object* x_34; lean_object* x_35; lean_object* x_36; uint8_t x_37; lean_object* x_38; -x_34 = lean_ctor_get(x_3, 3); -lean_inc(x_31); -x_35 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_35, 0, x_1); -lean_ctor_set(x_35, 1, x_31); -x_36 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_36, 0, x_35); -lean_ctor_set(x_36, 1, x_34); -lean_ctor_set(x_3, 3, x_36); -x_37 = 1; -x_38 = l_Lean_Elab_Term_elabTerm(x_31, x_2, x_37, x_3, x_4, x_5, x_6, x_7, x_8, x_32); -return x_38; -} -else -{ -lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; uint8_t x_44; uint8_t x_45; uint8_t x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; uint8_t x_51; lean_object* x_52; -x_39 = lean_ctor_get(x_3, 0); -x_40 = lean_ctor_get(x_3, 1); -x_41 = lean_ctor_get(x_3, 2); -x_42 = lean_ctor_get(x_3, 3); -x_43 = lean_ctor_get(x_3, 4); -x_44 = lean_ctor_get_uint8(x_3, sizeof(void*)*6); -x_45 = lean_ctor_get_uint8(x_3, sizeof(void*)*6 + 1); -x_46 = lean_ctor_get_uint8(x_3, sizeof(void*)*6 + 2); -x_47 = lean_ctor_get(x_3, 5); -lean_inc(x_47); -lean_inc(x_43); -lean_inc(x_42); -lean_inc(x_41); -lean_inc(x_40); -lean_inc(x_39); +lean_inc(x_72); +lean_inc(x_71); +lean_inc(x_70); lean_dec(x_3); -lean_inc(x_31); -x_48 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_48, 0, x_1); -lean_ctor_set(x_48, 1, x_31); -x_49 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_49, 0, x_48); -lean_ctor_set(x_49, 1, x_42); -x_50 = lean_alloc_ctor(0, 6, 3); -lean_ctor_set(x_50, 0, x_39); -lean_ctor_set(x_50, 1, x_40); -lean_ctor_set(x_50, 2, x_41); -lean_ctor_set(x_50, 3, x_49); -lean_ctor_set(x_50, 4, x_43); -lean_ctor_set(x_50, 5, x_47); -lean_ctor_set_uint8(x_50, sizeof(void*)*6, x_44); -lean_ctor_set_uint8(x_50, sizeof(void*)*6 + 1, x_45); -lean_ctor_set_uint8(x_50, sizeof(void*)*6 + 2, x_46); -x_51 = 1; -x_52 = l_Lean_Elab_Term_elabTerm(x_31, x_2, x_51, x_50, x_4, x_5, x_6, x_7, x_8, x_32); -return x_52; +lean_inc(x_64); +x_79 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_79, 0, x_1); +lean_ctor_set(x_79, 1, x_64); +lean_ctor_set(x_40, 1, x_73); +lean_ctor_set(x_40, 0, x_79); +x_80 = lean_alloc_ctor(0, 6, 3); +lean_ctor_set(x_80, 0, x_70); +lean_ctor_set(x_80, 1, x_71); +lean_ctor_set(x_80, 2, x_72); +lean_ctor_set(x_80, 3, x_40); +lean_ctor_set(x_80, 4, x_74); +lean_ctor_set(x_80, 5, x_78); +lean_ctor_set_uint8(x_80, sizeof(void*)*6, x_75); +lean_ctor_set_uint8(x_80, sizeof(void*)*6 + 1, x_76); +lean_ctor_set_uint8(x_80, sizeof(void*)*6 + 2, x_77); +x_81 = 1; +x_82 = l_Lean_Elab_Term_elabTerm(x_64, x_2, x_81, x_80, x_4, x_5, x_6, x_7, x_8, x_54); +return x_82; +} +} +else +{ +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; uint8_t x_103; uint8_t x_104; uint8_t x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; uint8_t x_111; lean_object* x_112; +x_83 = lean_ctor_get(x_40, 0); +lean_inc(x_83); +lean_dec(x_40); +x_84 = l_Lean_Elab_Term_getCurrMacroScope(x_3, x_4, x_5, x_6, x_7, x_8, x_29); +x_85 = lean_ctor_get(x_84, 1); +lean_inc(x_85); +lean_dec(x_84); +x_86 = l_Lean_Elab_Term_getMainModule___rarg(x_8, x_85); +x_87 = lean_ctor_get(x_86, 1); +lean_inc(x_87); +lean_dec(x_86); +x_88 = l_Lean_mkCIdentFrom(x_1, x_83); +x_89 = l_Array_empty___closed__1; +x_90 = lean_array_push(x_89, x_88); +x_91 = l_Lean_Syntax_SepArray_getElems___rarg(x_15); +lean_dec(x_15); +x_92 = l_Array_appendCore___rarg(x_89, x_91); +lean_dec(x_91); +x_93 = l_Lean_nullKind___closed__2; +x_94 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_94, 0, x_93); +lean_ctor_set(x_94, 1, x_92); +x_95 = lean_array_push(x_90, x_94); +x_96 = l_myMacro____x40_Init_Notation___hyg_1625____closed__4; +x_97 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_97, 0, x_96); +lean_ctor_set(x_97, 1, x_95); +x_98 = lean_ctor_get(x_3, 0); +lean_inc(x_98); +x_99 = lean_ctor_get(x_3, 1); +lean_inc(x_99); +x_100 = lean_ctor_get(x_3, 2); +lean_inc(x_100); +x_101 = lean_ctor_get(x_3, 3); +lean_inc(x_101); +x_102 = lean_ctor_get(x_3, 4); +lean_inc(x_102); +x_103 = lean_ctor_get_uint8(x_3, sizeof(void*)*6); +x_104 = lean_ctor_get_uint8(x_3, sizeof(void*)*6 + 1); +x_105 = lean_ctor_get_uint8(x_3, sizeof(void*)*6 + 2); +x_106 = lean_ctor_get(x_3, 5); +lean_inc(x_106); +if (lean_is_exclusive(x_3)) { + lean_ctor_release(x_3, 0); + lean_ctor_release(x_3, 1); + lean_ctor_release(x_3, 2); + lean_ctor_release(x_3, 3); + lean_ctor_release(x_3, 4); + lean_ctor_release(x_3, 5); + x_107 = x_3; +} else { + lean_dec_ref(x_3); + x_107 = lean_box(0); +} +lean_inc(x_97); +x_108 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_108, 0, x_1); +lean_ctor_set(x_108, 1, x_97); +x_109 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_109, 0, x_108); +lean_ctor_set(x_109, 1, x_101); +if (lean_is_scalar(x_107)) { + x_110 = lean_alloc_ctor(0, 6, 3); +} else { + x_110 = x_107; +} +lean_ctor_set(x_110, 0, x_98); +lean_ctor_set(x_110, 1, x_99); +lean_ctor_set(x_110, 2, x_100); +lean_ctor_set(x_110, 3, x_109); +lean_ctor_set(x_110, 4, x_102); +lean_ctor_set(x_110, 5, x_106); +lean_ctor_set_uint8(x_110, sizeof(void*)*6, x_103); +lean_ctor_set_uint8(x_110, sizeof(void*)*6 + 1, x_104); +lean_ctor_set_uint8(x_110, sizeof(void*)*6 + 2, x_105); +x_111 = 1; +x_112 = l_Lean_Elab_Term_elabTerm(x_97, x_2, x_111, x_110, x_4, x_5, x_6, x_7, x_8, x_87); +return x_112; +} +} +else +{ +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_dec(x_47); +lean_dec(x_40); +lean_dec(x_15); +lean_dec(x_2); +lean_dec(x_1); +x_113 = l_Lean_indentExpr(x_23); +x_114 = l_Lean_Elab_Term_elabAnonymousCtor___closed__9; +x_115 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_115, 0, x_114); +lean_ctor_set(x_115, 1, x_113); +x_116 = l_Lean_KernelException_toMessageData___closed__15; +x_117 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_117, 0, x_115); +lean_ctor_set(x_117, 1, x_116); +x_118 = l_Lean_throwError___at_Lean_Elab_Term_throwErrorIfErrors___spec__1___rarg(x_117, x_3, x_4, x_5, x_6, x_7, x_8, x_29); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +return x_118; } } } else { -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_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; +lean_dec(x_38); +lean_dec(x_15); +lean_dec(x_2); +lean_dec(x_1); +x_119 = l_Lean_indentExpr(x_23); +x_120 = l_Lean_Elab_Term_elabAnonymousCtor___closed__7; +x_121 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_121, 0, x_120); +lean_ctor_set(x_121, 1, x_119); +x_122 = l_Lean_KernelException_toMessageData___closed__15; +x_123 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_123, 0, x_121); +lean_ctor_set(x_123, 1, x_122); +x_124 = l_Lean_throwError___at_Lean_Elab_Term_throwErrorIfErrors___spec__1___rarg(x_123, x_3, x_4, x_5, x_6, x_7, x_8, x_29); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +return x_124; +} +} +} +else +{ +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_dec(x_25); lean_dec(x_15); lean_dec(x_2); lean_dec(x_1); -x_114 = l_Lean_indentExpr(x_23); -x_115 = l_Lean_Elab_Term_elabAnonymousCtor___closed__7; -x_116 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_116, 0, x_115); -lean_ctor_set(x_116, 1, x_114); -x_117 = l_Lean_KernelException_toMessageData___closed__15; -x_118 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_118, 0, x_116); -lean_ctor_set(x_118, 1, x_117); -x_119 = l_Lean_throwError___at_Lean_Elab_Term_throwErrorIfErrors___spec__1___rarg(x_118, x_3, x_4, x_5, x_6, x_7, x_8, x_24); +x_125 = l_Lean_indentExpr(x_23); +x_126 = l_Lean_Elab_Term_elabAnonymousCtor___closed__7; +x_127 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_127, 0, x_126); +lean_ctor_set(x_127, 1, x_125); +x_128 = l_Lean_KernelException_toMessageData___closed__15; +x_129 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_129, 0, x_127); +lean_ctor_set(x_129, 1, x_128); +x_130 = l_Lean_throwError___at_Lean_Elab_Term_throwErrorIfErrors___spec__1___rarg(x_129, x_3, x_4, x_5, x_6, x_7, x_8, x_24); lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -return x_119; +return x_130; } } else { -uint8_t x_120; +uint8_t x_131; lean_dec(x_15); lean_dec(x_8); lean_dec(x_7); @@ -1214,30 +1221,30 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_120 = !lean_is_exclusive(x_22); -if (x_120 == 0) +x_131 = !lean_is_exclusive(x_22); +if (x_131 == 0) { return x_22; } else { -lean_object* x_121; lean_object* x_122; lean_object* x_123; -x_121 = lean_ctor_get(x_22, 0); -x_122 = lean_ctor_get(x_22, 1); -lean_inc(x_122); -lean_inc(x_121); +lean_object* x_132; lean_object* x_133; lean_object* x_134; +x_132 = lean_ctor_get(x_22, 0); +x_133 = lean_ctor_get(x_22, 1); +lean_inc(x_133); +lean_inc(x_132); lean_dec(x_22); -x_123 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_123, 0, x_121); -lean_ctor_set(x_123, 1, x_122); -return x_123; +x_134 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_134, 0, x_132); +lean_ctor_set(x_134, 1, x_133); +return x_134; } } } } else { -uint8_t x_124; +uint8_t x_135; lean_dec(x_15); lean_dec(x_8); lean_dec(x_7); @@ -1247,23 +1254,23 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_124 = !lean_is_exclusive(x_16); -if (x_124 == 0) +x_135 = !lean_is_exclusive(x_16); +if (x_135 == 0) { return x_16; } else { -lean_object* x_125; lean_object* x_126; lean_object* x_127; -x_125 = lean_ctor_get(x_16, 0); -x_126 = lean_ctor_get(x_16, 1); -lean_inc(x_126); -lean_inc(x_125); +lean_object* x_136; lean_object* x_137; lean_object* x_138; +x_136 = lean_ctor_get(x_16, 0); +x_137 = lean_ctor_get(x_16, 1); +lean_inc(x_137); +lean_inc(x_136); lean_dec(x_16); -x_127 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_127, 0, x_125); -lean_ctor_set(x_127, 1, x_126); -return x_127; +x_138 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_138, 0, x_136); +lean_ctor_set(x_138, 1, x_137); +return x_138; } } } @@ -1598,7 +1605,7 @@ else lean_object* x_18; lean_object* x_19; uint8_t x_20; x_18 = l_Lean_Syntax_getArg(x_11, x_8); lean_dec(x_11); -x_19 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13707____closed__3; +x_19 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13713____closed__3; lean_inc(x_18); x_20 = l_Lean_Syntax_isOfKind(x_18, x_19); if (x_20 == 0) @@ -1857,9 +1864,30 @@ return x_3; static lean_object* _init_l_Lean_Elab_Term_expandHave___closed__2() { _start: { +lean_object* x_1; lean_object* x_2; +x_1 = l_Array_empty___closed__1; +x_2 = l_Array_appendCore___rarg(x_1, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Elab_Term_expandHave___closed__3() { +_start: +{ lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15698____closed__2; -x_2 = l_Lean_Elab_Term_elabAnonymousCtor___closed__11; +x_1 = l_Lean_nullKind___closed__2; +x_2 = l_Lean_Elab_Term_expandHave___closed__2; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_1); +lean_ctor_set(x_3, 1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Elab_Term_expandHave___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15704____closed__2; +x_2 = l_Lean_Elab_Term_expandHave___closed__3; x_3 = lean_array_push(x_1, x_2); return x_3; } @@ -1939,7 +1967,7 @@ x_27 = l_Lean_Syntax_isOfKind(x_25, x_26); if (x_27 == 0) { lean_object* x_28; uint8_t x_29; -x_28 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15698____closed__4; +x_28 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15704____closed__4; lean_inc(x_25); x_29 = l_Lean_Syntax_isOfKind(x_25, x_28); if (x_29 == 0) @@ -1966,7 +1994,7 @@ else lean_object* x_34; lean_object* x_35; uint8_t x_36; x_34 = l_Lean_Syntax_getArg(x_25, x_8); lean_dec(x_25); -x_35 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13707____closed__3; +x_35 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13713____closed__3; lean_inc(x_34); x_36 = l_Lean_Syntax_isOfKind(x_34, x_35); if (x_36 == 0) @@ -2045,7 +2073,7 @@ lean_dec(x_55); x_58 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_58, 0, x_11); lean_ctor_set(x_58, 1, x_57); -x_59 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15698____closed__2; +x_59 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15704____closed__2; x_60 = lean_array_push(x_59, x_58); x_61 = lean_array_push(x_60, x_23); x_62 = l_Lean_Elab_Term_expandShow___closed__11; @@ -2089,7 +2117,7 @@ lean_dec(x_79); x_82 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_82, 0, x_11); lean_ctor_set(x_82, 1, x_81); -x_83 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15698____closed__2; +x_83 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15704____closed__2; x_84 = lean_array_push(x_83, x_82); x_85 = lean_array_push(x_84, x_23); x_86 = l_Lean_Elab_Term_expandShow___closed__11; @@ -2429,7 +2457,7 @@ x_243 = l_Lean_Syntax_isOfKind(x_241, x_242); if (x_243 == 0) { lean_object* x_244; uint8_t x_245; -x_244 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15698____closed__4; +x_244 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15704____closed__4; lean_inc(x_241); x_245 = l_Lean_Syntax_isOfKind(x_241, x_244); if (x_245 == 0) @@ -2455,7 +2483,7 @@ else lean_object* x_250; lean_object* x_251; uint8_t x_252; x_250 = l_Lean_Syntax_getArg(x_241, x_8); lean_dec(x_241); -x_251 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13707____closed__3; +x_251 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13713____closed__3; lean_inc(x_250); x_252 = l_Lean_Syntax_isOfKind(x_250, x_251); if (x_252 == 0) @@ -2522,7 +2550,7 @@ lean_object* x_267; lean_object* x_268; lean_object* x_269; lean_object* x_270; x_267 = lean_unsigned_to_nat(5u); x_268 = l_Lean_Syntax_getArg(x_1, x_267); lean_dec(x_1); -x_269 = l_Lean_Elab_Term_expandHave___closed__2; +x_269 = l_Lean_Elab_Term_expandHave___closed__4; x_270 = lean_array_push(x_269, x_239); x_271 = l_Lean_Elab_Term_expandShow___closed__11; x_272 = lean_array_push(x_271, x_250); @@ -2555,7 +2583,7 @@ lean_dec(x_256); x_283 = lean_unsigned_to_nat(5u); x_284 = l_Lean_Syntax_getArg(x_1, x_283); lean_dec(x_1); -x_285 = l_Lean_Elab_Term_expandHave___closed__2; +x_285 = l_Lean_Elab_Term_expandHave___closed__4; x_286 = lean_array_push(x_285, x_239); x_287 = l_Lean_Elab_Term_expandShow___closed__11; x_288 = lean_array_push(x_287, x_250); @@ -3271,7 +3299,7 @@ else lean_object* x_32; lean_object* x_33; uint8_t x_34; x_32 = l_Lean_Syntax_getArg(x_25, x_8); lean_dec(x_25); -x_33 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13707____closed__3; +x_33 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13713____closed__3; lean_inc(x_32); x_34 = l_Lean_Syntax_isOfKind(x_32, x_33); if (x_34 == 0) @@ -3350,7 +3378,7 @@ lean_dec(x_53); x_56 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_56, 0, x_11); lean_ctor_set(x_56, 1, x_55); -x_57 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15698____closed__2; +x_57 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15704____closed__2; x_58 = lean_array_push(x_57, x_56); x_59 = lean_array_push(x_58, x_23); x_60 = l_Lean_Elab_Term_expandShow___closed__8; @@ -3395,7 +3423,7 @@ lean_dec(x_78); x_81 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_81, 0, x_11); lean_ctor_set(x_81, 1, x_80); -x_82 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15698____closed__2; +x_82 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15704____closed__2; x_83 = lean_array_push(x_82, x_81); x_84 = lean_array_push(x_83, x_23); x_85 = l_Lean_Elab_Term_expandShow___closed__8; @@ -3489,7 +3517,7 @@ lean_dec(x_115); x_118 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_118, 0, x_11); lean_ctor_set(x_118, 1, x_117); -x_119 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15698____closed__2; +x_119 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15704____closed__2; x_120 = lean_array_push(x_119, x_118); x_121 = lean_array_push(x_120, x_23); x_122 = l_Lean_Elab_Term_expandShow___closed__8; @@ -3529,7 +3557,7 @@ lean_dec(x_137); x_140 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_140, 0, x_11); lean_ctor_set(x_140, 1, x_139); -x_141 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15698____closed__2; +x_141 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15704____closed__2; x_142 = lean_array_push(x_141, x_140); x_143 = lean_array_push(x_142, x_23); x_144 = l_Lean_Elab_Term_expandShow___closed__8; @@ -3588,7 +3616,7 @@ else lean_object* x_164; lean_object* x_165; uint8_t x_166; x_164 = l_Lean_Syntax_getArg(x_157, x_8); lean_dec(x_157); -x_165 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13707____closed__3; +x_165 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13713____closed__3; lean_inc(x_164); x_166 = l_Lean_Syntax_isOfKind(x_164, x_165); if (x_166 == 0) @@ -3655,7 +3683,7 @@ lean_object* x_181; lean_object* x_182; lean_object* x_183; lean_object* x_184; x_181 = lean_unsigned_to_nat(5u); x_182 = l_Lean_Syntax_getArg(x_1, x_181); lean_dec(x_1); -x_183 = l_Lean_Elab_Term_expandHave___closed__2; +x_183 = l_Lean_Elab_Term_expandHave___closed__4; x_184 = lean_array_push(x_183, x_155); x_185 = l_Lean_Elab_Term_expandShow___closed__8; x_186 = lean_array_push(x_185, x_182); @@ -3689,7 +3717,7 @@ lean_dec(x_170); x_198 = lean_unsigned_to_nat(5u); x_199 = l_Lean_Syntax_getArg(x_1, x_198); lean_dec(x_1); -x_200 = l_Lean_Elab_Term_expandHave___closed__2; +x_200 = l_Lean_Elab_Term_expandHave___closed__4; x_201 = lean_array_push(x_200, x_155); x_202 = l_Lean_Elab_Term_expandShow___closed__8; x_203 = lean_array_push(x_202, x_199); @@ -3771,7 +3799,7 @@ lean_object* x_228; lean_object* x_229; lean_object* x_230; lean_object* x_231; x_228 = lean_unsigned_to_nat(5u); x_229 = l_Lean_Syntax_getArg(x_1, x_228); lean_dec(x_1); -x_230 = l_Lean_Elab_Term_expandHave___closed__2; +x_230 = l_Lean_Elab_Term_expandHave___closed__4; x_231 = lean_array_push(x_230, x_155); x_232 = l_Lean_Elab_Term_expandShow___closed__8; x_233 = lean_array_push(x_232, x_229); @@ -3800,7 +3828,7 @@ lean_dec(x_217); x_242 = lean_unsigned_to_nat(5u); x_243 = l_Lean_Syntax_getArg(x_1, x_242); lean_dec(x_1); -x_244 = l_Lean_Elab_Term_expandHave___closed__2; +x_244 = l_Lean_Elab_Term_expandHave___closed__4; x_245 = lean_array_push(x_244, x_155); x_246 = l_Lean_Elab_Term_expandShow___closed__8; x_247 = lean_array_push(x_246, x_243); @@ -7497,7 +7525,7 @@ _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_2 = l_Lean_Elab_Term_termElabAttribute; -x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14019____closed__2; +x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14025____closed__2; x_4 = l___regBuiltin_Lean_Elab_Term_elabDecide___closed__1; x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; @@ -9040,7 +9068,7 @@ _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_2 = l_Lean_Elab_macroAttribute; -x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14148____closed__2; +x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14154____closed__2; x_4 = l___regBuiltin_Lean_Elab_Term_expandSorry___closed__1; x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; @@ -10524,38 +10552,38 @@ return x_36; } else { -lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_142; uint8_t x_143; +lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_131; uint8_t x_132; x_37 = lean_unsigned_to_nat(1u); x_38 = l_Lean_Syntax_getArg(x_1, x_37); -x_142 = l_Lean_nullKind___closed__2; +x_131 = l_Lean_nullKind___closed__2; lean_inc(x_38); -x_143 = l_Lean_Syntax_isOfKind(x_38, x_142); -if (x_143 == 0) +x_132 = l_Lean_Syntax_isOfKind(x_38, x_131); +if (x_132 == 0) { -lean_object* x_144; -x_144 = lean_box(0); -x_39 = x_144; -goto block_141; +lean_object* x_133; +x_133 = lean_box(0); +x_39 = x_133; +goto block_130; } else { -lean_object* x_145; lean_object* x_146; lean_object* x_147; uint8_t x_148; -x_145 = l_Lean_Syntax_getArgs(x_38); -x_146 = lean_array_get_size(x_145); -lean_dec(x_145); -x_147 = lean_unsigned_to_nat(0u); -x_148 = lean_nat_dec_eq(x_146, x_147); -lean_dec(x_146); -if (x_148 == 0) +lean_object* x_134; lean_object* x_135; lean_object* x_136; uint8_t x_137; +x_134 = l_Lean_Syntax_getArgs(x_38); +x_135 = lean_array_get_size(x_134); +lean_dec(x_134); +x_136 = lean_unsigned_to_nat(0u); +x_137 = lean_nat_dec_eq(x_135, x_136); +lean_dec(x_135); +if (x_137 == 0) { -lean_object* x_149; -x_149 = lean_box(0); -x_39 = x_149; -goto block_141; +lean_object* x_138; +x_138 = lean_box(0); +x_39 = x_138; +goto block_130; } else { -lean_object* x_150; lean_object* x_151; +lean_object* x_139; lean_object* x_140; lean_dec(x_38); lean_dec(x_8); lean_dec(x_7); @@ -10565,14 +10593,14 @@ lean_dec(x_4); lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -x_150 = l_Lean_instToExprUnit___lambda__1___closed__3; -x_151 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_151, 0, x_150); -lean_ctor_set(x_151, 1, x_9); -return x_151; +x_139 = l_Lean_instToExprUnit___lambda__1___closed__3; +x_140 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_140, 0, x_139); +lean_ctor_set(x_140, 1, x_9); +return x_140; } } -block_141: +block_130: { lean_object* x_40; uint8_t x_41; lean_dec(x_39); @@ -10711,56 +10739,15 @@ return x_69; } else { -lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_111; uint8_t x_112; +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; uint8_t x_100; x_70 = l_Lean_Syntax_getArg(x_63, x_37); lean_dec(x_63); x_71 = l_Lean_Syntax_getArgs(x_70); lean_dec(x_70); x_72 = l_Lean_mkOptionalNode___closed__2; x_73 = lean_array_push(x_72, x_51); -x_111 = lean_array_get_size(x_71); -x_112 = lean_nat_dec_lt(x_50, x_111); -if (x_112 == 0) -{ -lean_object* x_113; -lean_dec(x_111); +x_74 = l_Lean_Syntax_SepArray_getElems___rarg(x_71); lean_dec(x_71); -x_113 = l_Array_empty___closed__1; -x_74 = x_113; -goto block_110; -} -else -{ -uint8_t x_114; -x_114 = lean_nat_dec_le(x_111, x_111); -if (x_114 == 0) -{ -lean_object* x_115; -lean_dec(x_111); -lean_dec(x_71); -x_115 = l_Array_empty___closed__1; -x_74 = x_115; -goto block_110; -} -else -{ -size_t x_116; size_t x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; -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_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); -lean_dec(x_119); -x_74 = x_120; -goto block_110; -} -} -block_110: -{ -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; uint8_t x_100; x_75 = l_Array_append___rarg(x_73, x_74); lean_dec(x_74); x_76 = lean_st_ref_get(x_8, x_9); @@ -10858,87 +10845,86 @@ goto block_32; } } } -} else { -lean_object* x_121; lean_object* x_122; uint8_t x_123; lean_object* x_124; +lean_object* x_110; lean_object* x_111; uint8_t x_112; lean_object* x_113; lean_dec(x_2); lean_dec(x_1); -x_121 = l_Lean_Syntax_getArg(x_63, x_37); +x_110 = l_Lean_Syntax_getArg(x_63, x_37); lean_dec(x_63); -x_122 = lean_alloc_closure((void*)(l_Lean_Elab_Term_elabType), 8, 1); -lean_closure_set(x_122, 0, x_121); -x_123 = 1; +x_111 = lean_alloc_closure((void*)(l_Lean_Elab_Term_elabType), 8, 1); +lean_closure_set(x_111, 0, x_110); +x_112 = 1; lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); lean_inc(x_3); -x_124 = l_Lean_Elab_Term_withSynthesize___rarg(x_122, x_123, x_3, x_4, x_5, x_6, x_7, x_8, x_9); -if (lean_obj_tag(x_124) == 0) +x_113 = l_Lean_Elab_Term_withSynthesize___rarg(x_111, x_112, x_3, x_4, x_5, x_6, x_7, x_8, x_9); +if (lean_obj_tag(x_113) == 0) { -lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; -x_125 = lean_ctor_get(x_124, 0); -lean_inc(x_125); -x_126 = lean_ctor_get(x_124, 1); -lean_inc(x_126); -lean_dec(x_124); -x_127 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_127, 0, x_125); +lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; +x_114 = lean_ctor_get(x_113, 0); +lean_inc(x_114); +x_115 = lean_ctor_get(x_113, 1); +lean_inc(x_115); +lean_dec(x_113); +x_116 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_116, 0, x_114); lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); lean_inc(x_3); -lean_inc(x_127); -x_128 = l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabCDot(x_51, x_127, x_3, x_4, x_5, x_6, x_7, x_8, x_126); -if (lean_obj_tag(x_128) == 0) +lean_inc(x_116); +x_117 = l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabCDot(x_51, x_116, x_3, x_4, x_5, x_6, x_7, x_8, x_115); +if (lean_obj_tag(x_117) == 0) { -lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; -x_129 = lean_ctor_get(x_128, 0); -lean_inc(x_129); -x_130 = lean_ctor_get(x_128, 1); -lean_inc(x_130); -lean_dec(x_128); -x_131 = lean_box(0); -x_132 = l_Lean_Elab_Term_ensureHasType(x_127, x_129, x_131, x_3, x_4, x_5, x_6, x_7, x_8, x_130); -return x_132; +lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; +x_118 = lean_ctor_get(x_117, 0); +lean_inc(x_118); +x_119 = lean_ctor_get(x_117, 1); +lean_inc(x_119); +lean_dec(x_117); +x_120 = lean_box(0); +x_121 = l_Lean_Elab_Term_ensureHasType(x_116, x_118, x_120, x_3, x_4, x_5, x_6, x_7, x_8, x_119); +return x_121; } else { -uint8_t x_133; -lean_dec(x_127); +uint8_t x_122; +lean_dec(x_116); 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_133 = !lean_is_exclusive(x_128); -if (x_133 == 0) +x_122 = !lean_is_exclusive(x_117); +if (x_122 == 0) { -return x_128; +return x_117; } else { -lean_object* x_134; lean_object* x_135; lean_object* x_136; -x_134 = lean_ctor_get(x_128, 0); -x_135 = lean_ctor_get(x_128, 1); -lean_inc(x_135); -lean_inc(x_134); -lean_dec(x_128); -x_136 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_136, 0, x_134); -lean_ctor_set(x_136, 1, x_135); -return x_136; +lean_object* x_123; lean_object* x_124; lean_object* x_125; +x_123 = lean_ctor_get(x_117, 0); +x_124 = lean_ctor_get(x_117, 1); +lean_inc(x_124); +lean_inc(x_123); +lean_dec(x_117); +x_125 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_125, 0, x_123); +lean_ctor_set(x_125, 1, x_124); +return x_125; } } } else { -uint8_t x_137; +uint8_t x_126; lean_dec(x_51); lean_dec(x_8); lean_dec(x_7); @@ -10946,23 +10932,23 @@ lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); -x_137 = !lean_is_exclusive(x_124); -if (x_137 == 0) +x_126 = !lean_is_exclusive(x_113); +if (x_126 == 0) { -return x_124; +return x_113; } else { -lean_object* x_138; lean_object* x_139; lean_object* x_140; -x_138 = lean_ctor_get(x_124, 0); -x_139 = lean_ctor_get(x_124, 1); -lean_inc(x_139); -lean_inc(x_138); -lean_dec(x_124); -x_140 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_140, 0, x_138); -lean_ctor_set(x_140, 1, x_139); -return x_140; +lean_object* x_127; lean_object* x_128; lean_object* x_129; +x_127 = lean_ctor_get(x_113, 0); +x_128 = lean_ctor_get(x_113, 1); +lean_inc(x_128); +lean_inc(x_127); +lean_dec(x_113); +x_129 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_129, 0, x_127); +lean_ctor_set(x_129, 1, x_128); +return x_129; } } } @@ -14929,10 +14915,6 @@ l_Lean_Elab_Term_elabAnonymousCtor___closed__8 = _init_l_Lean_Elab_Term_elabAnon lean_mark_persistent(l_Lean_Elab_Term_elabAnonymousCtor___closed__8); l_Lean_Elab_Term_elabAnonymousCtor___closed__9 = _init_l_Lean_Elab_Term_elabAnonymousCtor___closed__9(); lean_mark_persistent(l_Lean_Elab_Term_elabAnonymousCtor___closed__9); -l_Lean_Elab_Term_elabAnonymousCtor___closed__10 = _init_l_Lean_Elab_Term_elabAnonymousCtor___closed__10(); -lean_mark_persistent(l_Lean_Elab_Term_elabAnonymousCtor___closed__10); -l_Lean_Elab_Term_elabAnonymousCtor___closed__11 = _init_l_Lean_Elab_Term_elabAnonymousCtor___closed__11(); -lean_mark_persistent(l_Lean_Elab_Term_elabAnonymousCtor___closed__11); l___regBuiltin_Lean_Elab_Term_elabAnonymousCtor___closed__1 = _init_l___regBuiltin_Lean_Elab_Term_elabAnonymousCtor___closed__1(); lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_elabAnonymousCtor___closed__1); res = l___regBuiltin_Lean_Elab_Term_elabAnonymousCtor(lean_io_mk_world()); @@ -14984,6 +14966,10 @@ l_Lean_Elab_Term_expandHave___closed__1 = _init_l_Lean_Elab_Term_expandHave___cl lean_mark_persistent(l_Lean_Elab_Term_expandHave___closed__1); l_Lean_Elab_Term_expandHave___closed__2 = _init_l_Lean_Elab_Term_expandHave___closed__2(); lean_mark_persistent(l_Lean_Elab_Term_expandHave___closed__2); +l_Lean_Elab_Term_expandHave___closed__3 = _init_l_Lean_Elab_Term_expandHave___closed__3(); +lean_mark_persistent(l_Lean_Elab_Term_expandHave___closed__3); +l_Lean_Elab_Term_expandHave___closed__4 = _init_l_Lean_Elab_Term_expandHave___closed__4(); +lean_mark_persistent(l_Lean_Elab_Term_expandHave___closed__4); l___regBuiltin_Lean_Elab_Term_expandHave___closed__1 = _init_l___regBuiltin_Lean_Elab_Term_expandHave___closed__1(); lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_expandHave___closed__1); res = l___regBuiltin_Lean_Elab_Term_expandHave(lean_io_mk_world()); diff --git a/stage0/stdlib/Lean/Elab/Declaration.c b/stage0/stdlib/Lean/Elab/Declaration.c index a8e4955ac2..1d006c22e2 100644 --- a/stage0/stdlib/Lean/Elab/Declaration.c +++ b/stage0/stdlib/Lean/Elab/Declaration.c @@ -189,7 +189,6 @@ lean_object* l_Lean_Elab_Command_expandDeclIdNamespace_x3f_match__1___rarg(lean_ lean_object* l_Lean_Elab_Command_expandMutualPreamble___closed__3; lean_object* l_Lean_Elab_Command_expandDeclNamespace_x3f(lean_object*); extern lean_object* l_Lean_Parser_Command_open___elambda__1___closed__2; -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15698____closed__5; lean_object* l_Lean_Elab_Command_elabCommand(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_sortDeclLevelParams(lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Declaration_0__Lean_Elab_Command_isMutualInductive___boxed(lean_object*); @@ -256,6 +255,7 @@ lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Declaration_0__Lean extern lean_object* l_Lean_Elab_Command_elabStructure___closed__1; lean_object* l_Lean_Elab_Command_expandMutualPreamble___closed__5; lean_object* l_Lean_Elab_checkNotAlreadyDeclared___at___private_Lean_Elab_Declaration_0__Lean_Elab_Command_inductiveSyntaxToView___spec__3___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15704____closed__5; lean_object* l_Lean_Elab_Command_expandMutualNamespace_match__2(lean_object*); lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Command_expandMutualElement___spec__1(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_getMainModule___rarg(lean_object*, lean_object*); @@ -7131,7 +7131,7 @@ 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); -x_59 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15698____closed__5; +x_59 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15704____closed__5; x_60 = lean_array_push(x_59, x_58); x_61 = lean_array_push(x_60, x_26); x_62 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__46; @@ -7334,7 +7334,7 @@ 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); -x_183 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15698____closed__5; +x_183 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15704____closed__5; x_184 = lean_array_push(x_183, x_182); x_185 = lean_array_push(x_184, x_116); x_186 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__46; diff --git a/stage0/stdlib/Lean/Elab/Syntax.c b/stage0/stdlib/Lean/Elab/Syntax.c index 913eb74db0..5e4622ff2f 100644 --- a/stage0/stdlib/Lean/Elab/Syntax.c +++ b/stage0/stdlib/Lean/Elab/Syntax.c @@ -55,6 +55,7 @@ lean_object* l_Lean_registerTraceClass(lean_object*, lean_object*); lean_object* lean_erase_macro_scopes(lean_object*); lean_object* l_Lean_Elab_Term_checkLeftRec___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_Syntax_0__Lean_Elab_Command_expandNotationAux(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Command_expandElab_match__4___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_stringToMessageData(lean_object*); extern lean_object* l_String_instInhabitedString; lean_object* l_Lean_Elab_Command_elabSyntaxAbbrev___closed__3; @@ -98,6 +99,7 @@ uint8_t l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_isAtomLikeSyntax(lean_ lean_object* l_Lean_Elab_Command_expandMixfix_match__5___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabSyntax___lambda__3___closed__21; lean_object* lean_name_mk_string(lean_object*, lean_object*); +lean_object* l_Lean_Syntax_getOptional_x3f(lean_object*); lean_object* l_Lean_Elab_Term_toParserDescrAux___lambda__1___closed__1; lean_object* l_Array_eraseIdx___rarg(lean_object*, lean_object*); uint8_t l_USize_decEq(size_t, size_t); @@ -120,10 +122,12 @@ extern lean_object* l_myMacro____x40_Init_Notation___hyg_698____closed__2; extern lean_object* l_Lean_List_format___rarg___closed__2; lean_object* l_Lean_Elab_Command_mkSimpleDelab_go___closed__18; lean_object* l_Lean_Elab_Command_elabMacroRulesAux_match__1___rarg(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Command_expandElab_match__1(lean_object*); lean_object* l_Lean_Elab_Command_elabMacroRulesAux___closed__5; lean_object* l_Lean_Elab_Command_elabSyntax_match__2___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__13; extern lean_object* l_Lean_Elab_throwUnsupportedSyntax___rarg___closed__1; +lean_object* l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_2962____spec__3(size_t, size_t, lean_object*); lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Command_elabMacroRulesAux___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_expandElab___closed__12; lean_object* l_Lean_throwError___at_Lean_Elab_Term_checkLeftRec___spec__4___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -137,6 +141,7 @@ lean_object* l_Lean_Elab_Command_mkSimpleDelab_go___closed__5; extern lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__23; uint8_t l_Array_anyMUnsafe_any___at_Lean_Elab_Command_mkSimpleDelab_go___spec__4(lean_object*, size_t, size_t); lean_object* l_Lean_Elab_Command_expandMixfix___lambda__1___closed__1; +lean_object* l_Lean_Elab_Command_expandElab_match__3___rarg(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Elab_Command_commandElabAttribute; lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_getCatSuffix_match__1(lean_object*); lean_object* lean_array_uset(lean_object*, size_t, lean_object*); @@ -187,6 +192,7 @@ uint8_t lean_name_eq(lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_expandElab___closed__35; lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__7; lean_object* l_Lean_Elab_Term_toParserDescrAux___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*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Command_expandElab_match__4(lean_object*); lean_object* l_Lean_Elab_Command_elabSyntax___lambda__3___closed__29; lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__22; lean_object* l_Lean_Elab_Command_expandMixfix_match__5(lean_object*); @@ -251,6 +257,7 @@ lean_object* l_Lean_Elab_Command_expandOptPrio___boxed(lean_object*); lean_object* l_Lean_Elab_Command_elabMacroRulesAux___closed__27; lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Term_withNotFirst(lean_object*); extern lean_object* l_myMacro____x40_Init_Data_Array_Basic___hyg_3404____closed__9; +lean_object* l_Lean_Elab_Command_expandElab_match__2(lean_object*); lean_object* l_Lean_Elab_Command_mkSimpleDelab_go___closed__12; lean_object* l_Lean_Elab_Command_expandMixfix___lambda__1___closed__26; lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Command_expandMacro___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -304,6 +311,7 @@ lean_object* l_Lean_Name_toStringWithSep(lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_declareSyntaxCatQuotParser___closed__27; lean_object* l_Lean_Elab_Command_expandElab___closed__28; lean_object* l_Lean_Elab_Command_expandElab___closed__14; +lean_object* l_Lean_Elab_Command_expandMacro_match__2___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_mkNameFromParserSyntax_visit_match__2___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___spec__2(size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_toParserDescrAux___closed__37; @@ -323,6 +331,7 @@ lean_object* l_Lean_throwError___at_Lean_Elab_Term_checkLeftRec___spec__2___rarg extern lean_object* l_Lean_Parser_Command_macro__rules___elambda__1___closed__2; lean_object* l_Lean_Elab_Command_expandMixfix___closed__1; lean_object* l_Lean_Elab_Command_expandMixfix_match__45___rarg(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Command_expandMacro___closed__3; lean_object* l_Lean_Elab_Command_expandElab___closed__3; lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Command_mkNameFromParserSyntax_visit___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_expandMixfix_match__28(lean_object*); @@ -431,7 +440,7 @@ lean_object* l_Lean_Elab_Term_toParserDescrAux_match__5___rarg(lean_object*, lea lean_object* l_String_capitalize(lean_object*); lean_object* l___private_Lean_Elab_Util_0__Lean_Elab_expandMacro_x3f___boxed(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_myMacro____x40_Init_Notation___hyg_49____closed__7; -lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_17724_(lean_object*); +lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_17791_(lean_object*); lean_object* l_Lean_Elab_Command_elabSyntax_match__2___rarg(uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_expandMixfix___lambda__1___closed__4; extern lean_object* l_Lean_Parser_Command_parserKindPrio___elambda__1___closed__2; @@ -579,8 +588,8 @@ lean_object* l_Lean_Elab_Command_expandMixfix___lambda__1___closed__15; lean_object* l_Lean_Elab_Command_expandMixfix_match__50___rarg(lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_getCatSuffix___closed__3; lean_object* l_Lean_fmt___at_Lean_Elab_Term_toParserDescrAux___spec__7(lean_object*); +lean_object* l_Lean_Elab_Command_expandElab_match__3(lean_object*); lean_object* l_Lean_Elab_Term_toParserDescrAux___closed__29; -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15698____closed__5; lean_object* l_Lean_Elab_Command_expandMixfix___lambda__1___closed__30; extern lean_object* l_Lean_Elab_mkMacroAttributeUnsafe___closed__9; lean_object* l_Lean_throwErrorAt___at_Lean_Elab_Term_checkLeftRec___spec__3___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -589,6 +598,7 @@ lean_object* l_Lean_Elab_Term_toParserDescrAux___lambda__2___closed__3; lean_object* l_Lean_Elab_Command_elabCommand(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_expandElab___closed__23; lean_object* l_Lean_Elab_Command_expandMixfix_match__33___rarg(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_Command_expandMacro_match__2(lean_object*); lean_object* l_Lean_Elab_Command_elabSyntax_match__3___rarg(lean_object*, lean_object*); lean_object* l_Lean_resolveGlobalName___at_Lean_Elab_Command_mkSimpleDelab_go___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_expandMixfix___lambda__1___closed__5; @@ -635,6 +645,7 @@ lean_object* l_Lean_Elab_Command_expandMixfix___lambda__1___closed__3; extern lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Extension___hyg_3726____closed__2; lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux_match__4___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Parser_Command_notation___elambda__1___closed__2; +lean_object* l_Lean_Elab_Command_expandMacro_match__1___rarg(lean_object*, lean_object*, lean_object*); 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*); lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_elabKindPrio(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabSyntax_match__4(lean_object*); @@ -766,6 +777,7 @@ lean_object* l_Lean_Elab_Command_expandElab___closed__38; lean_object* l_Array_appendCore___rarg(lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabSyntaxAbbrev___closed__2; extern lean_object* l_myMacro____x40_Init_Notation___hyg_1261____closed__6; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15704____closed__5; extern lean_object* l_myMacro____x40_Init_Notation___hyg_49____closed__4; extern lean_object* l_Lean_Format_paren___closed__2; lean_object* l_Lean_Elab_Command_elabSyntax___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -826,7 +838,6 @@ extern lean_object* l_Lean_Parser_Command_parserKind___elambda__1___closed__2; lean_object* l_Lean_Elab_Command_expandElab___closed__51; lean_object* l_Lean_Elab_Term_toParserDescrAux___closed__8; lean_object* l_Lean_Elab_Term_toParserDescrAux_match__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_17724____closed__1; lean_object* l_Lean_Elab_Command_elabMacroRulesAux___closed__21; extern lean_object* l_Lean_mkOptionalNode___closed__1; lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Term_toParserDescrAux___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -981,6 +992,7 @@ lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_getCatSuffix(lean lean_object* l_Lean_Elab_Command_expandMixfix___lambda__1___closed__7; lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux_match__1(lean_object*); lean_object* l___private_Init_Data_Array_Basic_0__Array_allDiffAux___at_Lean_Elab_Command_mkSimpleDelab_go___spec__2___boxed(lean_object*, lean_object*); +lean_object* l_Lean_Elab_Command_expandMacro_match__1(lean_object*); lean_object* l_Lean_Elab_Term_toParserDescrAux___closed__19; lean_object* l_Lean_Elab_Command_expandElab___closed__2; lean_object* l_Lean_Elab_Command_elabSyntax___lambda__3___closed__16; @@ -993,6 +1005,7 @@ extern lean_object* l_Lean_Elab_toAttributeKind___rarg___lambda__2___closed__2; lean_object* l_Lean_Elab_Term_toParserDescrAux_match__4___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_elabMacroRulesAux___closed__2; lean_object* l_Lean_Elab_Command_expandMixfix_match__36(lean_object*); +lean_object* l_Lean_Elab_Command_expandElab_match__1___rarg(lean_object*, lean_object*, lean_object*); uint8_t lean_string_utf8_at_end(lean_object*, lean_object*); lean_object* l_Lean_mkConst(lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_elabKindPrio___closed__1; @@ -1004,6 +1017,7 @@ lean_object* l_Lean_Elab_Command_expandNotationItemIntoSyntaxItem(lean_object*, lean_object* l_Lean_Elab_Command_expandMixfix_match__37(lean_object*); lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_elabKindPrio___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_PrettyPrinter_Parenthesizer_maybeParenthesize___lambda__3___closed__1; +lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_17791____closed__1; lean_object* l_Subarray_forInUnsafe_loop___at___private_Lean_Elab_Syntax_0__Lean_Elab_Term_mkParserSeq___spec__1___closed__8; extern lean_object* l_Lean_Elab_Term_expandFunBinders_loop___closed__4; extern lean_object* l_myMacro____x40_Init_Notation___hyg_49____closed__1; @@ -1062,6 +1076,7 @@ lean_object* l_Array_mapSepElemsM___at_Lean_Elab_Command_elabMacroRulesAux___spe lean_object* l_Lean_Elab_Command_expandMixfix_match__45(lean_object*); lean_object* l_Lean_Elab_Command_elabSyntax___lambda__3___closed__5; uint8_t l_Lean_Syntax_isIdent(lean_object*); +lean_object* l_Lean_Elab_Command_expandElab_match__2___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_expandMixfix_match__42(lean_object*); lean_object* l_Lean_Elab_Command_expandElab___closed__39; lean_object* l_Subarray_forInUnsafe_loop___at___private_Lean_Elab_Syntax_0__Lean_Elab_Term_mkParserSeq___spec__1___closed__4; @@ -11704,7 +11719,7 @@ x_159 = lean_array_push(x_74, x_158); x_160 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_160, 0, x_95); lean_ctor_set(x_160, 1, x_159); -x_161 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15698____closed__5; +x_161 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15704____closed__5; x_162 = lean_array_push(x_161, x_160); x_163 = lean_array_push(x_162, x_26); x_164 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__46; @@ -13879,7 +13894,7 @@ x_107 = l_myMacro____x40_Init_Notation___hyg_1625____closed__4; x_108 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_108, 0, x_107); lean_ctor_set(x_108, 1, x_106); -x_109 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15698____closed__5; +x_109 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15704____closed__5; x_110 = lean_array_push(x_109, x_108); x_111 = lean_array_push(x_110, x_68); x_112 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__46; @@ -14012,7 +14027,7 @@ x_191 = l_myMacro____x40_Init_Notation___hyg_1625____closed__4; x_192 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_192, 0, x_191); lean_ctor_set(x_192, 1, x_190); -x_193 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15698____closed__5; +x_193 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15704____closed__5; x_194 = lean_array_push(x_193, x_192); x_195 = lean_array_push(x_194, x_152); x_196 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__46; @@ -14145,7 +14160,7 @@ x_275 = l_myMacro____x40_Init_Notation___hyg_1625____closed__4; x_276 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_276, 0, x_275); lean_ctor_set(x_276, 1, x_274); -x_277 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15698____closed__5; +x_277 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15704____closed__5; x_278 = lean_array_push(x_277, x_276); x_279 = lean_array_push(x_278, x_236); x_280 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__46; @@ -14283,7 +14298,7 @@ x_359 = l_myMacro____x40_Init_Notation___hyg_1625____closed__4; x_360 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_360, 0, x_359); lean_ctor_set(x_360, 1, x_358); -x_361 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15698____closed__5; +x_361 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15704____closed__5; x_362 = lean_array_push(x_361, x_360); x_363 = lean_array_push(x_362, x_320); x_364 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__46; @@ -14416,7 +14431,7 @@ x_443 = l_myMacro____x40_Init_Notation___hyg_1625____closed__4; x_444 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_444, 0, x_443); lean_ctor_set(x_444, 1, x_442); -x_445 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15698____closed__5; +x_445 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15704____closed__5; x_446 = lean_array_push(x_445, x_444); x_447 = lean_array_push(x_446, x_404); x_448 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__46; @@ -14549,7 +14564,7 @@ x_527 = l_myMacro____x40_Init_Notation___hyg_1625____closed__4; x_528 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_528, 0, x_527); lean_ctor_set(x_528, 1, x_526); -x_529 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15698____closed__5; +x_529 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15704____closed__5; x_530 = lean_array_push(x_529, x_528); x_531 = lean_array_push(x_530, x_488); x_532 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__46; @@ -15416,7 +15431,7 @@ x_70 = l_myMacro____x40_Init_Notation___hyg_1625____closed__4; 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 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15698____closed__5; +x_72 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15704____closed__5; x_73 = lean_array_push(x_72, x_71); x_74 = l_myMacro____x40_Init_Notation___hyg_521____closed__23; x_75 = lean_array_push(x_73, x_74); @@ -16484,7 +16499,7 @@ x_108 = l_myMacro____x40_Init_Notation___hyg_10790____closed__11; x_109 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_109, 0, x_108); lean_ctor_set(x_109, 1, x_107); -x_110 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15698____closed__5; +x_110 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15704____closed__5; x_111 = lean_array_push(x_110, x_109); x_112 = lean_array_push(x_111, x_44); x_113 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__46; @@ -16667,7 +16682,7 @@ x_215 = l_myMacro____x40_Init_Notation___hyg_10790____closed__11; x_216 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_216, 0, x_215); lean_ctor_set(x_216, 1, x_214); -x_217 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15698____closed__5; +x_217 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15704____closed__5; x_218 = lean_array_push(x_217, x_216); x_219 = lean_array_push(x_218, x_151); x_220 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__46; @@ -23765,7 +23780,7 @@ x_147 = l_myMacro____x40_Init_Notation___hyg_10790____closed__11; x_148 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_148, 0, x_147); lean_ctor_set(x_148, 1, x_146); -x_149 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15698____closed__5; +x_149 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15704____closed__5; x_150 = lean_array_push(x_149, x_148); x_151 = lean_array_push(x_150, x_74); x_152 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__46; @@ -23955,7 +23970,7 @@ x_261 = l_myMacro____x40_Init_Notation___hyg_10790____closed__11; x_262 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_262, 0, x_261); lean_ctor_set(x_262, 1, x_260); -x_263 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15698____closed__5; +x_263 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15704____closed__5; x_264 = lean_array_push(x_263, x_262); x_265 = lean_array_push(x_264, x_188); x_266 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__46; @@ -24196,7 +24211,7 @@ x_395 = l_myMacro____x40_Init_Notation___hyg_10790____closed__11; x_396 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_396, 0, x_395); lean_ctor_set(x_396, 1, x_394); -x_397 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15698____closed__5; +x_397 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15704____closed__5; x_398 = lean_array_push(x_397, x_396); x_399 = lean_array_push(x_398, x_322); x_400 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__46; @@ -24386,7 +24401,7 @@ x_509 = l_myMacro____x40_Init_Notation___hyg_10790____closed__11; x_510 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_510, 0, x_509); lean_ctor_set(x_510, 1, x_508); -x_511 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15698____closed__5; +x_511 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15704____closed__5; x_512 = lean_array_push(x_511, x_510); x_513 = lean_array_push(x_512, x_436); x_514 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__46; @@ -24629,7 +24644,7 @@ x_645 = l_myMacro____x40_Init_Notation___hyg_10790____closed__11; x_646 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_646, 0, x_645); lean_ctor_set(x_646, 1, x_644); -x_647 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15698____closed__5; +x_647 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15704____closed__5; x_648 = lean_array_push(x_647, x_646); x_649 = lean_array_push(x_648, x_572); x_650 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__46; @@ -24819,7 +24834,7 @@ x_759 = l_myMacro____x40_Init_Notation___hyg_10790____closed__11; x_760 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_760, 0, x_759); lean_ctor_set(x_760, 1, x_758); -x_761 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15698____closed__5; +x_761 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15704____closed__5; x_762 = lean_array_push(x_761, x_760); x_763 = lean_array_push(x_762, x_686); x_764 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__46; @@ -25089,7 +25104,7 @@ x_900 = l_myMacro____x40_Init_Notation___hyg_10790____closed__11; x_901 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_901, 0, x_900); lean_ctor_set(x_901, 1, x_899); -x_902 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15698____closed__5; +x_902 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15704____closed__5; x_903 = lean_array_push(x_902, x_901); x_904 = lean_array_push(x_903, x_827); x_905 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__46; @@ -25341,7 +25356,7 @@ x_1036 = l_myMacro____x40_Init_Notation___hyg_10790____closed__11; x_1037 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1037, 0, x_1036); lean_ctor_set(x_1037, 1, x_1035); -x_1038 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15698____closed__5; +x_1038 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15704____closed__5; x_1039 = lean_array_push(x_1038, x_1037); x_1040 = lean_array_push(x_1039, x_963); x_1041 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__46; @@ -25595,7 +25610,7 @@ x_1174 = l_myMacro____x40_Init_Notation___hyg_10790____closed__11; x_1175 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1175, 0, x_1174); lean_ctor_set(x_1175, 1, x_1173); -x_1176 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15698____closed__5; +x_1176 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15704____closed__5; x_1177 = lean_array_push(x_1176, x_1175); x_1178 = lean_array_push(x_1177, x_1101); x_1179 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__46; @@ -25989,7 +26004,7 @@ x_1337 = l_myMacro____x40_Init_Notation___hyg_10790____closed__11; x_1338 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1338, 0, x_1337); lean_ctor_set(x_1338, 1, x_1336); -x_1339 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15698____closed__5; +x_1339 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15704____closed__5; x_1340 = lean_array_push(x_1339, x_1338); x_1341 = lean_array_push(x_1340, x_1264); x_1342 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__46; @@ -26246,7 +26261,7 @@ x_1474 = l_myMacro____x40_Init_Notation___hyg_10790____closed__11; x_1475 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1475, 0, x_1474); lean_ctor_set(x_1475, 1, x_1473); -x_1476 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15698____closed__5; +x_1476 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15704____closed__5; x_1477 = lean_array_push(x_1476, x_1475); x_1478 = lean_array_push(x_1477, x_1401); x_1479 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__46; @@ -26505,7 +26520,7 @@ x_1613 = l_myMacro____x40_Init_Notation___hyg_10790____closed__11; x_1614 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1614, 0, x_1613); lean_ctor_set(x_1614, 1, x_1612); -x_1615 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15698____closed__5; +x_1615 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15704____closed__5; x_1616 = lean_array_push(x_1615, x_1614); x_1617 = lean_array_push(x_1616, x_1540); x_1618 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__46; @@ -27457,122 +27472,73 @@ if (lean_obj_tag(x_5) == 0) { if (lean_obj_tag(x_19) == 0) { -lean_object* x_215; lean_object* x_216; lean_object* x_217; -x_215 = lean_ctor_get(x_19, 0); -lean_inc(x_215); -x_216 = lean_ctor_get(x_19, 1); -lean_inc(x_216); -lean_dec(x_19); -x_217 = lean_unsigned_to_nat(0u); -x_20 = x_217; -x_21 = x_215; -x_22 = x_216; -goto block_214; -} -else -{ -uint8_t x_218; -lean_dec(x_14); -lean_dec(x_11); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_4); -x_218 = !lean_is_exclusive(x_19); -if (x_218 == 0) -{ -return x_19; -} -else -{ -lean_object* x_219; lean_object* x_220; lean_object* x_221; -x_219 = lean_ctor_get(x_19, 0); -x_220 = lean_ctor_get(x_19, 1); -lean_inc(x_220); -lean_inc(x_219); -lean_dec(x_19); -x_221 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_221, 0, x_219); -lean_ctor_set(x_221, 1, x_220); -return x_221; -} -} -} -else -{ -lean_object* x_222; lean_object* x_223; lean_object* x_224; -x_222 = lean_ctor_get(x_5, 0); -x_223 = l_Lean_numLitKind; -x_224 = l___private_Init_Meta_0__Lean_Syntax_isNatLitAux(x_223, x_222); -if (lean_obj_tag(x_224) == 0) -{ -if (lean_obj_tag(x_19) == 0) -{ -lean_object* x_225; lean_object* x_226; lean_object* x_227; -x_225 = lean_ctor_get(x_19, 0); -lean_inc(x_225); -x_226 = lean_ctor_get(x_19, 1); -lean_inc(x_226); -lean_dec(x_19); -x_227 = lean_unsigned_to_nat(0u); -x_20 = x_227; -x_21 = x_225; -x_22 = x_226; -goto block_214; -} -else -{ -uint8_t x_228; -lean_dec(x_14); -lean_dec(x_11); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_7); -lean_dec(x_6); -lean_dec(x_4); -x_228 = !lean_is_exclusive(x_19); -if (x_228 == 0) -{ -return x_19; -} -else -{ -lean_object* x_229; lean_object* x_230; lean_object* x_231; -x_229 = lean_ctor_get(x_19, 0); -x_230 = lean_ctor_get(x_19, 1); +lean_object* x_230; lean_object* x_231; lean_object* x_232; +x_230 = lean_ctor_get(x_19, 0); lean_inc(x_230); -lean_inc(x_229); +x_231 = lean_ctor_get(x_19, 1); +lean_inc(x_231); lean_dec(x_19); -x_231 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_231, 0, x_229); -lean_ctor_set(x_231, 1, x_230); -return x_231; -} -} +x_232 = lean_unsigned_to_nat(0u); +x_20 = x_232; +x_21 = x_230; +x_22 = x_231; +goto block_229; } else { -if (lean_obj_tag(x_19) == 0) +uint8_t x_233; +lean_dec(x_14); +lean_dec(x_11); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_4); +x_233 = !lean_is_exclusive(x_19); +if (x_233 == 0) { -lean_object* x_232; lean_object* x_233; lean_object* x_234; -x_232 = lean_ctor_get(x_224, 0); -lean_inc(x_232); -lean_dec(x_224); -x_233 = lean_ctor_get(x_19, 0); -lean_inc(x_233); -x_234 = lean_ctor_get(x_19, 1); +return x_19; +} +else +{ +lean_object* x_234; lean_object* x_235; lean_object* x_236; +x_234 = lean_ctor_get(x_19, 0); +x_235 = lean_ctor_get(x_19, 1); +lean_inc(x_235); lean_inc(x_234); lean_dec(x_19); -x_20 = x_232; -x_21 = x_233; -x_22 = x_234; -goto block_214; +x_236 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_236, 0, x_234); +lean_ctor_set(x_236, 1, x_235); +return x_236; +} +} } else { -uint8_t x_235; -lean_dec(x_224); +lean_object* x_237; lean_object* x_238; lean_object* x_239; +x_237 = lean_ctor_get(x_5, 0); +x_238 = l_Lean_numLitKind; +x_239 = l___private_Init_Meta_0__Lean_Syntax_isNatLitAux(x_238, x_237); +if (lean_obj_tag(x_239) == 0) +{ +if (lean_obj_tag(x_19) == 0) +{ +lean_object* x_240; lean_object* x_241; lean_object* x_242; +x_240 = lean_ctor_get(x_19, 0); +lean_inc(x_240); +x_241 = lean_ctor_get(x_19, 1); +lean_inc(x_241); +lean_dec(x_19); +x_242 = lean_unsigned_to_nat(0u); +x_20 = x_242; +x_21 = x_240; +x_22 = x_241; +goto block_229; +} +else +{ +uint8_t x_243; lean_dec(x_14); lean_dec(x_11); lean_dec(x_9); @@ -27580,28 +27546,77 @@ lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_4); -x_235 = !lean_is_exclusive(x_19); -if (x_235 == 0) +x_243 = !lean_is_exclusive(x_19); +if (x_243 == 0) { return x_19; } else { -lean_object* x_236; lean_object* x_237; lean_object* x_238; -x_236 = lean_ctor_get(x_19, 0); -x_237 = lean_ctor_get(x_19, 1); -lean_inc(x_237); -lean_inc(x_236); +lean_object* x_244; lean_object* x_245; lean_object* x_246; +x_244 = lean_ctor_get(x_19, 0); +x_245 = lean_ctor_get(x_19, 1); +lean_inc(x_245); +lean_inc(x_244); lean_dec(x_19); -x_238 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_238, 0, x_236); -lean_ctor_set(x_238, 1, x_237); -return x_238; +x_246 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_246, 0, x_244); +lean_ctor_set(x_246, 1, x_245); +return x_246; +} +} +} +else +{ +if (lean_obj_tag(x_19) == 0) +{ +lean_object* x_247; lean_object* x_248; lean_object* x_249; +x_247 = lean_ctor_get(x_239, 0); +lean_inc(x_247); +lean_dec(x_239); +x_248 = lean_ctor_get(x_19, 0); +lean_inc(x_248); +x_249 = lean_ctor_get(x_19, 1); +lean_inc(x_249); +lean_dec(x_19); +x_20 = x_247; +x_21 = x_248; +x_22 = x_249; +goto block_229; +} +else +{ +uint8_t x_250; +lean_dec(x_239); +lean_dec(x_14); +lean_dec(x_11); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_4); +x_250 = !lean_is_exclusive(x_19); +if (x_250 == 0) +{ +return x_19; +} +else +{ +lean_object* x_251; lean_object* x_252; lean_object* x_253; +x_251 = lean_ctor_get(x_19, 0); +x_252 = lean_ctor_get(x_19, 1); +lean_inc(x_252); +lean_inc(x_251); +lean_dec(x_19); +x_253 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_253, 0, x_251); +lean_ctor_set(x_253, 1, x_252); +return x_253; } } } } -block_214: +block_229: { 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; uint8_t x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; x_23 = l_term___u2218_____closed__6; @@ -27632,37 +27647,37 @@ lean_inc(x_8); x_36 = lean_apply_3(x_35, x_8, x_9, x_29); if (x_31 == 0) { -lean_object* x_209; +lean_object* x_224; lean_dec(x_11); lean_dec(x_6); -x_209 = l_Array_empty___closed__1; -x_37 = x_209; -goto block_208; +x_224 = l_Array_empty___closed__1; +x_37 = x_224; +goto block_223; } else { -uint8_t x_210; -x_210 = lean_nat_dec_le(x_11, x_11); +uint8_t x_225; +x_225 = lean_nat_dec_le(x_11, x_11); lean_dec(x_11); -if (x_210 == 0) +if (x_225 == 0) { -lean_object* x_211; +lean_object* x_226; lean_dec(x_6); -x_211 = l_Array_empty___closed__1; -x_37 = x_211; -goto block_208; +x_226 = l_Array_empty___closed__1; +x_37 = x_226; +goto block_223; } else { -lean_object* x_212; lean_object* x_213; -x_212 = l_Array_empty___closed__1; -x_213 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___spec__4(x_6, x_13, x_12, x_212); +lean_object* x_227; lean_object* x_228; +x_227 = l_Array_empty___closed__1; +x_228 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___spec__4(x_6, x_13, x_12, x_227); lean_dec(x_6); -x_37 = x_213; -goto block_208; +x_37 = x_228; +goto block_223; } } -block_208: +block_223: { if (lean_obj_tag(x_36) == 0) { @@ -27688,7 +27703,7 @@ lean_ctor_set(x_47, 1, x_38); switch (x_3) { case 0: { -lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; 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_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; size_t x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; x_48 = l_Lean_Elab_Command_getCurrMacroScope(x_8, x_9, x_39); x_49 = lean_ctor_get(x_48, 1); lean_inc(x_49); @@ -27719,254 +27734,272 @@ x_68 = l_Lean_nullKind___closed__2; x_69 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_69, 0, x_68); lean_ctor_set(x_69, 1, x_67); -x_70 = l_Array_appendCore___rarg(x_53, x_21); -lean_dec(x_21); -x_71 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_71, 0, x_68); -lean_ctor_set(x_71, 1, x_70); +x_70 = lean_array_get_size(x_21); +x_71 = lean_usize_of_nat(x_70); +lean_dec(x_70); +x_72 = x_21; +x_73 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_2962____spec__3(x_71, x_13, x_72); +x_74 = x_73; +x_75 = l_Array_appendCore___rarg(x_53, x_74); +lean_dec(x_74); +x_76 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_76, 0, x_68); +lean_ctor_set(x_76, 1, x_75); if (lean_obj_tag(x_4) == 0) { -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_72 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__5; -x_73 = lean_array_push(x_72, x_69); -x_74 = lean_array_push(x_73, x_71); -x_75 = l_myMacro____x40_Init_Notation___hyg_11918____closed__10; -x_76 = lean_array_push(x_74, x_75); -x_77 = lean_array_push(x_76, x_24); -x_78 = l_Lean_Parser_Command_syntax___elambda__1___closed__1; -x_79 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_79, 0, x_78); -lean_ctor_set(x_79, 1, x_77); -x_80 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___lambda__1(x_53, x_47, x_45, x_79, x_8, x_9, x_51); +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; +x_77 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__5; +x_78 = lean_array_push(x_77, x_69); +x_79 = lean_array_push(x_78, x_76); +x_80 = l_myMacro____x40_Init_Notation___hyg_11918____closed__10; +x_81 = lean_array_push(x_79, x_80); +x_82 = lean_array_push(x_81, x_24); +x_83 = l_Lean_Parser_Command_syntax___elambda__1___closed__1; +x_84 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_84, 0, x_83); +lean_ctor_set(x_84, 1, x_82); +x_85 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___lambda__1(x_53, x_47, x_45, x_84, x_8, x_9, x_51); lean_dec(x_9); lean_dec(x_8); -return x_80; +return x_85; } else { -lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; -x_81 = lean_ctor_get(x_4, 0); -lean_inc(x_81); +lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; +x_86 = lean_ctor_get(x_4, 0); +lean_inc(x_86); lean_dec(x_4); -x_82 = l_myMacro____x40_Init_Notation___hyg_11918____closed__11; -x_83 = lean_array_push(x_82, x_81); -x_84 = l_Lean_Parser_precedence___elambda__1___closed__2; -x_85 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_85, 0, x_84); -lean_ctor_set(x_85, 1, x_83); -x_86 = l_Lean_mkOptionalNode___closed__2; -x_87 = lean_array_push(x_86, x_85); -x_88 = l_Array_appendCore___rarg(x_53, x_87); -lean_dec(x_87); -x_89 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_89, 0, x_68); -lean_ctor_set(x_89, 1, x_88); -x_90 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__4; -x_91 = lean_array_push(x_90, x_89); -x_92 = lean_array_push(x_91, x_69); -x_93 = lean_array_push(x_92, x_71); -x_94 = l_myMacro____x40_Init_Notation___hyg_11918____closed__10; -x_95 = lean_array_push(x_93, x_94); -x_96 = lean_array_push(x_95, x_24); -x_97 = l_Lean_Parser_Command_syntax___elambda__1___closed__1; -x_98 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_98, 0, x_97); -lean_ctor_set(x_98, 1, x_96); -x_99 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___lambda__1(x_53, x_47, x_45, x_98, x_8, x_9, x_51); +x_87 = l_myMacro____x40_Init_Notation___hyg_11918____closed__11; +x_88 = lean_array_push(x_87, x_86); +x_89 = l_Lean_Parser_precedence___elambda__1___closed__2; +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_mkOptionalNode___closed__2; +x_92 = lean_array_push(x_91, x_90); +x_93 = l_Array_appendCore___rarg(x_53, x_92); +lean_dec(x_92); +x_94 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_94, 0, x_68); +lean_ctor_set(x_94, 1, x_93); +x_95 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__4; +x_96 = lean_array_push(x_95, x_94); +x_97 = lean_array_push(x_96, x_69); +x_98 = lean_array_push(x_97, x_76); +x_99 = l_myMacro____x40_Init_Notation___hyg_11918____closed__10; +x_100 = lean_array_push(x_98, x_99); +x_101 = lean_array_push(x_100, x_24); +x_102 = l_Lean_Parser_Command_syntax___elambda__1___closed__1; +x_103 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_103, 0, x_102); +lean_ctor_set(x_103, 1, x_101); +x_104 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___lambda__1(x_53, x_47, x_45, x_103, x_8, x_9, x_51); lean_dec(x_9); lean_dec(x_8); -return x_99; +return x_104; } } case 1: { -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; -x_100 = l_Lean_Elab_Command_getCurrMacroScope(x_8, x_9, x_39); -x_101 = lean_ctor_get(x_100, 1); -lean_inc(x_101); -lean_dec(x_100); -x_102 = l_Lean_Elab_Command_getMainModule___rarg(x_9, x_101); -x_103 = lean_ctor_get(x_102, 1); -lean_inc(x_103); -lean_dec(x_102); -x_104 = l_Lean_mkIdentFrom(x_1, x_28); -x_105 = l_Array_empty___closed__1; -x_106 = lean_array_push(x_105, x_104); -x_107 = l_myMacro____x40_Init_Notation___hyg_376____closed__8; -x_108 = lean_array_push(x_106, x_107); -x_109 = l_Nat_repr(x_20); -x_110 = l_Lean_numLitKind; -x_111 = l_Lean_instInhabitedSourceInfo___closed__1; -x_112 = l_Lean_Syntax_mkLit(x_110, x_109, x_111); -x_113 = lean_array_push(x_108, x_112); -x_114 = l_Lean_Parser_Command_parserKindPrio___elambda__1___closed__2; -x_115 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_115, 0, x_114); -lean_ctor_set(x_115, 1, x_113); -x_116 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3404____closed__9; -x_117 = lean_array_push(x_116, x_115); -x_118 = l_Lean_myMacro____x40_Init_Notation___hyg_12778____closed__11; -x_119 = lean_array_push(x_117, x_118); -x_120 = l_Lean_nullKind___closed__2; -x_121 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_121, 0, x_120); -lean_ctor_set(x_121, 1, x_119); -x_122 = l_Array_appendCore___rarg(x_105, x_21); -lean_dec(x_21); -x_123 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_123, 0, x_120); -lean_ctor_set(x_123, 1, x_122); +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; size_t x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; +x_105 = l_Lean_Elab_Command_getCurrMacroScope(x_8, x_9, x_39); +x_106 = lean_ctor_get(x_105, 1); +lean_inc(x_106); +lean_dec(x_105); +x_107 = l_Lean_Elab_Command_getMainModule___rarg(x_9, x_106); +x_108 = lean_ctor_get(x_107, 1); +lean_inc(x_108); +lean_dec(x_107); +x_109 = l_Lean_mkIdentFrom(x_1, x_28); +x_110 = l_Array_empty___closed__1; +x_111 = lean_array_push(x_110, x_109); +x_112 = l_myMacro____x40_Init_Notation___hyg_376____closed__8; +x_113 = lean_array_push(x_111, x_112); +x_114 = l_Nat_repr(x_20); +x_115 = l_Lean_numLitKind; +x_116 = l_Lean_instInhabitedSourceInfo___closed__1; +x_117 = l_Lean_Syntax_mkLit(x_115, x_114, x_116); +x_118 = lean_array_push(x_113, x_117); +x_119 = l_Lean_Parser_Command_parserKindPrio___elambda__1___closed__2; +x_120 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_120, 0, x_119); +lean_ctor_set(x_120, 1, x_118); +x_121 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3404____closed__9; +x_122 = lean_array_push(x_121, x_120); +x_123 = l_Lean_myMacro____x40_Init_Notation___hyg_12778____closed__11; +x_124 = lean_array_push(x_122, x_123); +x_125 = l_Lean_nullKind___closed__2; +x_126 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_126, 0, x_125); +lean_ctor_set(x_126, 1, x_124); +x_127 = lean_array_get_size(x_21); +x_128 = lean_usize_of_nat(x_127); +lean_dec(x_127); +x_129 = x_21; +x_130 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_2962____spec__3(x_128, x_13, x_129); +x_131 = x_130; +x_132 = l_Array_appendCore___rarg(x_110, x_131); +lean_dec(x_131); +x_133 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_133, 0, x_125); +lean_ctor_set(x_133, 1, x_132); if (lean_obj_tag(x_4) == 0) { -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_124 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__7; -x_125 = lean_array_push(x_124, x_121); -x_126 = lean_array_push(x_125, x_123); -x_127 = l_myMacro____x40_Init_Notation___hyg_11918____closed__10; -x_128 = lean_array_push(x_126, x_127); -x_129 = lean_array_push(x_128, x_24); -x_130 = l_Lean_Parser_Command_syntax___elambda__1___closed__1; -x_131 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_131, 0, x_130); -lean_ctor_set(x_131, 1, x_129); -x_132 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___lambda__1(x_105, x_47, x_45, x_131, x_8, x_9, x_103); +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; +x_134 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__7; +x_135 = lean_array_push(x_134, x_126); +x_136 = lean_array_push(x_135, x_133); +x_137 = l_myMacro____x40_Init_Notation___hyg_11918____closed__10; +x_138 = lean_array_push(x_136, x_137); +x_139 = lean_array_push(x_138, x_24); +x_140 = l_Lean_Parser_Command_syntax___elambda__1___closed__1; +x_141 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_141, 0, x_140); +lean_ctor_set(x_141, 1, x_139); +x_142 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___lambda__1(x_110, x_47, x_45, x_141, x_8, x_9, x_108); lean_dec(x_9); lean_dec(x_8); -return x_132; +return x_142; } else { -lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; 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_133 = lean_ctor_get(x_4, 0); -lean_inc(x_133); +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; +x_143 = lean_ctor_get(x_4, 0); +lean_inc(x_143); lean_dec(x_4); -x_134 = l_myMacro____x40_Init_Notation___hyg_11918____closed__11; -x_135 = lean_array_push(x_134, x_133); -x_136 = l_Lean_Parser_precedence___elambda__1___closed__2; -x_137 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_137, 0, x_136); -lean_ctor_set(x_137, 1, x_135); -x_138 = l_Lean_mkOptionalNode___closed__2; -x_139 = lean_array_push(x_138, x_137); -x_140 = l_Array_appendCore___rarg(x_105, x_139); -lean_dec(x_139); -x_141 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_141, 0, x_120); -lean_ctor_set(x_141, 1, x_140); -x_142 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__6; -x_143 = lean_array_push(x_142, x_141); -x_144 = lean_array_push(x_143, x_121); -x_145 = lean_array_push(x_144, x_123); -x_146 = l_myMacro____x40_Init_Notation___hyg_11918____closed__10; -x_147 = lean_array_push(x_145, x_146); -x_148 = lean_array_push(x_147, x_24); -x_149 = l_Lean_Parser_Command_syntax___elambda__1___closed__1; -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___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___lambda__1(x_105, x_47, x_45, x_150, x_8, x_9, x_103); +x_144 = l_myMacro____x40_Init_Notation___hyg_11918____closed__11; +x_145 = lean_array_push(x_144, x_143); +x_146 = l_Lean_Parser_precedence___elambda__1___closed__2; +x_147 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_147, 0, x_146); +lean_ctor_set(x_147, 1, x_145); +x_148 = l_Lean_mkOptionalNode___closed__2; +x_149 = lean_array_push(x_148, x_147); +x_150 = l_Array_appendCore___rarg(x_110, x_149); +lean_dec(x_149); +x_151 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_151, 0, x_125); +lean_ctor_set(x_151, 1, x_150); +x_152 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__6; +x_153 = lean_array_push(x_152, x_151); +x_154 = lean_array_push(x_153, x_126); +x_155 = lean_array_push(x_154, x_133); +x_156 = l_myMacro____x40_Init_Notation___hyg_11918____closed__10; +x_157 = lean_array_push(x_155, x_156); +x_158 = lean_array_push(x_157, x_24); +x_159 = l_Lean_Parser_Command_syntax___elambda__1___closed__1; +x_160 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_160, 0, x_159); +lean_ctor_set(x_160, 1, x_158); +x_161 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___lambda__1(x_110, x_47, x_45, x_160, x_8, x_9, x_108); lean_dec(x_9); lean_dec(x_8); -return x_151; +return x_161; } } default: { -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; -x_152 = l_Lean_Elab_Command_getCurrMacroScope(x_8, x_9, x_39); -x_153 = lean_ctor_get(x_152, 1); -lean_inc(x_153); -lean_dec(x_152); -x_154 = l_Lean_Elab_Command_getMainModule___rarg(x_9, x_153); -x_155 = lean_ctor_get(x_154, 1); -lean_inc(x_155); -lean_dec(x_154); -x_156 = l_Lean_mkIdentFrom(x_1, x_28); -x_157 = l_Array_empty___closed__1; -x_158 = lean_array_push(x_157, x_156); -x_159 = l_myMacro____x40_Init_Notation___hyg_376____closed__8; -x_160 = lean_array_push(x_158, x_159); -x_161 = l_Nat_repr(x_20); -x_162 = l_Lean_numLitKind; -x_163 = l_Lean_instInhabitedSourceInfo___closed__1; -x_164 = l_Lean_Syntax_mkLit(x_162, x_161, x_163); -x_165 = lean_array_push(x_160, x_164); -x_166 = l_Lean_Parser_Command_parserKindPrio___elambda__1___closed__2; -x_167 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_167, 0, x_166); -lean_ctor_set(x_167, 1, x_165); -x_168 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3404____closed__9; -x_169 = lean_array_push(x_168, x_167); -x_170 = l_Lean_myMacro____x40_Init_Notation___hyg_12778____closed__11; -x_171 = lean_array_push(x_169, x_170); -x_172 = l_Lean_nullKind___closed__2; -x_173 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_173, 0, x_172); -lean_ctor_set(x_173, 1, x_171); -x_174 = l_Array_appendCore___rarg(x_157, x_21); -lean_dec(x_21); -x_175 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_175, 0, x_172); -lean_ctor_set(x_175, 1, x_174); -if (lean_obj_tag(x_4) == 0) -{ -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; -x_176 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__9; -x_177 = lean_array_push(x_176, x_173); -x_178 = lean_array_push(x_177, x_175); -x_179 = l_myMacro____x40_Init_Notation___hyg_11918____closed__10; -x_180 = lean_array_push(x_178, x_179); -x_181 = lean_array_push(x_180, x_24); -x_182 = l_Lean_Parser_Command_syntax___elambda__1___closed__1; +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; size_t x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; lean_object* x_189; lean_object* x_190; +x_162 = l_Lean_Elab_Command_getCurrMacroScope(x_8, x_9, x_39); +x_163 = lean_ctor_get(x_162, 1); +lean_inc(x_163); +lean_dec(x_162); +x_164 = l_Lean_Elab_Command_getMainModule___rarg(x_9, x_163); +x_165 = lean_ctor_get(x_164, 1); +lean_inc(x_165); +lean_dec(x_164); +x_166 = l_Lean_mkIdentFrom(x_1, x_28); +x_167 = l_Array_empty___closed__1; +x_168 = lean_array_push(x_167, x_166); +x_169 = l_myMacro____x40_Init_Notation___hyg_376____closed__8; +x_170 = lean_array_push(x_168, x_169); +x_171 = l_Nat_repr(x_20); +x_172 = l_Lean_numLitKind; +x_173 = l_Lean_instInhabitedSourceInfo___closed__1; +x_174 = l_Lean_Syntax_mkLit(x_172, x_171, x_173); +x_175 = lean_array_push(x_170, x_174); +x_176 = l_Lean_Parser_Command_parserKindPrio___elambda__1___closed__2; +x_177 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_177, 0, x_176); +lean_ctor_set(x_177, 1, x_175); +x_178 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3404____closed__9; +x_179 = lean_array_push(x_178, x_177); +x_180 = l_Lean_myMacro____x40_Init_Notation___hyg_12778____closed__11; +x_181 = lean_array_push(x_179, x_180); +x_182 = l_Lean_nullKind___closed__2; x_183 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_183, 0, x_182); lean_ctor_set(x_183, 1, x_181); -x_184 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___lambda__1(x_157, x_47, x_45, x_183, x_8, x_9, x_155); +x_184 = lean_array_get_size(x_21); +x_185 = lean_usize_of_nat(x_184); +lean_dec(x_184); +x_186 = x_21; +x_187 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_2962____spec__3(x_185, x_13, x_186); +x_188 = x_187; +x_189 = l_Array_appendCore___rarg(x_167, x_188); +lean_dec(x_188); +x_190 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_190, 0, x_182); +lean_ctor_set(x_190, 1, x_189); +if (lean_obj_tag(x_4) == 0) +{ +lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; +x_191 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__9; +x_192 = lean_array_push(x_191, x_183); +x_193 = lean_array_push(x_192, x_190); +x_194 = l_myMacro____x40_Init_Notation___hyg_11918____closed__10; +x_195 = lean_array_push(x_193, x_194); +x_196 = lean_array_push(x_195, x_24); +x_197 = l_Lean_Parser_Command_syntax___elambda__1___closed__1; +x_198 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_198, 0, x_197); +lean_ctor_set(x_198, 1, x_196); +x_199 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___lambda__1(x_167, x_47, x_45, x_198, x_8, x_9, x_165); lean_dec(x_9); lean_dec(x_8); -return x_184; +return x_199; } else { -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; -x_185 = lean_ctor_get(x_4, 0); -lean_inc(x_185); +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; +x_200 = lean_ctor_get(x_4, 0); +lean_inc(x_200); lean_dec(x_4); -x_186 = l_myMacro____x40_Init_Notation___hyg_11918____closed__11; -x_187 = lean_array_push(x_186, x_185); -x_188 = l_Lean_Parser_precedence___elambda__1___closed__2; -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 = l_Lean_mkOptionalNode___closed__2; -x_191 = lean_array_push(x_190, x_189); -x_192 = l_Array_appendCore___rarg(x_157, x_191); -lean_dec(x_191); -x_193 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_193, 0, x_172); -lean_ctor_set(x_193, 1, x_192); -x_194 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__8; -x_195 = lean_array_push(x_194, x_193); -x_196 = lean_array_push(x_195, x_173); -x_197 = lean_array_push(x_196, x_175); -x_198 = l_myMacro____x40_Init_Notation___hyg_11918____closed__10; -x_199 = lean_array_push(x_197, x_198); -x_200 = lean_array_push(x_199, x_24); -x_201 = l_Lean_Parser_Command_syntax___elambda__1___closed__1; -x_202 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_202, 0, x_201); -lean_ctor_set(x_202, 1, x_200); -x_203 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___lambda__1(x_157, x_47, x_45, x_202, x_8, x_9, x_155); +x_201 = l_myMacro____x40_Init_Notation___hyg_11918____closed__11; +x_202 = lean_array_push(x_201, x_200); +x_203 = l_Lean_Parser_precedence___elambda__1___closed__2; +x_204 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_204, 0, x_203); +lean_ctor_set(x_204, 1, x_202); +x_205 = l_Lean_mkOptionalNode___closed__2; +x_206 = lean_array_push(x_205, x_204); +x_207 = l_Array_appendCore___rarg(x_167, x_206); +lean_dec(x_206); +x_208 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_208, 0, x_182); +lean_ctor_set(x_208, 1, x_207); +x_209 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___closed__8; +x_210 = lean_array_push(x_209, x_208); +x_211 = lean_array_push(x_210, x_183); +x_212 = lean_array_push(x_211, x_190); +x_213 = l_myMacro____x40_Init_Notation___hyg_11918____closed__10; +x_214 = lean_array_push(x_212, x_213); +x_215 = lean_array_push(x_214, x_24); +x_216 = l_Lean_Parser_Command_syntax___elambda__1___closed__1; +x_217 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_217, 0, x_216); +lean_ctor_set(x_217, 1, x_215); +x_218 = l___private_Lean_Elab_Syntax_0__Lean_Elab_Command_expandNotationAux___lambda__1(x_167, x_47, x_45, x_217, x_8, x_9, x_165); lean_dec(x_9); lean_dec(x_8); -return x_203; +return x_218; } } } } else { -uint8_t x_204; +uint8_t x_219; lean_dec(x_37); lean_dec(x_28); lean_dec(x_24); @@ -27976,23 +28009,23 @@ lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); lean_dec(x_4); -x_204 = !lean_is_exclusive(x_36); -if (x_204 == 0) +x_219 = !lean_is_exclusive(x_36); +if (x_219 == 0) { return x_36; } else { -lean_object* x_205; lean_object* x_206; lean_object* x_207; -x_205 = lean_ctor_get(x_36, 0); -x_206 = lean_ctor_get(x_36, 1); -lean_inc(x_206); -lean_inc(x_205); +lean_object* x_220; lean_object* x_221; lean_object* x_222; +x_220 = lean_ctor_get(x_36, 0); +x_221 = lean_ctor_get(x_36, 1); +lean_inc(x_221); +lean_inc(x_220); lean_dec(x_36); -x_207 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_207, 0, x_205); -lean_ctor_set(x_207, 1, x_206); -return x_207; +x_222 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_222, 0, x_220); +lean_ctor_set(x_222, 1, x_221); +return x_222; } } } @@ -28681,6 +28714,68 @@ lean_dec(x_1); return x_2; } } +lean_object* l_Lean_Elab_Command_expandMacro_match__1___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_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_ctor_get(x_1, 0); +lean_inc(x_6); +lean_dec(x_1); +x_7 = lean_apply_1(x_2, x_6); +return x_7; +} +} +} +lean_object* l_Lean_Elab_Command_expandMacro_match__1(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l_Lean_Elab_Command_expandMacro_match__1___rarg), 3, 0); +return x_2; +} +} +lean_object* l_Lean_Elab_Command_expandMacro_match__2___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_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_ctor_get(x_1, 0); +lean_inc(x_6); +lean_dec(x_1); +x_7 = lean_apply_1(x_2, x_6); +return x_7; +} +} +} +lean_object* l_Lean_Elab_Command_expandMacro_match__2(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l_Lean_Elab_Command_expandMacro_match__2___rarg), 3, 0); +return x_2; +} +} lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Command_expandMacro___spec__1(size_t x_1, size_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { @@ -28850,6 +28945,16 @@ x_3 = lean_array_push(x_1, x_2); return x_3; } } +static lean_object* _init_l_Lean_Elab_Command_expandMacro___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Elab_Command_expandMacro___closed__1; +x_2 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__11; +x_3 = lean_array_push(x_1, x_2); +return x_3; +} +} static lean_object* _init_l_Lean_Elab_Command_expandMacro___boxed__const__1() { _start: { @@ -28862,10 +28967,10 @@ return x_2; lean_object* l_Lean_Elab_Command_expandMacro(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { -lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_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_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_556; lean_object* x_557; lean_object* x_558; lean_object* x_559; lean_object* x_560; lean_object* x_561; lean_object* x_562; lean_object* x_563; lean_object* x_564; lean_object* x_565; lean_object* x_566; lean_object* x_567; lean_object* x_568; lean_object* x_569; lean_object* x_570; lean_object* x_571; lean_object* x_572; lean_object* x_573; lean_object* x_574; lean_object* x_575; lean_object* x_576; lean_object* x_577; lean_object* x_578; lean_object* x_579; x_6 = lean_unsigned_to_nat(1u); x_7 = l_Lean_Syntax_getArg(x_2, x_6); -x_8 = l_Lean_Syntax_getArgs(x_7); +x_8 = l_Lean_Syntax_getOptional_x3f(x_7); lean_dec(x_7); x_9 = lean_unsigned_to_nat(2u); x_10 = l_Lean_Syntax_getArg(x_2, x_9); @@ -28879,397 +28984,397 @@ x_16 = l_Lean_Syntax_getArgs(x_15); lean_dec(x_15); x_17 = lean_unsigned_to_nat(6u); x_18 = l_Lean_Syntax_getArg(x_2, x_17); -x_478 = lean_st_ref_get(x_4, x_5); -x_479 = lean_ctor_get(x_478, 0); -lean_inc(x_479); -x_480 = lean_ctor_get(x_478, 1); -lean_inc(x_480); -lean_dec(x_478); -x_481 = lean_ctor_get(x_479, 0); -lean_inc(x_481); -lean_dec(x_479); -x_482 = l_Lean_Elab_Command_getRef(x_3, x_4, x_480); -x_483 = lean_ctor_get(x_482, 0); -lean_inc(x_483); -x_484 = lean_ctor_get(x_482, 1); -lean_inc(x_484); -lean_dec(x_482); -x_485 = l_Lean_Elab_Command_getCurrMacroScope(x_3, x_4, x_484); -x_486 = lean_ctor_get(x_485, 0); -lean_inc(x_486); -x_487 = lean_ctor_get(x_485, 1); -lean_inc(x_487); -lean_dec(x_485); -x_488 = lean_ctor_get(x_3, 2); -lean_inc(x_488); -x_489 = lean_st_ref_get(x_4, x_487); -x_490 = lean_ctor_get(x_489, 0); -lean_inc(x_490); -x_491 = lean_ctor_get(x_489, 1); -lean_inc(x_491); -lean_dec(x_489); -x_492 = lean_ctor_get(x_490, 4); -lean_inc(x_492); -lean_dec(x_490); -x_493 = lean_st_ref_get(x_4, x_491); -x_494 = lean_ctor_get(x_493, 0); -lean_inc(x_494); -x_495 = lean_ctor_get(x_493, 1); -lean_inc(x_495); -lean_dec(x_493); -x_496 = lean_ctor_get(x_494, 3); -lean_inc(x_496); -lean_dec(x_494); -lean_inc(x_481); -x_497 = lean_alloc_closure((void*)(l___private_Lean_Elab_Util_0__Lean_Elab_expandMacro_x3f___boxed), 4, 1); -lean_closure_set(x_497, 0, x_481); -x_498 = x_497; -x_499 = lean_environment_main_module(x_481); -x_500 = lean_alloc_ctor(0, 6, 0); -lean_ctor_set(x_500, 0, x_498); -lean_ctor_set(x_500, 1, x_499); -lean_ctor_set(x_500, 2, x_486); -lean_ctor_set(x_500, 3, x_488); -lean_ctor_set(x_500, 4, x_492); -lean_ctor_set(x_500, 5, x_483); +x_556 = lean_st_ref_get(x_4, x_5); +x_557 = lean_ctor_get(x_556, 0); +lean_inc(x_557); +x_558 = lean_ctor_get(x_556, 1); +lean_inc(x_558); +lean_dec(x_556); +x_559 = lean_ctor_get(x_557, 0); +lean_inc(x_559); +lean_dec(x_557); +x_560 = l_Lean_Elab_Command_getRef(x_3, x_4, x_558); +x_561 = lean_ctor_get(x_560, 0); +lean_inc(x_561); +x_562 = lean_ctor_get(x_560, 1); +lean_inc(x_562); +lean_dec(x_560); +x_563 = l_Lean_Elab_Command_getCurrMacroScope(x_3, x_4, x_562); +x_564 = lean_ctor_get(x_563, 0); +lean_inc(x_564); +x_565 = lean_ctor_get(x_563, 1); +lean_inc(x_565); +lean_dec(x_563); +x_566 = lean_ctor_get(x_3, 2); +lean_inc(x_566); +x_567 = lean_st_ref_get(x_4, x_565); +x_568 = lean_ctor_get(x_567, 0); +lean_inc(x_568); +x_569 = lean_ctor_get(x_567, 1); +lean_inc(x_569); +lean_dec(x_567); +x_570 = lean_ctor_get(x_568, 4); +lean_inc(x_570); +lean_dec(x_568); +x_571 = lean_st_ref_get(x_4, x_569); +x_572 = lean_ctor_get(x_571, 0); +lean_inc(x_572); +x_573 = lean_ctor_get(x_571, 1); +lean_inc(x_573); +lean_dec(x_571); +x_574 = lean_ctor_get(x_572, 3); +lean_inc(x_574); +lean_dec(x_572); +lean_inc(x_559); +x_575 = lean_alloc_closure((void*)(l___private_Lean_Elab_Util_0__Lean_Elab_expandMacro_x3f___boxed), 4, 1); +lean_closure_set(x_575, 0, x_559); +x_576 = x_575; +x_577 = lean_environment_main_module(x_559); +x_578 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_578, 0, x_576); +lean_ctor_set(x_578, 1, x_577); +lean_ctor_set(x_578, 2, x_564); +lean_ctor_set(x_578, 3, x_566); +lean_ctor_set(x_578, 4, x_570); +lean_ctor_set(x_578, 5, x_561); lean_inc(x_13); -x_501 = l_Lean_Elab_Command_expandMacroArgIntoSyntaxItem(x_13, x_500, x_496); -lean_dec(x_500); -if (lean_obj_tag(x_501) == 0) +x_579 = l_Lean_Elab_Command_expandMacroArgIntoSyntaxItem(x_13, x_578, x_574); +lean_dec(x_578); +if (lean_obj_tag(x_579) == 0) { -lean_object* x_502; lean_object* x_503; lean_object* x_504; lean_object* x_505; lean_object* x_506; uint8_t x_507; -x_502 = lean_ctor_get(x_501, 0); -lean_inc(x_502); -x_503 = lean_ctor_get(x_501, 1); -lean_inc(x_503); -lean_dec(x_501); -x_504 = lean_st_ref_take(x_4, x_495); -x_505 = lean_ctor_get(x_504, 0); -lean_inc(x_505); -x_506 = lean_ctor_get(x_504, 1); -lean_inc(x_506); -lean_dec(x_504); -x_507 = !lean_is_exclusive(x_505); -if (x_507 == 0) +lean_object* x_580; lean_object* x_581; lean_object* x_582; lean_object* x_583; lean_object* x_584; uint8_t x_585; +x_580 = lean_ctor_get(x_579, 0); +lean_inc(x_580); +x_581 = lean_ctor_get(x_579, 1); +lean_inc(x_581); +lean_dec(x_579); +x_582 = lean_st_ref_take(x_4, x_573); +x_583 = lean_ctor_get(x_582, 0); +lean_inc(x_583); +x_584 = lean_ctor_get(x_582, 1); +lean_inc(x_584); +lean_dec(x_582); +x_585 = !lean_is_exclusive(x_583); +if (x_585 == 0) { -lean_object* x_508; lean_object* x_509; lean_object* x_510; -x_508 = lean_ctor_get(x_505, 3); -lean_dec(x_508); -lean_ctor_set(x_505, 3, x_503); -x_509 = lean_st_ref_set(x_4, x_505, x_506); -x_510 = lean_ctor_get(x_509, 1); -lean_inc(x_510); -lean_dec(x_509); -x_19 = x_502; -x_20 = x_510; -goto block_477; +lean_object* x_586; lean_object* x_587; lean_object* x_588; +x_586 = lean_ctor_get(x_583, 3); +lean_dec(x_586); +lean_ctor_set(x_583, 3, x_581); +x_587 = lean_st_ref_set(x_4, x_583, x_584); +x_588 = lean_ctor_get(x_587, 1); +lean_inc(x_588); +lean_dec(x_587); +x_19 = x_580; +x_20 = x_588; +goto block_555; } else { -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; -x_511 = lean_ctor_get(x_505, 0); -x_512 = lean_ctor_get(x_505, 1); -x_513 = lean_ctor_get(x_505, 2); -x_514 = lean_ctor_get(x_505, 4); -x_515 = lean_ctor_get(x_505, 5); -x_516 = lean_ctor_get(x_505, 6); -lean_inc(x_516); -lean_inc(x_515); -lean_inc(x_514); -lean_inc(x_513); -lean_inc(x_512); -lean_inc(x_511); -lean_dec(x_505); -x_517 = lean_alloc_ctor(0, 7, 0); -lean_ctor_set(x_517, 0, x_511); -lean_ctor_set(x_517, 1, x_512); -lean_ctor_set(x_517, 2, x_513); -lean_ctor_set(x_517, 3, x_503); -lean_ctor_set(x_517, 4, x_514); -lean_ctor_set(x_517, 5, x_515); -lean_ctor_set(x_517, 6, x_516); -x_518 = lean_st_ref_set(x_4, x_517, x_506); -x_519 = lean_ctor_get(x_518, 1); -lean_inc(x_519); -lean_dec(x_518); -x_19 = x_502; -x_20 = x_519; -goto block_477; +lean_object* x_589; lean_object* x_590; lean_object* x_591; lean_object* x_592; lean_object* x_593; lean_object* x_594; lean_object* x_595; lean_object* x_596; lean_object* x_597; +x_589 = lean_ctor_get(x_583, 0); +x_590 = lean_ctor_get(x_583, 1); +x_591 = lean_ctor_get(x_583, 2); +x_592 = lean_ctor_get(x_583, 4); +x_593 = lean_ctor_get(x_583, 5); +x_594 = lean_ctor_get(x_583, 6); +lean_inc(x_594); +lean_inc(x_593); +lean_inc(x_592); +lean_inc(x_591); +lean_inc(x_590); +lean_inc(x_589); +lean_dec(x_583); +x_595 = lean_alloc_ctor(0, 7, 0); +lean_ctor_set(x_595, 0, x_589); +lean_ctor_set(x_595, 1, x_590); +lean_ctor_set(x_595, 2, x_591); +lean_ctor_set(x_595, 3, x_581); +lean_ctor_set(x_595, 4, x_592); +lean_ctor_set(x_595, 5, x_593); +lean_ctor_set(x_595, 6, x_594); +x_596 = lean_st_ref_set(x_4, x_595, x_584); +x_597 = lean_ctor_get(x_596, 1); +lean_inc(x_597); +lean_dec(x_596); +x_19 = x_580; +x_20 = x_597; +goto block_555; } } else { -lean_object* x_520; +lean_object* x_598; lean_dec(x_18); lean_dec(x_16); lean_dec(x_13); lean_dec(x_11); lean_dec(x_8); -x_520 = lean_ctor_get(x_501, 0); -lean_inc(x_520); -lean_dec(x_501); -if (lean_obj_tag(x_520) == 0) +x_598 = lean_ctor_get(x_579, 0); +lean_inc(x_598); +lean_dec(x_579); +if (lean_obj_tag(x_598) == 0) { -lean_object* x_521; lean_object* x_522; lean_object* x_523; lean_object* x_524; lean_object* x_525; uint8_t x_526; -x_521 = lean_ctor_get(x_520, 0); -lean_inc(x_521); -x_522 = lean_ctor_get(x_520, 1); -lean_inc(x_522); -lean_dec(x_520); -x_523 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_523, 0, x_522); -x_524 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_524, 0, x_523); -x_525 = l_Lean_throwErrorAt___at_Lean_Elab_Command_elabCommand___spec__7___rarg(x_521, x_524, x_3, x_4, x_495); -lean_dec(x_521); -x_526 = !lean_is_exclusive(x_525); -if (x_526 == 0) +lean_object* x_599; lean_object* x_600; lean_object* x_601; lean_object* x_602; lean_object* x_603; uint8_t x_604; +x_599 = lean_ctor_get(x_598, 0); +lean_inc(x_599); +x_600 = lean_ctor_get(x_598, 1); +lean_inc(x_600); +lean_dec(x_598); +x_601 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_601, 0, x_600); +x_602 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_602, 0, x_601); +x_603 = l_Lean_throwErrorAt___at_Lean_Elab_Command_elabCommand___spec__7___rarg(x_599, x_602, x_3, x_4, x_573); +lean_dec(x_599); +x_604 = !lean_is_exclusive(x_603); +if (x_604 == 0) { -return x_525; +return x_603; } else { -lean_object* x_527; lean_object* x_528; lean_object* x_529; -x_527 = lean_ctor_get(x_525, 0); -x_528 = lean_ctor_get(x_525, 1); -lean_inc(x_528); -lean_inc(x_527); -lean_dec(x_525); -x_529 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_529, 0, x_527); -lean_ctor_set(x_529, 1, x_528); -return x_529; +lean_object* x_605; lean_object* x_606; lean_object* x_607; +x_605 = lean_ctor_get(x_603, 0); +x_606 = lean_ctor_get(x_603, 1); +lean_inc(x_606); +lean_inc(x_605); +lean_dec(x_603); +x_607 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_607, 0, x_605); +lean_ctor_set(x_607, 1, x_606); +return x_607; } } else { -lean_object* x_530; uint8_t x_531; +lean_object* x_608; uint8_t x_609; lean_dec(x_3); -x_530 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabCommand___spec__8___rarg(x_495); -x_531 = !lean_is_exclusive(x_530); -if (x_531 == 0) +x_608 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabCommand___spec__8___rarg(x_573); +x_609 = !lean_is_exclusive(x_608); +if (x_609 == 0) { -return x_530; +return x_608; } else { -lean_object* x_532; lean_object* x_533; lean_object* x_534; -x_532 = lean_ctor_get(x_530, 0); -x_533 = lean_ctor_get(x_530, 1); +lean_object* x_610; lean_object* x_611; lean_object* x_612; +x_610 = lean_ctor_get(x_608, 0); +x_611 = lean_ctor_get(x_608, 1); +lean_inc(x_611); +lean_inc(x_610); +lean_dec(x_608); +x_612 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_612, 0, x_610); +lean_ctor_set(x_612, 1, x_611); +return x_612; +} +} +} +block_555: +{ +lean_object* x_21; lean_object* x_22; lean_object* x_491; size_t 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; +x_491 = lean_array_get_size(x_16); +x_492 = lean_usize_of_nat(x_491); +lean_dec(x_491); +lean_inc(x_16); +x_493 = x_16; +x_494 = lean_box_usize(x_492); +x_495 = l_Lean_Elab_Command_expandMacro___boxed__const__1; +x_496 = lean_alloc_closure((void*)(l_Array_mapMUnsafe_map___at_Lean_Elab_Command_expandMacro___spec__3___boxed), 5, 3); +lean_closure_set(x_496, 0, x_494); +lean_closure_set(x_496, 1, x_495); +lean_closure_set(x_496, 2, x_493); +x_497 = lean_st_ref_get(x_4, x_20); +x_498 = lean_ctor_get(x_497, 0); +lean_inc(x_498); +x_499 = lean_ctor_get(x_497, 1); +lean_inc(x_499); +lean_dec(x_497); +x_500 = lean_ctor_get(x_498, 0); +lean_inc(x_500); +lean_dec(x_498); +x_501 = l_Lean_Elab_Command_getRef(x_3, x_4, x_499); +x_502 = lean_ctor_get(x_501, 0); +lean_inc(x_502); +x_503 = lean_ctor_get(x_501, 1); +lean_inc(x_503); +lean_dec(x_501); +x_504 = l_Lean_Elab_Command_getCurrMacroScope(x_3, x_4, x_503); +x_505 = lean_ctor_get(x_504, 0); +lean_inc(x_505); +x_506 = lean_ctor_get(x_504, 1); +lean_inc(x_506); +lean_dec(x_504); +x_507 = lean_ctor_get(x_3, 2); +lean_inc(x_507); +x_508 = lean_st_ref_get(x_4, x_506); +x_509 = lean_ctor_get(x_508, 0); +lean_inc(x_509); +x_510 = lean_ctor_get(x_508, 1); +lean_inc(x_510); +lean_dec(x_508); +x_511 = lean_ctor_get(x_509, 4); +lean_inc(x_511); +lean_dec(x_509); +x_512 = lean_st_ref_get(x_4, x_510); +x_513 = lean_ctor_get(x_512, 0); +lean_inc(x_513); +x_514 = lean_ctor_get(x_512, 1); +lean_inc(x_514); +lean_dec(x_512); +x_515 = lean_ctor_get(x_513, 3); +lean_inc(x_515); +lean_dec(x_513); +lean_inc(x_500); +x_516 = lean_alloc_closure((void*)(l___private_Lean_Elab_Util_0__Lean_Elab_expandMacro_x3f___boxed), 4, 1); +lean_closure_set(x_516, 0, x_500); +x_517 = x_516; +x_518 = lean_environment_main_module(x_500); +x_519 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_519, 0, x_517); +lean_ctor_set(x_519, 1, x_518); +lean_ctor_set(x_519, 2, x_505); +lean_ctor_set(x_519, 3, x_507); +lean_ctor_set(x_519, 4, x_511); +lean_ctor_set(x_519, 5, x_502); +x_520 = x_496; +x_521 = lean_apply_2(x_520, x_519, x_515); +if (lean_obj_tag(x_521) == 0) +{ +lean_object* x_522; lean_object* x_523; lean_object* x_524; lean_object* x_525; lean_object* x_526; uint8_t x_527; +x_522 = lean_ctor_get(x_521, 0); +lean_inc(x_522); +x_523 = lean_ctor_get(x_521, 1); +lean_inc(x_523); +lean_dec(x_521); +x_524 = lean_st_ref_take(x_4, x_514); +x_525 = lean_ctor_get(x_524, 0); +lean_inc(x_525); +x_526 = lean_ctor_get(x_524, 1); +lean_inc(x_526); +lean_dec(x_524); +x_527 = !lean_is_exclusive(x_525); +if (x_527 == 0) +{ +lean_object* x_528; lean_object* x_529; lean_object* x_530; +x_528 = lean_ctor_get(x_525, 3); +lean_dec(x_528); +lean_ctor_set(x_525, 3, x_523); +x_529 = lean_st_ref_set(x_4, x_525, x_526); +x_530 = lean_ctor_get(x_529, 1); +lean_inc(x_530); +lean_dec(x_529); +x_21 = x_522; +x_22 = x_530; +goto block_490; +} +else +{ +lean_object* x_531; lean_object* x_532; lean_object* x_533; lean_object* x_534; lean_object* x_535; lean_object* x_536; lean_object* x_537; lean_object* x_538; lean_object* x_539; +x_531 = lean_ctor_get(x_525, 0); +x_532 = lean_ctor_get(x_525, 1); +x_533 = lean_ctor_get(x_525, 2); +x_534 = lean_ctor_get(x_525, 4); +x_535 = lean_ctor_get(x_525, 5); +x_536 = lean_ctor_get(x_525, 6); +lean_inc(x_536); +lean_inc(x_535); +lean_inc(x_534); lean_inc(x_533); lean_inc(x_532); -lean_dec(x_530); -x_534 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_534, 0, x_532); -lean_ctor_set(x_534, 1, x_533); -return x_534; -} -} -} -block_477: -{ -lean_object* x_21; lean_object* x_22; lean_object* x_413; size_t x_414; lean_object* x_415; lean_object* x_416; lean_object* x_417; lean_object* x_418; lean_object* x_419; lean_object* x_420; lean_object* x_421; lean_object* x_422; lean_object* x_423; lean_object* x_424; lean_object* x_425; lean_object* x_426; lean_object* x_427; lean_object* x_428; lean_object* x_429; lean_object* x_430; lean_object* x_431; lean_object* x_432; lean_object* x_433; lean_object* x_434; lean_object* x_435; lean_object* x_436; lean_object* x_437; lean_object* x_438; lean_object* x_439; lean_object* x_440; lean_object* x_441; lean_object* x_442; lean_object* x_443; -x_413 = lean_array_get_size(x_16); -x_414 = lean_usize_of_nat(x_413); -lean_dec(x_413); -lean_inc(x_16); -x_415 = x_16; -x_416 = lean_box_usize(x_414); -x_417 = l_Lean_Elab_Command_expandMacro___boxed__const__1; -x_418 = lean_alloc_closure((void*)(l_Array_mapMUnsafe_map___at_Lean_Elab_Command_expandMacro___spec__3___boxed), 5, 3); -lean_closure_set(x_418, 0, x_416); -lean_closure_set(x_418, 1, x_417); -lean_closure_set(x_418, 2, x_415); -x_419 = lean_st_ref_get(x_4, x_20); -x_420 = lean_ctor_get(x_419, 0); -lean_inc(x_420); -x_421 = lean_ctor_get(x_419, 1); -lean_inc(x_421); -lean_dec(x_419); -x_422 = lean_ctor_get(x_420, 0); -lean_inc(x_422); -lean_dec(x_420); -x_423 = l_Lean_Elab_Command_getRef(x_3, x_4, x_421); -x_424 = lean_ctor_get(x_423, 0); -lean_inc(x_424); -x_425 = lean_ctor_get(x_423, 1); -lean_inc(x_425); -lean_dec(x_423); -x_426 = l_Lean_Elab_Command_getCurrMacroScope(x_3, x_4, x_425); -x_427 = lean_ctor_get(x_426, 0); -lean_inc(x_427); -x_428 = lean_ctor_get(x_426, 1); -lean_inc(x_428); -lean_dec(x_426); -x_429 = lean_ctor_get(x_3, 2); -lean_inc(x_429); -x_430 = lean_st_ref_get(x_4, x_428); -x_431 = lean_ctor_get(x_430, 0); -lean_inc(x_431); -x_432 = lean_ctor_get(x_430, 1); -lean_inc(x_432); -lean_dec(x_430); -x_433 = lean_ctor_get(x_431, 4); -lean_inc(x_433); -lean_dec(x_431); -x_434 = lean_st_ref_get(x_4, x_432); -x_435 = lean_ctor_get(x_434, 0); -lean_inc(x_435); -x_436 = lean_ctor_get(x_434, 1); -lean_inc(x_436); -lean_dec(x_434); -x_437 = lean_ctor_get(x_435, 3); -lean_inc(x_437); -lean_dec(x_435); -lean_inc(x_422); -x_438 = lean_alloc_closure((void*)(l___private_Lean_Elab_Util_0__Lean_Elab_expandMacro_x3f___boxed), 4, 1); -lean_closure_set(x_438, 0, x_422); -x_439 = x_438; -x_440 = lean_environment_main_module(x_422); -x_441 = lean_alloc_ctor(0, 6, 0); -lean_ctor_set(x_441, 0, x_439); -lean_ctor_set(x_441, 1, x_440); -lean_ctor_set(x_441, 2, x_427); -lean_ctor_set(x_441, 3, x_429); -lean_ctor_set(x_441, 4, x_433); -lean_ctor_set(x_441, 5, x_424); -x_442 = x_418; -x_443 = lean_apply_2(x_442, x_441, x_437); -if (lean_obj_tag(x_443) == 0) -{ -lean_object* x_444; lean_object* x_445; lean_object* x_446; lean_object* x_447; lean_object* x_448; uint8_t x_449; -x_444 = lean_ctor_get(x_443, 0); -lean_inc(x_444); -x_445 = lean_ctor_get(x_443, 1); -lean_inc(x_445); -lean_dec(x_443); -x_446 = lean_st_ref_take(x_4, x_436); -x_447 = lean_ctor_get(x_446, 0); -lean_inc(x_447); -x_448 = lean_ctor_get(x_446, 1); -lean_inc(x_448); -lean_dec(x_446); -x_449 = !lean_is_exclusive(x_447); -if (x_449 == 0) -{ -lean_object* x_450; lean_object* x_451; lean_object* x_452; -x_450 = lean_ctor_get(x_447, 3); -lean_dec(x_450); -lean_ctor_set(x_447, 3, x_445); -x_451 = lean_st_ref_set(x_4, x_447, x_448); -x_452 = lean_ctor_get(x_451, 1); -lean_inc(x_452); -lean_dec(x_451); -x_21 = x_444; -x_22 = x_452; -goto block_412; -} -else -{ -lean_object* x_453; lean_object* x_454; lean_object* x_455; lean_object* x_456; lean_object* x_457; lean_object* x_458; lean_object* x_459; lean_object* x_460; lean_object* x_461; -x_453 = lean_ctor_get(x_447, 0); -x_454 = lean_ctor_get(x_447, 1); -x_455 = lean_ctor_get(x_447, 2); -x_456 = lean_ctor_get(x_447, 4); -x_457 = lean_ctor_get(x_447, 5); -x_458 = lean_ctor_get(x_447, 6); -lean_inc(x_458); -lean_inc(x_457); -lean_inc(x_456); -lean_inc(x_455); -lean_inc(x_454); -lean_inc(x_453); -lean_dec(x_447); -x_459 = lean_alloc_ctor(0, 7, 0); -lean_ctor_set(x_459, 0, x_453); -lean_ctor_set(x_459, 1, x_454); -lean_ctor_set(x_459, 2, x_455); -lean_ctor_set(x_459, 3, x_445); -lean_ctor_set(x_459, 4, x_456); -lean_ctor_set(x_459, 5, x_457); -lean_ctor_set(x_459, 6, x_458); -x_460 = lean_st_ref_set(x_4, x_459, x_448); -x_461 = lean_ctor_get(x_460, 1); -lean_inc(x_461); -lean_dec(x_460); -x_21 = x_444; -x_22 = x_461; -goto block_412; +lean_inc(x_531); +lean_dec(x_525); +x_537 = lean_alloc_ctor(0, 7, 0); +lean_ctor_set(x_537, 0, x_531); +lean_ctor_set(x_537, 1, x_532); +lean_ctor_set(x_537, 2, x_533); +lean_ctor_set(x_537, 3, x_523); +lean_ctor_set(x_537, 4, x_534); +lean_ctor_set(x_537, 5, x_535); +lean_ctor_set(x_537, 6, x_536); +x_538 = lean_st_ref_set(x_4, x_537, x_526); +x_539 = lean_ctor_get(x_538, 1); +lean_inc(x_539); +lean_dec(x_538); +x_21 = x_522; +x_22 = x_539; +goto block_490; } } else { -lean_object* x_462; +lean_object* x_540; lean_dec(x_19); lean_dec(x_18); lean_dec(x_16); lean_dec(x_13); lean_dec(x_11); lean_dec(x_8); -x_462 = lean_ctor_get(x_443, 0); -lean_inc(x_462); -lean_dec(x_443); -if (lean_obj_tag(x_462) == 0) +x_540 = lean_ctor_get(x_521, 0); +lean_inc(x_540); +lean_dec(x_521); +if (lean_obj_tag(x_540) == 0) { -lean_object* x_463; lean_object* x_464; lean_object* x_465; lean_object* x_466; lean_object* x_467; uint8_t x_468; -x_463 = lean_ctor_get(x_462, 0); -lean_inc(x_463); -x_464 = lean_ctor_get(x_462, 1); -lean_inc(x_464); -lean_dec(x_462); -x_465 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_465, 0, x_464); -x_466 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_466, 0, x_465); -x_467 = l_Lean_throwErrorAt___at_Lean_Elab_Command_elabCommand___spec__7___rarg(x_463, x_466, x_3, x_4, x_436); -lean_dec(x_463); -x_468 = !lean_is_exclusive(x_467); -if (x_468 == 0) +lean_object* x_541; lean_object* x_542; lean_object* x_543; lean_object* x_544; lean_object* x_545; uint8_t x_546; +x_541 = lean_ctor_get(x_540, 0); +lean_inc(x_541); +x_542 = lean_ctor_get(x_540, 1); +lean_inc(x_542); +lean_dec(x_540); +x_543 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_543, 0, x_542); +x_544 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_544, 0, x_543); +x_545 = l_Lean_throwErrorAt___at_Lean_Elab_Command_elabCommand___spec__7___rarg(x_541, x_544, x_3, x_4, x_514); +lean_dec(x_541); +x_546 = !lean_is_exclusive(x_545); +if (x_546 == 0) { -return x_467; +return x_545; } else { -lean_object* x_469; lean_object* x_470; lean_object* x_471; -x_469 = lean_ctor_get(x_467, 0); -x_470 = lean_ctor_get(x_467, 1); -lean_inc(x_470); -lean_inc(x_469); -lean_dec(x_467); -x_471 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_471, 0, x_469); -lean_ctor_set(x_471, 1, x_470); -return x_471; +lean_object* x_547; lean_object* x_548; lean_object* x_549; +x_547 = lean_ctor_get(x_545, 0); +x_548 = lean_ctor_get(x_545, 1); +lean_inc(x_548); +lean_inc(x_547); +lean_dec(x_545); +x_549 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_549, 0, x_547); +lean_ctor_set(x_549, 1, x_548); +return x_549; } } else { -lean_object* x_472; uint8_t x_473; +lean_object* x_550; uint8_t x_551; lean_dec(x_3); -x_472 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_expandMacro___spec__2___rarg(x_436); -x_473 = !lean_is_exclusive(x_472); -if (x_473 == 0) +x_550 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_expandMacro___spec__2___rarg(x_514); +x_551 = !lean_is_exclusive(x_550); +if (x_551 == 0) { -return x_472; +return x_550; } else { -lean_object* x_474; lean_object* x_475; lean_object* x_476; -x_474 = lean_ctor_get(x_472, 0); -x_475 = lean_ctor_get(x_472, 1); -lean_inc(x_475); -lean_inc(x_474); -lean_dec(x_472); -x_476 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_476, 0, x_474); -lean_ctor_set(x_476, 1, x_475); -return x_476; +lean_object* x_552; lean_object* x_553; lean_object* x_554; +x_552 = lean_ctor_get(x_550, 0); +x_553 = lean_ctor_get(x_550, 1); +lean_inc(x_553); +lean_inc(x_552); +lean_dec(x_550); +x_554 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_554, 0, x_552); +lean_ctor_set(x_554, 1, x_553); +return x_554; } } } -block_412: +block_490: { -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_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_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_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; x_23 = l_Lean_mkOptionalNode___closed__2; x_24 = lean_array_push(x_23, x_19); x_25 = l_Array_append___rarg(x_24, x_21); @@ -29287,127 +29392,127 @@ lean_inc(x_30); x_31 = lean_ctor_get(x_29, 1); lean_inc(x_31); lean_dec(x_29); -x_365 = lean_st_ref_get(x_4, x_31); -x_366 = lean_ctor_get(x_365, 0); -lean_inc(x_366); -x_367 = lean_ctor_get(x_365, 1); -lean_inc(x_367); -lean_dec(x_365); -x_368 = lean_ctor_get(x_366, 0); -lean_inc(x_368); -lean_dec(x_366); -x_369 = l_Lean_Elab_Command_getRef(x_3, x_4, x_367); -x_370 = lean_ctor_get(x_369, 0); -lean_inc(x_370); -x_371 = lean_ctor_get(x_369, 1); -lean_inc(x_371); -lean_dec(x_369); -x_372 = l_Lean_Elab_Command_getCurrMacroScope(x_3, x_4, x_371); -x_373 = lean_ctor_get(x_372, 0); -lean_inc(x_373); -x_374 = lean_ctor_get(x_372, 1); -lean_inc(x_374); -lean_dec(x_372); -x_375 = lean_ctor_get(x_3, 2); -lean_inc(x_375); -x_376 = lean_st_ref_get(x_4, x_374); -x_377 = lean_ctor_get(x_376, 0); -lean_inc(x_377); -x_378 = lean_ctor_get(x_376, 1); -lean_inc(x_378); -lean_dec(x_376); -x_379 = lean_ctor_get(x_377, 4); -lean_inc(x_379); -lean_dec(x_377); -x_380 = lean_st_ref_get(x_4, x_378); -x_381 = lean_ctor_get(x_380, 0); -lean_inc(x_381); -x_382 = lean_ctor_get(x_380, 1); -lean_inc(x_382); -lean_dec(x_380); -x_383 = lean_ctor_get(x_381, 3); -lean_inc(x_383); -lean_dec(x_381); -lean_inc(x_368); -x_384 = lean_alloc_closure((void*)(l___private_Lean_Elab_Util_0__Lean_Elab_expandMacro_x3f___boxed), 4, 1); -lean_closure_set(x_384, 0, x_368); -x_385 = x_384; -x_386 = lean_environment_main_module(x_368); -x_387 = lean_alloc_ctor(0, 6, 0); -lean_ctor_set(x_387, 0, x_385); -lean_ctor_set(x_387, 1, x_386); -lean_ctor_set(x_387, 2, x_373); -lean_ctor_set(x_387, 3, x_375); -lean_ctor_set(x_387, 4, x_379); -lean_ctor_set(x_387, 5, x_370); -x_388 = l_Lean_Elab_Command_expandMacroArgIntoPattern(x_13, x_387, x_383); -lean_dec(x_387); -if (lean_obj_tag(x_388) == 0) +x_443 = lean_st_ref_get(x_4, x_31); +x_444 = lean_ctor_get(x_443, 0); +lean_inc(x_444); +x_445 = lean_ctor_get(x_443, 1); +lean_inc(x_445); +lean_dec(x_443); +x_446 = lean_ctor_get(x_444, 0); +lean_inc(x_446); +lean_dec(x_444); +x_447 = l_Lean_Elab_Command_getRef(x_3, x_4, x_445); +x_448 = lean_ctor_get(x_447, 0); +lean_inc(x_448); +x_449 = lean_ctor_get(x_447, 1); +lean_inc(x_449); +lean_dec(x_447); +x_450 = l_Lean_Elab_Command_getCurrMacroScope(x_3, x_4, x_449); +x_451 = lean_ctor_get(x_450, 0); +lean_inc(x_451); +x_452 = lean_ctor_get(x_450, 1); +lean_inc(x_452); +lean_dec(x_450); +x_453 = lean_ctor_get(x_3, 2); +lean_inc(x_453); +x_454 = lean_st_ref_get(x_4, x_452); +x_455 = lean_ctor_get(x_454, 0); +lean_inc(x_455); +x_456 = lean_ctor_get(x_454, 1); +lean_inc(x_456); +lean_dec(x_454); +x_457 = lean_ctor_get(x_455, 4); +lean_inc(x_457); +lean_dec(x_455); +x_458 = lean_st_ref_get(x_4, x_456); +x_459 = lean_ctor_get(x_458, 0); +lean_inc(x_459); +x_460 = lean_ctor_get(x_458, 1); +lean_inc(x_460); +lean_dec(x_458); +x_461 = lean_ctor_get(x_459, 3); +lean_inc(x_461); +lean_dec(x_459); +lean_inc(x_446); +x_462 = lean_alloc_closure((void*)(l___private_Lean_Elab_Util_0__Lean_Elab_expandMacro_x3f___boxed), 4, 1); +lean_closure_set(x_462, 0, x_446); +x_463 = x_462; +x_464 = lean_environment_main_module(x_446); +x_465 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_465, 0, x_463); +lean_ctor_set(x_465, 1, x_464); +lean_ctor_set(x_465, 2, x_451); +lean_ctor_set(x_465, 3, x_453); +lean_ctor_set(x_465, 4, x_457); +lean_ctor_set(x_465, 5, x_448); +x_466 = l_Lean_Elab_Command_expandMacroArgIntoPattern(x_13, x_465, x_461); +lean_dec(x_465); +if (lean_obj_tag(x_466) == 0) { -lean_object* x_389; lean_object* x_390; lean_object* x_391; lean_object* x_392; lean_object* x_393; uint8_t x_394; -x_389 = lean_ctor_get(x_388, 0); -lean_inc(x_389); -x_390 = lean_ctor_get(x_388, 1); -lean_inc(x_390); -lean_dec(x_388); -x_391 = lean_st_ref_take(x_4, x_382); -x_392 = lean_ctor_get(x_391, 0); -lean_inc(x_392); -x_393 = lean_ctor_get(x_391, 1); -lean_inc(x_393); -lean_dec(x_391); -x_394 = !lean_is_exclusive(x_392); -if (x_394 == 0) +lean_object* x_467; lean_object* x_468; lean_object* x_469; lean_object* x_470; lean_object* x_471; uint8_t x_472; +x_467 = lean_ctor_get(x_466, 0); +lean_inc(x_467); +x_468 = lean_ctor_get(x_466, 1); +lean_inc(x_468); +lean_dec(x_466); +x_469 = lean_st_ref_take(x_4, x_460); +x_470 = lean_ctor_get(x_469, 0); +lean_inc(x_470); +x_471 = lean_ctor_get(x_469, 1); +lean_inc(x_471); +lean_dec(x_469); +x_472 = !lean_is_exclusive(x_470); +if (x_472 == 0) { -lean_object* x_395; lean_object* x_396; lean_object* x_397; -x_395 = lean_ctor_get(x_392, 3); -lean_dec(x_395); -lean_ctor_set(x_392, 3, x_390); -x_396 = lean_st_ref_set(x_4, x_392, x_393); -x_397 = lean_ctor_get(x_396, 1); -lean_inc(x_397); -lean_dec(x_396); -x_32 = x_389; -x_33 = x_397; -goto block_364; +lean_object* x_473; lean_object* x_474; lean_object* x_475; +x_473 = lean_ctor_get(x_470, 3); +lean_dec(x_473); +lean_ctor_set(x_470, 3, x_468); +x_474 = lean_st_ref_set(x_4, x_470, x_471); +x_475 = lean_ctor_get(x_474, 1); +lean_inc(x_475); +lean_dec(x_474); +x_32 = x_467; +x_33 = x_475; +goto block_442; } else { -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; -x_398 = lean_ctor_get(x_392, 0); -x_399 = lean_ctor_get(x_392, 1); -x_400 = lean_ctor_get(x_392, 2); -x_401 = lean_ctor_get(x_392, 4); -x_402 = lean_ctor_get(x_392, 5); -x_403 = lean_ctor_get(x_392, 6); -lean_inc(x_403); -lean_inc(x_402); -lean_inc(x_401); -lean_inc(x_400); -lean_inc(x_399); -lean_inc(x_398); -lean_dec(x_392); -x_404 = lean_alloc_ctor(0, 7, 0); -lean_ctor_set(x_404, 0, x_398); -lean_ctor_set(x_404, 1, x_399); -lean_ctor_set(x_404, 2, x_400); -lean_ctor_set(x_404, 3, x_390); -lean_ctor_set(x_404, 4, x_401); -lean_ctor_set(x_404, 5, x_402); -lean_ctor_set(x_404, 6, x_403); -x_405 = lean_st_ref_set(x_4, x_404, x_393); -x_406 = lean_ctor_get(x_405, 1); -lean_inc(x_406); -lean_dec(x_405); -x_32 = x_389; -x_33 = x_406; -goto block_364; +lean_object* x_476; lean_object* x_477; lean_object* x_478; lean_object* x_479; lean_object* x_480; lean_object* x_481; lean_object* x_482; lean_object* x_483; lean_object* x_484; +x_476 = lean_ctor_get(x_470, 0); +x_477 = lean_ctor_get(x_470, 1); +x_478 = lean_ctor_get(x_470, 2); +x_479 = lean_ctor_get(x_470, 4); +x_480 = lean_ctor_get(x_470, 5); +x_481 = lean_ctor_get(x_470, 6); +lean_inc(x_481); +lean_inc(x_480); +lean_inc(x_479); +lean_inc(x_478); +lean_inc(x_477); +lean_inc(x_476); +lean_dec(x_470); +x_482 = lean_alloc_ctor(0, 7, 0); +lean_ctor_set(x_482, 0, x_476); +lean_ctor_set(x_482, 1, x_477); +lean_ctor_set(x_482, 2, x_478); +lean_ctor_set(x_482, 3, x_468); +lean_ctor_set(x_482, 4, x_479); +lean_ctor_set(x_482, 5, x_480); +lean_ctor_set(x_482, 6, x_481); +x_483 = lean_st_ref_set(x_4, x_482, x_471); +x_484 = lean_ctor_get(x_483, 1); +lean_inc(x_484); +lean_dec(x_483); +x_32 = x_467; +x_33 = x_484; +goto block_442; } } else { -lean_object* x_407; uint8_t x_408; -lean_dec(x_388); +lean_object* x_485; uint8_t x_486; +lean_dec(x_466); lean_dec(x_30); lean_dec(x_25); lean_dec(x_18); @@ -29415,227 +29520,227 @@ lean_dec(x_16); lean_dec(x_11); lean_dec(x_8); lean_dec(x_3); -x_407 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabCommand___spec__8___rarg(x_382); -x_408 = !lean_is_exclusive(x_407); -if (x_408 == 0) +x_485 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabCommand___spec__8___rarg(x_460); +x_486 = !lean_is_exclusive(x_485); +if (x_486 == 0) { -return x_407; +return x_485; } else { -lean_object* x_409; lean_object* x_410; lean_object* x_411; -x_409 = lean_ctor_get(x_407, 0); -x_410 = lean_ctor_get(x_407, 1); -lean_inc(x_410); +lean_object* x_487; lean_object* x_488; lean_object* x_489; +x_487 = lean_ctor_get(x_485, 0); +x_488 = lean_ctor_get(x_485, 1); +lean_inc(x_488); +lean_inc(x_487); +lean_dec(x_485); +x_489 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_489, 0, x_487); +lean_ctor_set(x_489, 1, x_488); +return x_489; +} +} +block_442: +{ +lean_object* x_34; lean_object* x_35; lean_object* x_378; size_t 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_378 = lean_array_get_size(x_16); +x_379 = lean_usize_of_nat(x_378); +lean_dec(x_378); +x_380 = x_16; +x_381 = lean_box_usize(x_379); +x_382 = l_Lean_Elab_Command_expandMacro___boxed__const__1; +x_383 = lean_alloc_closure((void*)(l_Array_mapMUnsafe_map___at_Lean_Elab_Command_expandMacro___spec__1___boxed), 5, 3); +lean_closure_set(x_383, 0, x_381); +lean_closure_set(x_383, 1, x_382); +lean_closure_set(x_383, 2, x_380); +x_384 = lean_st_ref_get(x_4, x_33); +x_385 = lean_ctor_get(x_384, 0); +lean_inc(x_385); +x_386 = lean_ctor_get(x_384, 1); +lean_inc(x_386); +lean_dec(x_384); +x_387 = lean_ctor_get(x_385, 0); +lean_inc(x_387); +lean_dec(x_385); +x_388 = l_Lean_Elab_Command_getRef(x_3, x_4, x_386); +x_389 = lean_ctor_get(x_388, 0); +lean_inc(x_389); +x_390 = lean_ctor_get(x_388, 1); +lean_inc(x_390); +lean_dec(x_388); +x_391 = l_Lean_Elab_Command_getCurrMacroScope(x_3, x_4, x_390); +x_392 = lean_ctor_get(x_391, 0); +lean_inc(x_392); +x_393 = lean_ctor_get(x_391, 1); +lean_inc(x_393); +lean_dec(x_391); +x_394 = lean_ctor_get(x_3, 2); +lean_inc(x_394); +x_395 = lean_st_ref_get(x_4, x_393); +x_396 = lean_ctor_get(x_395, 0); +lean_inc(x_396); +x_397 = lean_ctor_get(x_395, 1); +lean_inc(x_397); +lean_dec(x_395); +x_398 = lean_ctor_get(x_396, 4); +lean_inc(x_398); +lean_dec(x_396); +x_399 = lean_st_ref_get(x_4, x_397); +x_400 = lean_ctor_get(x_399, 0); +lean_inc(x_400); +x_401 = lean_ctor_get(x_399, 1); +lean_inc(x_401); +lean_dec(x_399); +x_402 = lean_ctor_get(x_400, 3); +lean_inc(x_402); +lean_dec(x_400); +lean_inc(x_387); +x_403 = lean_alloc_closure((void*)(l___private_Lean_Elab_Util_0__Lean_Elab_expandMacro_x3f___boxed), 4, 1); +lean_closure_set(x_403, 0, x_387); +x_404 = x_403; +x_405 = lean_environment_main_module(x_387); +x_406 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_406, 0, x_404); +lean_ctor_set(x_406, 1, x_405); +lean_ctor_set(x_406, 2, x_392); +lean_ctor_set(x_406, 3, x_394); +lean_ctor_set(x_406, 4, x_398); +lean_ctor_set(x_406, 5, x_389); +x_407 = x_383; +x_408 = lean_apply_2(x_407, x_406, x_402); +if (lean_obj_tag(x_408) == 0) +{ +lean_object* x_409; lean_object* x_410; lean_object* x_411; lean_object* x_412; lean_object* x_413; uint8_t x_414; +x_409 = lean_ctor_get(x_408, 0); lean_inc(x_409); -lean_dec(x_407); -x_411 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_411, 0, x_409); -lean_ctor_set(x_411, 1, x_410); -return x_411; -} -} -block_364: +x_410 = lean_ctor_get(x_408, 1); +lean_inc(x_410); +lean_dec(x_408); +x_411 = lean_st_ref_take(x_4, x_401); +x_412 = lean_ctor_get(x_411, 0); +lean_inc(x_412); +x_413 = lean_ctor_get(x_411, 1); +lean_inc(x_413); +lean_dec(x_411); +x_414 = !lean_is_exclusive(x_412); +if (x_414 == 0) { -lean_object* x_34; lean_object* x_35; lean_object* x_300; size_t 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; -x_300 = lean_array_get_size(x_16); -x_301 = lean_usize_of_nat(x_300); -lean_dec(x_300); -x_302 = x_16; -x_303 = lean_box_usize(x_301); -x_304 = l_Lean_Elab_Command_expandMacro___boxed__const__1; -x_305 = lean_alloc_closure((void*)(l_Array_mapMUnsafe_map___at_Lean_Elab_Command_expandMacro___spec__1___boxed), 5, 3); -lean_closure_set(x_305, 0, x_303); -lean_closure_set(x_305, 1, x_304); -lean_closure_set(x_305, 2, x_302); -x_306 = lean_st_ref_get(x_4, x_33); -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 = lean_ctor_get(x_307, 0); -lean_inc(x_309); -lean_dec(x_307); -x_310 = l_Lean_Elab_Command_getRef(x_3, x_4, x_308); -x_311 = lean_ctor_get(x_310, 0); -lean_inc(x_311); -x_312 = lean_ctor_get(x_310, 1); -lean_inc(x_312); -lean_dec(x_310); -x_313 = l_Lean_Elab_Command_getCurrMacroScope(x_3, x_4, x_312); -x_314 = lean_ctor_get(x_313, 0); -lean_inc(x_314); -x_315 = lean_ctor_get(x_313, 1); -lean_inc(x_315); -lean_dec(x_313); -x_316 = lean_ctor_get(x_3, 2); -lean_inc(x_316); -x_317 = lean_st_ref_get(x_4, x_315); -x_318 = lean_ctor_get(x_317, 0); -lean_inc(x_318); -x_319 = lean_ctor_get(x_317, 1); -lean_inc(x_319); -lean_dec(x_317); -x_320 = lean_ctor_get(x_318, 4); -lean_inc(x_320); -lean_dec(x_318); -x_321 = lean_st_ref_get(x_4, x_319); -x_322 = lean_ctor_get(x_321, 0); -lean_inc(x_322); -x_323 = lean_ctor_get(x_321, 1); -lean_inc(x_323); -lean_dec(x_321); -x_324 = lean_ctor_get(x_322, 3); -lean_inc(x_324); -lean_dec(x_322); -lean_inc(x_309); -x_325 = lean_alloc_closure((void*)(l___private_Lean_Elab_Util_0__Lean_Elab_expandMacro_x3f___boxed), 4, 1); -lean_closure_set(x_325, 0, x_309); -x_326 = x_325; -x_327 = lean_environment_main_module(x_309); -x_328 = lean_alloc_ctor(0, 6, 0); -lean_ctor_set(x_328, 0, x_326); -lean_ctor_set(x_328, 1, x_327); -lean_ctor_set(x_328, 2, x_314); -lean_ctor_set(x_328, 3, x_316); -lean_ctor_set(x_328, 4, x_320); -lean_ctor_set(x_328, 5, x_311); -x_329 = x_305; -x_330 = lean_apply_2(x_329, x_328, x_324); -if (lean_obj_tag(x_330) == 0) -{ -lean_object* x_331; lean_object* x_332; lean_object* x_333; lean_object* x_334; lean_object* x_335; uint8_t x_336; -x_331 = lean_ctor_get(x_330, 0); -lean_inc(x_331); -x_332 = lean_ctor_get(x_330, 1); -lean_inc(x_332); -lean_dec(x_330); -x_333 = lean_st_ref_take(x_4, x_323); -x_334 = lean_ctor_get(x_333, 0); -lean_inc(x_334); -x_335 = lean_ctor_get(x_333, 1); -lean_inc(x_335); -lean_dec(x_333); -x_336 = !lean_is_exclusive(x_334); -if (x_336 == 0) -{ -lean_object* x_337; lean_object* x_338; lean_object* x_339; -x_337 = lean_ctor_get(x_334, 3); -lean_dec(x_337); -lean_ctor_set(x_334, 3, x_332); -x_338 = lean_st_ref_set(x_4, x_334, x_335); -x_339 = lean_ctor_get(x_338, 1); -lean_inc(x_339); -lean_dec(x_338); -x_34 = x_331; -x_35 = x_339; -goto block_299; +lean_object* x_415; lean_object* x_416; lean_object* x_417; +x_415 = lean_ctor_get(x_412, 3); +lean_dec(x_415); +lean_ctor_set(x_412, 3, x_410); +x_416 = lean_st_ref_set(x_4, x_412, x_413); +x_417 = lean_ctor_get(x_416, 1); +lean_inc(x_417); +lean_dec(x_416); +x_34 = x_409; +x_35 = x_417; +goto block_377; } else { -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; -x_340 = lean_ctor_get(x_334, 0); -x_341 = lean_ctor_get(x_334, 1); -x_342 = lean_ctor_get(x_334, 2); -x_343 = lean_ctor_get(x_334, 4); -x_344 = lean_ctor_get(x_334, 5); -x_345 = lean_ctor_get(x_334, 6); -lean_inc(x_345); -lean_inc(x_344); -lean_inc(x_343); -lean_inc(x_342); -lean_inc(x_341); -lean_inc(x_340); -lean_dec(x_334); -x_346 = lean_alloc_ctor(0, 7, 0); -lean_ctor_set(x_346, 0, x_340); -lean_ctor_set(x_346, 1, x_341); -lean_ctor_set(x_346, 2, x_342); -lean_ctor_set(x_346, 3, x_332); -lean_ctor_set(x_346, 4, x_343); -lean_ctor_set(x_346, 5, x_344); -lean_ctor_set(x_346, 6, x_345); -x_347 = lean_st_ref_set(x_4, x_346, x_335); -x_348 = lean_ctor_get(x_347, 1); -lean_inc(x_348); -lean_dec(x_347); -x_34 = x_331; -x_35 = x_348; -goto block_299; +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; +x_418 = lean_ctor_get(x_412, 0); +x_419 = lean_ctor_get(x_412, 1); +x_420 = lean_ctor_get(x_412, 2); +x_421 = lean_ctor_get(x_412, 4); +x_422 = lean_ctor_get(x_412, 5); +x_423 = lean_ctor_get(x_412, 6); +lean_inc(x_423); +lean_inc(x_422); +lean_inc(x_421); +lean_inc(x_420); +lean_inc(x_419); +lean_inc(x_418); +lean_dec(x_412); +x_424 = lean_alloc_ctor(0, 7, 0); +lean_ctor_set(x_424, 0, x_418); +lean_ctor_set(x_424, 1, x_419); +lean_ctor_set(x_424, 2, x_420); +lean_ctor_set(x_424, 3, x_410); +lean_ctor_set(x_424, 4, x_421); +lean_ctor_set(x_424, 5, x_422); +lean_ctor_set(x_424, 6, x_423); +x_425 = lean_st_ref_set(x_4, x_424, x_413); +x_426 = lean_ctor_get(x_425, 1); +lean_inc(x_426); +lean_dec(x_425); +x_34 = x_409; +x_35 = x_426; +goto block_377; } } else { -lean_object* x_349; +lean_object* x_427; lean_dec(x_32); lean_dec(x_30); lean_dec(x_25); lean_dec(x_18); lean_dec(x_11); lean_dec(x_8); -x_349 = lean_ctor_get(x_330, 0); -lean_inc(x_349); -lean_dec(x_330); -if (lean_obj_tag(x_349) == 0) +x_427 = lean_ctor_get(x_408, 0); +lean_inc(x_427); +lean_dec(x_408); +if (lean_obj_tag(x_427) == 0) { -lean_object* x_350; lean_object* x_351; lean_object* x_352; lean_object* x_353; lean_object* x_354; uint8_t x_355; -x_350 = lean_ctor_get(x_349, 0); -lean_inc(x_350); -x_351 = lean_ctor_get(x_349, 1); -lean_inc(x_351); -lean_dec(x_349); -x_352 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_352, 0, x_351); -x_353 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_353, 0, x_352); -x_354 = l_Lean_throwErrorAt___at_Lean_Elab_Command_elabCommand___spec__7___rarg(x_350, x_353, x_3, x_4, x_323); -lean_dec(x_350); -x_355 = !lean_is_exclusive(x_354); -if (x_355 == 0) +lean_object* x_428; lean_object* x_429; lean_object* x_430; lean_object* x_431; lean_object* x_432; uint8_t x_433; +x_428 = lean_ctor_get(x_427, 0); +lean_inc(x_428); +x_429 = lean_ctor_get(x_427, 1); +lean_inc(x_429); +lean_dec(x_427); +x_430 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_430, 0, x_429); +x_431 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_431, 0, x_430); +x_432 = l_Lean_throwErrorAt___at_Lean_Elab_Command_elabCommand___spec__7___rarg(x_428, x_431, x_3, x_4, x_401); +lean_dec(x_428); +x_433 = !lean_is_exclusive(x_432); +if (x_433 == 0) { -return x_354; +return x_432; } else { -lean_object* x_356; lean_object* x_357; lean_object* x_358; -x_356 = lean_ctor_get(x_354, 0); -x_357 = lean_ctor_get(x_354, 1); -lean_inc(x_357); -lean_inc(x_356); -lean_dec(x_354); -x_358 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_358, 0, x_356); -lean_ctor_set(x_358, 1, x_357); -return x_358; +lean_object* x_434; lean_object* x_435; lean_object* x_436; +x_434 = lean_ctor_get(x_432, 0); +x_435 = lean_ctor_get(x_432, 1); +lean_inc(x_435); +lean_inc(x_434); +lean_dec(x_432); +x_436 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_436, 0, x_434); +lean_ctor_set(x_436, 1, x_435); +return x_436; } } else { -lean_object* x_359; uint8_t x_360; +lean_object* x_437; uint8_t x_438; lean_dec(x_3); -x_359 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_expandMacro___spec__2___rarg(x_323); -x_360 = !lean_is_exclusive(x_359); -if (x_360 == 0) +x_437 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_expandMacro___spec__2___rarg(x_401); +x_438 = !lean_is_exclusive(x_437); +if (x_438 == 0) { -return x_359; +return x_437; } else { -lean_object* x_361; lean_object* x_362; lean_object* x_363; -x_361 = lean_ctor_get(x_359, 0); -x_362 = lean_ctor_get(x_359, 1); -lean_inc(x_362); -lean_inc(x_361); -lean_dec(x_359); -x_363 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_363, 0, x_361); -lean_ctor_set(x_363, 1, x_362); -return x_363; +lean_object* x_439; lean_object* x_440; lean_object* x_441; +x_439 = lean_ctor_get(x_437, 0); +x_440 = lean_ctor_get(x_437, 1); +lean_inc(x_440); +lean_inc(x_439); +lean_dec(x_437); +x_441 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_441, 0, x_439); +lean_ctor_set(x_441, 1, x_440); +return x_441; } } } -block_299: +block_377: { 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; uint8_t x_43; lean_inc(x_30); @@ -29665,400 +29770,548 @@ x_47 = l_Lean_Elab_Command_getMainModule___rarg(x_4, x_46); x_48 = !lean_is_exclusive(x_47); if (x_48 == 0) { -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_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; size_t x_69; size_t 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; x_49 = lean_ctor_get(x_47, 0); lean_dec(x_49); -x_50 = l_Array_empty___closed__1; -x_51 = l_Array_appendCore___rarg(x_50, x_8); -lean_dec(x_8); -x_52 = l_Lean_nullKind___closed__2; -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 = l_Lean_Elab_Command_expandMacro___closed__1; -x_55 = lean_array_push(x_54, x_53); -x_56 = l_Lean_mkIdentFrom(x_2, x_30); -x_57 = lean_array_push(x_50, x_56); -x_58 = l_myMacro____x40_Init_Notation___hyg_376____closed__8; -x_59 = lean_array_push(x_57, x_58); -x_60 = l_Nat_repr(x_11); -x_61 = l_Lean_numLitKind; -x_62 = l_Lean_instInhabitedSourceInfo___closed__1; -x_63 = l_Lean_Syntax_mkLit(x_61, x_60, x_62); -x_64 = lean_array_push(x_59, x_63); -x_65 = l_Lean_Parser_Command_parserKindPrio___elambda__1___closed__2; -x_66 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_66, 0, x_65); -lean_ctor_set(x_66, 1, x_64); -x_67 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3404____closed__9; -x_68 = lean_array_push(x_67, x_66); -x_69 = l_Lean_myMacro____x40_Init_Notation___hyg_12778____closed__11; -x_70 = lean_array_push(x_68, x_69); -x_71 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_71, 0, x_52); -lean_ctor_set(x_71, 1, x_70); -x_72 = lean_array_push(x_55, x_71); -x_73 = l_Array_appendCore___rarg(x_50, x_25); -lean_dec(x_25); -x_74 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_74, 0, x_52); -lean_ctor_set(x_74, 1, x_73); -x_75 = lean_array_push(x_72, x_74); -x_76 = l_myMacro____x40_Init_Notation___hyg_11918____closed__10; -x_77 = lean_array_push(x_75, x_76); -x_78 = lean_array_push(x_77, x_18); -x_79 = l_Lean_Parser_Command_syntax___elambda__1___closed__1; -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 = lean_array_push(x_50, x_80); -x_82 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__22; -x_83 = lean_array_push(x_82, x_39); -x_84 = l_myMacro____x40_Init_Notation___hyg_49____closed__16; -x_85 = lean_array_push(x_83, x_84); -x_86 = l_Lean_Parser_Term_quot___elambda__1___closed__1; -x_87 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_87, 0, x_86); -lean_ctor_set(x_87, 1, x_85); -x_88 = lean_array_push(x_50, x_87); +x_50 = l_Lean_mkIdentFrom(x_2, x_30); +x_51 = l_Array_empty___closed__1; +x_52 = lean_array_push(x_51, x_50); +x_53 = l_myMacro____x40_Init_Notation___hyg_376____closed__8; +x_54 = lean_array_push(x_52, x_53); +x_55 = l_Nat_repr(x_11); +x_56 = l_Lean_numLitKind; +x_57 = l_Lean_instInhabitedSourceInfo___closed__1; +x_58 = l_Lean_Syntax_mkLit(x_56, x_55, x_57); +x_59 = lean_array_push(x_54, x_58); +x_60 = l_Lean_Parser_Command_parserKindPrio___elambda__1___closed__2; +x_61 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_61, 0, x_60); +lean_ctor_set(x_61, 1, x_59); +x_62 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3404____closed__9; +x_63 = lean_array_push(x_62, x_61); +x_64 = l_Lean_myMacro____x40_Init_Notation___hyg_12778____closed__11; +x_65 = lean_array_push(x_63, x_64); +x_66 = l_Lean_nullKind___closed__2; +x_67 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_67, 0, x_66); +lean_ctor_set(x_67, 1, x_65); +x_68 = lean_array_get_size(x_25); +x_69 = lean_usize_of_nat(x_68); +lean_dec(x_68); +x_70 = 0; +x_71 = x_25; +x_72 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_2962____spec__3(x_69, x_70, x_71); +x_73 = x_72; +x_74 = l_Array_appendCore___rarg(x_51, x_73); +lean_dec(x_73); +x_75 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_75, 0, x_66); +lean_ctor_set(x_75, 1, x_74); +x_76 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__22; +x_77 = lean_array_push(x_76, x_39); +x_78 = l_myMacro____x40_Init_Notation___hyg_49____closed__16; +x_79 = lean_array_push(x_77, x_78); +x_80 = l_Lean_Parser_Term_quot___elambda__1___closed__1; +x_81 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_81, 0, x_80); +lean_ctor_set(x_81, 1, x_79); +x_82 = lean_array_push(x_51, x_81); +x_83 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_83, 0, x_66); +lean_ctor_set(x_83, 1, x_82); +x_84 = lean_array_push(x_51, x_83); +x_85 = l_myMacro____x40_Init_Notation___hyg_10790____closed__17; +x_86 = lean_array_push(x_84, x_85); +x_87 = lean_array_push(x_76, x_44); +x_88 = lean_array_push(x_87, x_78); x_89 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_89, 0, x_52); +lean_ctor_set(x_89, 0, x_80); lean_ctor_set(x_89, 1, x_88); -x_90 = lean_array_push(x_50, x_89); -x_91 = l_myMacro____x40_Init_Notation___hyg_10790____closed__17; -x_92 = lean_array_push(x_90, x_91); -x_93 = lean_array_push(x_82, x_44); -x_94 = lean_array_push(x_93, x_84); -x_95 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_95, 0, x_86); -lean_ctor_set(x_95, 1, x_94); -x_96 = lean_array_push(x_92, x_95); -x_97 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +x_90 = lean_array_push(x_86, x_89); +x_91 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +x_92 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_92, 0, x_91); +lean_ctor_set(x_92, 1, x_90); +x_93 = lean_array_push(x_51, x_92); +x_94 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_94, 0, x_66); +lean_ctor_set(x_94, 1, x_93); +x_95 = l_Lean_Elab_Term_expandFunBinders_loop___closed__10; +x_96 = lean_array_push(x_95, x_94); +x_97 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; x_98 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_98, 0, x_97); lean_ctor_set(x_98, 1, x_96); -x_99 = lean_array_push(x_50, x_98); -x_100 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_100, 0, x_52); -lean_ctor_set(x_100, 1, x_99); -x_101 = l_Lean_Elab_Term_expandFunBinders_loop___closed__10; -x_102 = lean_array_push(x_101, x_100); -x_103 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; -x_104 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_104, 0, x_103); -lean_ctor_set(x_104, 1, x_102); -x_105 = l_Lean_Elab_Command_expandMacro___closed__2; -x_106 = lean_array_push(x_105, x_104); -x_107 = l_Lean_Parser_Command_macro__rules___elambda__1___closed__2; -x_108 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_108, 0, x_107); -lean_ctor_set(x_108, 1, x_106); -x_109 = lean_array_push(x_81, x_108); +x_99 = l_Lean_Elab_Command_expandMacro___closed__2; +x_100 = lean_array_push(x_99, x_98); +x_101 = l_Lean_Parser_Command_macro__rules___elambda__1___closed__2; +x_102 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_102, 0, x_101); +lean_ctor_set(x_102, 1, x_100); +if (lean_obj_tag(x_8) == 0) +{ +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; +x_103 = l_Lean_Elab_Command_expandMacro___closed__3; +x_104 = lean_array_push(x_103, x_67); +x_105 = lean_array_push(x_104, x_75); +x_106 = l_myMacro____x40_Init_Notation___hyg_11918____closed__10; +x_107 = lean_array_push(x_105, x_106); +x_108 = lean_array_push(x_107, x_18); +x_109 = l_Lean_Parser_Command_syntax___elambda__1___closed__1; x_110 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_110, 0, x_52); -lean_ctor_set(x_110, 1, x_109); -lean_ctor_set(x_47, 0, x_110); +lean_ctor_set(x_110, 0, x_109); +lean_ctor_set(x_110, 1, x_108); +x_111 = lean_array_push(x_51, x_110); +x_112 = lean_array_push(x_111, x_102); +x_113 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_113, 0, x_66); +lean_ctor_set(x_113, 1, x_112); +lean_ctor_set(x_47, 0, x_113); return x_47; } else { -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; lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; lean_object* x_169; lean_object* x_170; lean_object* x_171; lean_object* x_172; lean_object* x_173; -x_111 = lean_ctor_get(x_47, 1); -lean_inc(x_111); -lean_dec(x_47); -x_112 = l_Array_empty___closed__1; -x_113 = l_Array_appendCore___rarg(x_112, x_8); +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; +x_114 = lean_ctor_get(x_8, 0); +lean_inc(x_114); lean_dec(x_8); -x_114 = l_Lean_nullKind___closed__2; -x_115 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_115, 0, x_114); -lean_ctor_set(x_115, 1, x_113); -x_116 = l_Lean_Elab_Command_expandMacro___closed__1; -x_117 = lean_array_push(x_116, x_115); -x_118 = l_Lean_mkIdentFrom(x_2, x_30); -x_119 = lean_array_push(x_112, x_118); -x_120 = l_myMacro____x40_Init_Notation___hyg_376____closed__8; -x_121 = lean_array_push(x_119, x_120); -x_122 = l_Nat_repr(x_11); -x_123 = l_Lean_numLitKind; -x_124 = l_Lean_instInhabitedSourceInfo___closed__1; -x_125 = l_Lean_Syntax_mkLit(x_123, x_122, x_124); -x_126 = lean_array_push(x_121, x_125); -x_127 = l_Lean_Parser_Command_parserKindPrio___elambda__1___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 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3404____closed__9; -x_130 = lean_array_push(x_129, x_128); -x_131 = l_Lean_myMacro____x40_Init_Notation___hyg_12778____closed__11; -x_132 = lean_array_push(x_130, x_131); -x_133 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_133, 0, x_114); -lean_ctor_set(x_133, 1, x_132); -x_134 = lean_array_push(x_117, x_133); -x_135 = l_Array_appendCore___rarg(x_112, x_25); -lean_dec(x_25); -x_136 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_136, 0, x_114); -lean_ctor_set(x_136, 1, x_135); -x_137 = lean_array_push(x_134, x_136); -x_138 = l_myMacro____x40_Init_Notation___hyg_11918____closed__10; -x_139 = lean_array_push(x_137, x_138); -x_140 = lean_array_push(x_139, x_18); -x_141 = l_Lean_Parser_Command_syntax___elambda__1___closed__1; +x_115 = lean_array_push(x_51, x_114); +x_116 = l_Array_appendCore___rarg(x_51, x_115); +lean_dec(x_115); +x_117 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_117, 0, x_66); +lean_ctor_set(x_117, 1, x_116); +x_118 = l_Lean_Elab_Command_expandMacro___closed__1; +x_119 = lean_array_push(x_118, x_117); +x_120 = lean_array_push(x_119, x_67); +x_121 = lean_array_push(x_120, x_75); +x_122 = l_myMacro____x40_Init_Notation___hyg_11918____closed__10; +x_123 = lean_array_push(x_121, x_122); +x_124 = lean_array_push(x_123, x_18); +x_125 = l_Lean_Parser_Command_syntax___elambda__1___closed__1; +x_126 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_126, 0, x_125); +lean_ctor_set(x_126, 1, x_124); +x_127 = lean_array_push(x_51, x_126); +x_128 = lean_array_push(x_127, x_102); +x_129 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_129, 0, x_66); +lean_ctor_set(x_129, 1, x_128); +lean_ctor_set(x_47, 0, x_129); +return x_47; +} +} +else +{ +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; size_t x_150; size_t 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; +x_130 = lean_ctor_get(x_47, 1); +lean_inc(x_130); +lean_dec(x_47); +x_131 = l_Lean_mkIdentFrom(x_2, x_30); +x_132 = l_Array_empty___closed__1; +x_133 = lean_array_push(x_132, x_131); +x_134 = l_myMacro____x40_Init_Notation___hyg_376____closed__8; +x_135 = lean_array_push(x_133, x_134); +x_136 = l_Nat_repr(x_11); +x_137 = l_Lean_numLitKind; +x_138 = l_Lean_instInhabitedSourceInfo___closed__1; +x_139 = l_Lean_Syntax_mkLit(x_137, x_136, x_138); +x_140 = lean_array_push(x_135, x_139); +x_141 = l_Lean_Parser_Command_parserKindPrio___elambda__1___closed__2; x_142 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_142, 0, x_141); lean_ctor_set(x_142, 1, x_140); -x_143 = lean_array_push(x_112, x_142); -x_144 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__22; -x_145 = lean_array_push(x_144, x_39); -x_146 = l_myMacro____x40_Init_Notation___hyg_49____closed__16; -x_147 = lean_array_push(x_145, x_146); -x_148 = l_Lean_Parser_Term_quot___elambda__1___closed__1; -x_149 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_149, 0, x_148); -lean_ctor_set(x_149, 1, x_147); -x_150 = lean_array_push(x_112, x_149); -x_151 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_151, 0, x_114); -lean_ctor_set(x_151, 1, x_150); -x_152 = lean_array_push(x_112, x_151); -x_153 = l_myMacro____x40_Init_Notation___hyg_10790____closed__17; -x_154 = lean_array_push(x_152, x_153); -x_155 = lean_array_push(x_144, x_44); -x_156 = lean_array_push(x_155, x_146); -x_157 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_157, 0, x_148); -lean_ctor_set(x_157, 1, x_156); -x_158 = lean_array_push(x_154, x_157); -x_159 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; -x_160 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_160, 0, x_159); -lean_ctor_set(x_160, 1, x_158); -x_161 = lean_array_push(x_112, x_160); +x_143 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3404____closed__9; +x_144 = lean_array_push(x_143, x_142); +x_145 = l_Lean_myMacro____x40_Init_Notation___hyg_12778____closed__11; +x_146 = lean_array_push(x_144, x_145); +x_147 = l_Lean_nullKind___closed__2; +x_148 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_148, 0, x_147); +lean_ctor_set(x_148, 1, x_146); +x_149 = lean_array_get_size(x_25); +x_150 = lean_usize_of_nat(x_149); +lean_dec(x_149); +x_151 = 0; +x_152 = x_25; +x_153 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_2962____spec__3(x_150, x_151, x_152); +x_154 = x_153; +x_155 = l_Array_appendCore___rarg(x_132, x_154); +lean_dec(x_154); +x_156 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_156, 0, x_147); +lean_ctor_set(x_156, 1, x_155); +x_157 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__22; +x_158 = lean_array_push(x_157, x_39); +x_159 = l_myMacro____x40_Init_Notation___hyg_49____closed__16; +x_160 = lean_array_push(x_158, x_159); +x_161 = l_Lean_Parser_Term_quot___elambda__1___closed__1; x_162 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_162, 0, x_114); -lean_ctor_set(x_162, 1, x_161); -x_163 = l_Lean_Elab_Term_expandFunBinders_loop___closed__10; -x_164 = lean_array_push(x_163, x_162); -x_165 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; -x_166 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_166, 0, x_165); -lean_ctor_set(x_166, 1, x_164); -x_167 = l_Lean_Elab_Command_expandMacro___closed__2; -x_168 = lean_array_push(x_167, x_166); -x_169 = l_Lean_Parser_Command_macro__rules___elambda__1___closed__2; +lean_ctor_set(x_162, 0, x_161); +lean_ctor_set(x_162, 1, x_160); +x_163 = lean_array_push(x_132, x_162); +x_164 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_164, 0, x_147); +lean_ctor_set(x_164, 1, x_163); +x_165 = lean_array_push(x_132, x_164); +x_166 = l_myMacro____x40_Init_Notation___hyg_10790____closed__17; +x_167 = lean_array_push(x_165, x_166); +x_168 = lean_array_push(x_157, x_44); +x_169 = lean_array_push(x_168, x_159); x_170 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_170, 0, x_169); -lean_ctor_set(x_170, 1, x_168); -x_171 = lean_array_push(x_143, x_170); -x_172 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_172, 0, x_114); -lean_ctor_set(x_172, 1, x_171); -x_173 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_170, 0, x_161); +lean_ctor_set(x_170, 1, x_169); +x_171 = lean_array_push(x_167, x_170); +x_172 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +x_173 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_173, 0, x_172); -lean_ctor_set(x_173, 1, x_111); -return x_173; -} +lean_ctor_set(x_173, 1, x_171); +x_174 = lean_array_push(x_132, x_173); +x_175 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_175, 0, x_147); +lean_ctor_set(x_175, 1, x_174); +x_176 = l_Lean_Elab_Term_expandFunBinders_loop___closed__10; +x_177 = lean_array_push(x_176, x_175); +x_178 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +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 = l_Lean_Elab_Command_expandMacro___closed__2; +x_181 = lean_array_push(x_180, x_179); +x_182 = l_Lean_Parser_Command_macro__rules___elambda__1___closed__2; +x_183 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_183, 0, x_182); +lean_ctor_set(x_183, 1, x_181); +if (lean_obj_tag(x_8) == 0) +{ +lean_object* x_184; lean_object* x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; lean_object* x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; +x_184 = l_Lean_Elab_Command_expandMacro___closed__3; +x_185 = lean_array_push(x_184, x_148); +x_186 = lean_array_push(x_185, x_156); +x_187 = l_myMacro____x40_Init_Notation___hyg_11918____closed__10; +x_188 = lean_array_push(x_186, x_187); +x_189 = lean_array_push(x_188, x_18); +x_190 = l_Lean_Parser_Command_syntax___elambda__1___closed__1; +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_132, x_191); +x_193 = lean_array_push(x_192, x_183); +x_194 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_194, 0, x_147); +lean_ctor_set(x_194, 1, x_193); +x_195 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_195, 0, x_194); +lean_ctor_set(x_195, 1, x_130); +return x_195; } else { -lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; lean_object* x_178; uint8_t x_179; -x_174 = lean_unsigned_to_nat(8u); -x_175 = l_Lean_Syntax_getArg(x_2, x_174); -x_176 = l_Lean_Elab_Command_getCurrMacroScope(x_3, x_4, x_35); -lean_dec(x_3); -x_177 = lean_ctor_get(x_176, 1); -lean_inc(x_177); -lean_dec(x_176); -x_178 = l_Lean_Elab_Command_getMainModule___rarg(x_4, x_177); -x_179 = !lean_is_exclusive(x_178); -if (x_179 == 0) -{ -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; 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; -x_180 = lean_ctor_get(x_178, 0); -lean_dec(x_180); -x_181 = l_Array_empty___closed__1; -x_182 = l_Array_appendCore___rarg(x_181, x_8); +lean_object* x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; lean_object* x_200; lean_object* x_201; lean_object* x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; lean_object* x_206; lean_object* x_207; lean_object* x_208; lean_object* x_209; lean_object* x_210; lean_object* x_211; lean_object* x_212; +x_196 = lean_ctor_get(x_8, 0); +lean_inc(x_196); lean_dec(x_8); -x_183 = l_Lean_nullKind___closed__2; -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 = l_Lean_Elab_Command_expandMacro___closed__1; -x_186 = lean_array_push(x_185, x_184); -x_187 = l_Lean_mkIdentFrom(x_2, x_30); -x_188 = lean_array_push(x_181, x_187); -x_189 = l_myMacro____x40_Init_Notation___hyg_376____closed__8; -x_190 = lean_array_push(x_188, x_189); -x_191 = l_Nat_repr(x_11); -x_192 = l_Lean_numLitKind; -x_193 = l_Lean_instInhabitedSourceInfo___closed__1; -x_194 = l_Lean_Syntax_mkLit(x_192, x_191, x_193); -x_195 = lean_array_push(x_190, x_194); -x_196 = l_Lean_Parser_Command_parserKindPrio___elambda__1___closed__2; -x_197 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_197, 0, x_196); -lean_ctor_set(x_197, 1, x_195); -x_198 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3404____closed__9; -x_199 = lean_array_push(x_198, x_197); -x_200 = l_Lean_myMacro____x40_Init_Notation___hyg_12778____closed__11; -x_201 = lean_array_push(x_199, x_200); -x_202 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_202, 0, x_183); -lean_ctor_set(x_202, 1, x_201); -x_203 = lean_array_push(x_186, x_202); -x_204 = l_Array_appendCore___rarg(x_181, x_25); -lean_dec(x_25); -x_205 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_205, 0, x_183); -lean_ctor_set(x_205, 1, x_204); -x_206 = lean_array_push(x_203, x_205); -x_207 = l_myMacro____x40_Init_Notation___hyg_11918____closed__10; -x_208 = lean_array_push(x_206, x_207); -x_209 = lean_array_push(x_208, x_18); -x_210 = l_Lean_Parser_Command_syntax___elambda__1___closed__1; +x_197 = lean_array_push(x_132, x_196); +x_198 = l_Array_appendCore___rarg(x_132, x_197); +lean_dec(x_197); +x_199 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_199, 0, x_147); +lean_ctor_set(x_199, 1, x_198); +x_200 = l_Lean_Elab_Command_expandMacro___closed__1; +x_201 = lean_array_push(x_200, x_199); +x_202 = lean_array_push(x_201, x_148); +x_203 = lean_array_push(x_202, x_156); +x_204 = l_myMacro____x40_Init_Notation___hyg_11918____closed__10; +x_205 = lean_array_push(x_203, x_204); +x_206 = lean_array_push(x_205, x_18); +x_207 = l_Lean_Parser_Command_syntax___elambda__1___closed__1; +x_208 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_208, 0, x_207); +lean_ctor_set(x_208, 1, x_206); +x_209 = lean_array_push(x_132, x_208); +x_210 = lean_array_push(x_209, x_183); x_211 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_211, 0, x_210); -lean_ctor_set(x_211, 1, x_209); -x_212 = lean_array_push(x_181, x_211); -x_213 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__22; -x_214 = lean_array_push(x_213, x_39); -x_215 = l_myMacro____x40_Init_Notation___hyg_49____closed__16; -x_216 = lean_array_push(x_214, x_215); -x_217 = l_Lean_Parser_Term_quot___elambda__1___closed__1; -x_218 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_218, 0, x_217); -lean_ctor_set(x_218, 1, x_216); -x_219 = lean_array_push(x_181, x_218); -x_220 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_220, 0, x_183); -lean_ctor_set(x_220, 1, x_219); -x_221 = lean_array_push(x_181, x_220); -x_222 = l_myMacro____x40_Init_Notation___hyg_10790____closed__17; -x_223 = lean_array_push(x_221, x_222); -x_224 = lean_array_push(x_223, x_175); -x_225 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; -x_226 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_226, 0, x_225); -lean_ctor_set(x_226, 1, x_224); -x_227 = lean_array_push(x_181, x_226); -x_228 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_228, 0, x_183); -lean_ctor_set(x_228, 1, x_227); -x_229 = l_Lean_Elab_Term_expandFunBinders_loop___closed__10; -x_230 = lean_array_push(x_229, x_228); -x_231 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; -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_Elab_Command_expandMacro___closed__2; -x_234 = lean_array_push(x_233, x_232); -x_235 = l_Lean_Parser_Command_macro__rules___elambda__1___closed__2; -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_212, x_236); -x_238 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_238, 0, x_183); -lean_ctor_set(x_238, 1, x_237); -lean_ctor_set(x_178, 0, x_238); -return x_178; +lean_ctor_set(x_211, 0, x_147); +lean_ctor_set(x_211, 1, x_210); +x_212 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_212, 0, x_211); +lean_ctor_set(x_212, 1, x_130); +return x_212; +} +} } else { -lean_object* x_239; lean_object* x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; lean_object* x_247; lean_object* x_248; lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; lean_object* x_255; lean_object* x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; lean_object* x_262; lean_object* x_263; lean_object* x_264; lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; lean_object* x_269; lean_object* x_270; lean_object* x_271; lean_object* x_272; lean_object* x_273; lean_object* x_274; lean_object* x_275; lean_object* x_276; lean_object* x_277; lean_object* x_278; lean_object* x_279; lean_object* x_280; lean_object* x_281; lean_object* x_282; lean_object* x_283; lean_object* x_284; lean_object* x_285; lean_object* x_286; lean_object* x_287; lean_object* x_288; lean_object* x_289; lean_object* x_290; lean_object* x_291; lean_object* x_292; lean_object* x_293; lean_object* x_294; lean_object* x_295; lean_object* x_296; lean_object* x_297; lean_object* x_298; -x_239 = lean_ctor_get(x_178, 1); -lean_inc(x_239); -lean_dec(x_178); -x_240 = l_Array_empty___closed__1; -x_241 = l_Array_appendCore___rarg(x_240, x_8); -lean_dec(x_8); -x_242 = l_Lean_nullKind___closed__2; -x_243 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_243, 0, x_242); -lean_ctor_set(x_243, 1, x_241); -x_244 = l_Lean_Elab_Command_expandMacro___closed__1; -x_245 = lean_array_push(x_244, x_243); -x_246 = l_Lean_mkIdentFrom(x_2, x_30); -x_247 = lean_array_push(x_240, x_246); -x_248 = l_myMacro____x40_Init_Notation___hyg_376____closed__8; +lean_object* x_213; lean_object* x_214; lean_object* x_215; lean_object* x_216; lean_object* x_217; uint8_t x_218; +x_213 = lean_unsigned_to_nat(8u); +x_214 = l_Lean_Syntax_getArg(x_2, x_213); +x_215 = l_Lean_Elab_Command_getCurrMacroScope(x_3, x_4, x_35); +lean_dec(x_3); +x_216 = lean_ctor_get(x_215, 1); +lean_inc(x_216); +lean_dec(x_215); +x_217 = l_Lean_Elab_Command_getMainModule___rarg(x_4, x_216); +x_218 = !lean_is_exclusive(x_217); +if (x_218 == 0) +{ +lean_object* x_219; lean_object* x_220; lean_object* x_221; lean_object* x_222; lean_object* x_223; lean_object* x_224; lean_object* x_225; lean_object* x_226; lean_object* x_227; lean_object* x_228; lean_object* x_229; lean_object* x_230; lean_object* x_231; lean_object* x_232; lean_object* x_233; lean_object* x_234; lean_object* x_235; lean_object* x_236; lean_object* x_237; lean_object* x_238; size_t x_239; size_t x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; lean_object* x_247; lean_object* x_248; lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; lean_object* x_255; lean_object* x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; lean_object* x_262; lean_object* x_263; lean_object* x_264; lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; lean_object* x_269; +x_219 = lean_ctor_get(x_217, 0); +lean_dec(x_219); +x_220 = l_Lean_mkIdentFrom(x_2, x_30); +x_221 = l_Array_empty___closed__1; +x_222 = lean_array_push(x_221, x_220); +x_223 = l_myMacro____x40_Init_Notation___hyg_376____closed__8; +x_224 = lean_array_push(x_222, x_223); +x_225 = l_Nat_repr(x_11); +x_226 = l_Lean_numLitKind; +x_227 = l_Lean_instInhabitedSourceInfo___closed__1; +x_228 = l_Lean_Syntax_mkLit(x_226, x_225, x_227); +x_229 = lean_array_push(x_224, x_228); +x_230 = l_Lean_Parser_Command_parserKindPrio___elambda__1___closed__2; +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 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3404____closed__9; +x_233 = lean_array_push(x_232, x_231); +x_234 = l_Lean_myMacro____x40_Init_Notation___hyg_12778____closed__11; +x_235 = lean_array_push(x_233, x_234); +x_236 = l_Lean_nullKind___closed__2; +x_237 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_237, 0, x_236); +lean_ctor_set(x_237, 1, x_235); +x_238 = lean_array_get_size(x_25); +x_239 = lean_usize_of_nat(x_238); +lean_dec(x_238); +x_240 = 0; +x_241 = x_25; +x_242 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_2962____spec__3(x_239, x_240, x_241); +x_243 = x_242; +x_244 = l_Array_appendCore___rarg(x_221, x_243); +lean_dec(x_243); +x_245 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_245, 0, x_236); +lean_ctor_set(x_245, 1, x_244); +x_246 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__22; +x_247 = lean_array_push(x_246, x_39); +x_248 = l_myMacro____x40_Init_Notation___hyg_49____closed__16; x_249 = lean_array_push(x_247, x_248); -x_250 = l_Nat_repr(x_11); -x_251 = l_Lean_numLitKind; -x_252 = l_Lean_instInhabitedSourceInfo___closed__1; -x_253 = l_Lean_Syntax_mkLit(x_251, x_250, x_252); -x_254 = lean_array_push(x_249, x_253); -x_255 = l_Lean_Parser_Command_parserKindPrio___elambda__1___closed__2; -x_256 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_256, 0, x_255); -lean_ctor_set(x_256, 1, x_254); -x_257 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3404____closed__9; -x_258 = lean_array_push(x_257, x_256); -x_259 = l_Lean_myMacro____x40_Init_Notation___hyg_12778____closed__11; -x_260 = lean_array_push(x_258, x_259); +x_250 = l_Lean_Parser_Term_quot___elambda__1___closed__1; +x_251 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_251, 0, x_250); +lean_ctor_set(x_251, 1, x_249); +x_252 = lean_array_push(x_221, x_251); +x_253 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_253, 0, x_236); +lean_ctor_set(x_253, 1, x_252); +x_254 = lean_array_push(x_221, x_253); +x_255 = l_myMacro____x40_Init_Notation___hyg_10790____closed__17; +x_256 = lean_array_push(x_254, x_255); +x_257 = lean_array_push(x_256, x_214); +x_258 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +x_259 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_259, 0, x_258); +lean_ctor_set(x_259, 1, x_257); +x_260 = lean_array_push(x_221, x_259); x_261 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_261, 0, x_242); +lean_ctor_set(x_261, 0, x_236); lean_ctor_set(x_261, 1, x_260); -x_262 = lean_array_push(x_245, x_261); -x_263 = l_Array_appendCore___rarg(x_240, x_25); -lean_dec(x_25); -x_264 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_264, 0, x_242); -lean_ctor_set(x_264, 1, x_263); -x_265 = lean_array_push(x_262, x_264); -x_266 = l_myMacro____x40_Init_Notation___hyg_11918____closed__10; -x_267 = lean_array_push(x_265, x_266); -x_268 = lean_array_push(x_267, x_18); -x_269 = l_Lean_Parser_Command_syntax___elambda__1___closed__1; -x_270 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_270, 0, x_269); -lean_ctor_set(x_270, 1, x_268); -x_271 = lean_array_push(x_240, x_270); -x_272 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__22; -x_273 = lean_array_push(x_272, x_39); -x_274 = l_myMacro____x40_Init_Notation___hyg_49____closed__16; -x_275 = lean_array_push(x_273, x_274); -x_276 = l_Lean_Parser_Term_quot___elambda__1___closed__1; +x_262 = l_Lean_Elab_Term_expandFunBinders_loop___closed__10; +x_263 = lean_array_push(x_262, x_261); +x_264 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_265 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_265, 0, x_264); +lean_ctor_set(x_265, 1, x_263); +x_266 = l_Lean_Elab_Command_expandMacro___closed__2; +x_267 = lean_array_push(x_266, x_265); +x_268 = l_Lean_Parser_Command_macro__rules___elambda__1___closed__2; +x_269 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_269, 0, x_268); +lean_ctor_set(x_269, 1, x_267); +if (lean_obj_tag(x_8) == 0) +{ +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; +x_270 = l_Lean_Elab_Command_expandMacro___closed__3; +x_271 = lean_array_push(x_270, x_237); +x_272 = lean_array_push(x_271, x_245); +x_273 = l_myMacro____x40_Init_Notation___hyg_11918____closed__10; +x_274 = lean_array_push(x_272, x_273); +x_275 = lean_array_push(x_274, x_18); +x_276 = l_Lean_Parser_Command_syntax___elambda__1___closed__1; x_277 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_277, 0, x_276); lean_ctor_set(x_277, 1, x_275); -x_278 = lean_array_push(x_240, x_277); -x_279 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_279, 0, x_242); -lean_ctor_set(x_279, 1, x_278); -x_280 = lean_array_push(x_240, x_279); -x_281 = l_myMacro____x40_Init_Notation___hyg_10790____closed__17; -x_282 = lean_array_push(x_280, x_281); -x_283 = lean_array_push(x_282, x_175); -x_284 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; -x_285 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_285, 0, x_284); -lean_ctor_set(x_285, 1, x_283); -x_286 = lean_array_push(x_240, x_285); -x_287 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_287, 0, x_242); -lean_ctor_set(x_287, 1, x_286); -x_288 = l_Lean_Elab_Term_expandFunBinders_loop___closed__10; -x_289 = lean_array_push(x_288, x_287); -x_290 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; -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 = l_Lean_Elab_Command_expandMacro___closed__2; -x_293 = lean_array_push(x_292, x_291); -x_294 = l_Lean_Parser_Command_macro__rules___elambda__1___closed__2; -x_295 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_295, 0, x_294); -lean_ctor_set(x_295, 1, x_293); -x_296 = lean_array_push(x_271, x_295); -x_297 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_297, 0, x_242); -lean_ctor_set(x_297, 1, x_296); -x_298 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_298, 0, x_297); -lean_ctor_set(x_298, 1, x_239); -return x_298; +x_278 = lean_array_push(x_221, x_277); +x_279 = lean_array_push(x_278, x_269); +x_280 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_280, 0, x_236); +lean_ctor_set(x_280, 1, x_279); +lean_ctor_set(x_217, 0, x_280); +return x_217; +} +else +{ +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; +x_281 = lean_ctor_get(x_8, 0); +lean_inc(x_281); +lean_dec(x_8); +x_282 = lean_array_push(x_221, x_281); +x_283 = l_Array_appendCore___rarg(x_221, x_282); +lean_dec(x_282); +x_284 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_284, 0, x_236); +lean_ctor_set(x_284, 1, x_283); +x_285 = l_Lean_Elab_Command_expandMacro___closed__1; +x_286 = lean_array_push(x_285, x_284); +x_287 = lean_array_push(x_286, x_237); +x_288 = lean_array_push(x_287, x_245); +x_289 = l_myMacro____x40_Init_Notation___hyg_11918____closed__10; +x_290 = lean_array_push(x_288, x_289); +x_291 = lean_array_push(x_290, x_18); +x_292 = l_Lean_Parser_Command_syntax___elambda__1___closed__1; +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_221, x_293); +x_295 = lean_array_push(x_294, x_269); +x_296 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_296, 0, x_236); +lean_ctor_set(x_296, 1, x_295); +lean_ctor_set(x_217, 0, x_296); +return x_217; +} +} +else +{ +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; size_t x_317; size_t 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; +x_297 = lean_ctor_get(x_217, 1); +lean_inc(x_297); +lean_dec(x_217); +x_298 = l_Lean_mkIdentFrom(x_2, x_30); +x_299 = l_Array_empty___closed__1; +x_300 = lean_array_push(x_299, x_298); +x_301 = l_myMacro____x40_Init_Notation___hyg_376____closed__8; +x_302 = lean_array_push(x_300, x_301); +x_303 = l_Nat_repr(x_11); +x_304 = l_Lean_numLitKind; +x_305 = l_Lean_instInhabitedSourceInfo___closed__1; +x_306 = l_Lean_Syntax_mkLit(x_304, x_303, x_305); +x_307 = lean_array_push(x_302, x_306); +x_308 = l_Lean_Parser_Command_parserKindPrio___elambda__1___closed__2; +x_309 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_309, 0, x_308); +lean_ctor_set(x_309, 1, x_307); +x_310 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3404____closed__9; +x_311 = lean_array_push(x_310, x_309); +x_312 = l_Lean_myMacro____x40_Init_Notation___hyg_12778____closed__11; +x_313 = lean_array_push(x_311, x_312); +x_314 = l_Lean_nullKind___closed__2; +x_315 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_315, 0, x_314); +lean_ctor_set(x_315, 1, x_313); +x_316 = lean_array_get_size(x_25); +x_317 = lean_usize_of_nat(x_316); +lean_dec(x_316); +x_318 = 0; +x_319 = x_25; +x_320 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_2962____spec__3(x_317, x_318, x_319); +x_321 = x_320; +x_322 = l_Array_appendCore___rarg(x_299, x_321); +lean_dec(x_321); +x_323 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_323, 0, x_314); +lean_ctor_set(x_323, 1, x_322); +x_324 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__22; +x_325 = lean_array_push(x_324, x_39); +x_326 = l_myMacro____x40_Init_Notation___hyg_49____closed__16; +x_327 = lean_array_push(x_325, x_326); +x_328 = l_Lean_Parser_Term_quot___elambda__1___closed__1; +x_329 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_329, 0, x_328); +lean_ctor_set(x_329, 1, x_327); +x_330 = lean_array_push(x_299, x_329); +x_331 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_331, 0, x_314); +lean_ctor_set(x_331, 1, x_330); +x_332 = lean_array_push(x_299, x_331); +x_333 = l_myMacro____x40_Init_Notation___hyg_10790____closed__17; +x_334 = lean_array_push(x_332, x_333); +x_335 = lean_array_push(x_334, x_214); +x_336 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +x_337 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_337, 0, x_336); +lean_ctor_set(x_337, 1, x_335); +x_338 = lean_array_push(x_299, x_337); +x_339 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_339, 0, x_314); +lean_ctor_set(x_339, 1, x_338); +x_340 = l_Lean_Elab_Term_expandFunBinders_loop___closed__10; +x_341 = lean_array_push(x_340, x_339); +x_342 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_343 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_343, 0, x_342); +lean_ctor_set(x_343, 1, x_341); +x_344 = l_Lean_Elab_Command_expandMacro___closed__2; +x_345 = lean_array_push(x_344, x_343); +x_346 = l_Lean_Parser_Command_macro__rules___elambda__1___closed__2; +x_347 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_347, 0, x_346); +lean_ctor_set(x_347, 1, x_345); +if (lean_obj_tag(x_8) == 0) +{ +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; +x_348 = l_Lean_Elab_Command_expandMacro___closed__3; +x_349 = lean_array_push(x_348, x_315); +x_350 = lean_array_push(x_349, x_323); +x_351 = l_myMacro____x40_Init_Notation___hyg_11918____closed__10; +x_352 = lean_array_push(x_350, x_351); +x_353 = lean_array_push(x_352, x_18); +x_354 = l_Lean_Parser_Command_syntax___elambda__1___closed__1; +x_355 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_355, 0, x_354); +lean_ctor_set(x_355, 1, x_353); +x_356 = lean_array_push(x_299, x_355); +x_357 = lean_array_push(x_356, x_347); +x_358 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_358, 0, x_314); +lean_ctor_set(x_358, 1, x_357); +x_359 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_359, 0, x_358); +lean_ctor_set(x_359, 1, x_297); +return x_359; +} +else +{ +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; +x_360 = lean_ctor_get(x_8, 0); +lean_inc(x_360); +lean_dec(x_8); +x_361 = lean_array_push(x_299, x_360); +x_362 = l_Array_appendCore___rarg(x_299, x_361); +lean_dec(x_361); +x_363 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_363, 0, x_314); +lean_ctor_set(x_363, 1, x_362); +x_364 = l_Lean_Elab_Command_expandMacro___closed__1; +x_365 = lean_array_push(x_364, x_363); +x_366 = lean_array_push(x_365, x_315); +x_367 = lean_array_push(x_366, x_323); +x_368 = l_myMacro____x40_Init_Notation___hyg_11918____closed__10; +x_369 = lean_array_push(x_367, x_368); +x_370 = lean_array_push(x_369, x_18); +x_371 = l_Lean_Parser_Command_syntax___elambda__1___closed__1; +x_372 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_372, 0, x_371); +lean_ctor_set(x_372, 1, x_370); +x_373 = lean_array_push(x_299, x_372); +x_374 = lean_array_push(x_373, x_347); +x_375 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_375, 0, x_314); +lean_ctor_set(x_375, 1, x_374); +x_376 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_376, 0, x_375); +lean_ctor_set(x_376, 1, x_297); +return x_376; +} } } } @@ -30178,7 +30431,7 @@ x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; } } -static lean_object* _init_l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_17724____closed__1() { +static lean_object* _init_l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_17791____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -30188,11 +30441,11 @@ x_3 = lean_name_mk_string(x_1, x_2); return x_3; } } -lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_17724_(lean_object* x_1) { +lean_object* l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_17791_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; -x_2 = l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_17724____closed__1; +x_2 = l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_17791____closed__1; x_3 = l_Lean_registerTraceClass(x_2, x_1); return x_3; } @@ -30328,6 +30581,130 @@ return x_20; } } } +lean_object* l_Lean_Elab_Command_expandElab_match__1___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_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_ctor_get(x_1, 0); +lean_inc(x_6); +lean_dec(x_1); +x_7 = lean_apply_1(x_2, x_6); +return x_7; +} +} +} +lean_object* l_Lean_Elab_Command_expandElab_match__1(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l_Lean_Elab_Command_expandElab_match__1___rarg), 3, 0); +return x_2; +} +} +lean_object* l_Lean_Elab_Command_expandElab_match__2___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_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_ctor_get(x_1, 0); +lean_inc(x_6); +lean_dec(x_1); +x_7 = lean_apply_1(x_2, x_6); +return x_7; +} +} +} +lean_object* l_Lean_Elab_Command_expandElab_match__2(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l_Lean_Elab_Command_expandElab_match__2___rarg), 3, 0); +return x_2; +} +} +lean_object* l_Lean_Elab_Command_expandElab_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_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_ctor_get(x_1, 0); +lean_inc(x_6); +lean_dec(x_1); +x_7 = lean_apply_1(x_2, x_6); +return x_7; +} +} +} +lean_object* l_Lean_Elab_Command_expandElab_match__3(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l_Lean_Elab_Command_expandElab_match__3___rarg), 3, 0); +return x_2; +} +} +lean_object* l_Lean_Elab_Command_expandElab_match__4___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_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_ctor_get(x_1, 0); +lean_inc(x_6); +lean_dec(x_1); +x_7 = lean_apply_1(x_2, x_6); +return x_7; +} +} +} +lean_object* l_Lean_Elab_Command_expandElab_match__4(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l_Lean_Elab_Command_expandElab_match__4___rarg), 3, 0); +return x_2; +} +} static lean_object* _init_l_Lean_Elab_Command_expandElab___closed__1() { _start: { @@ -30900,10 +31277,10 @@ return x_2; lean_object* l_Lean_Elab_Command_expandElab(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { -lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_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_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_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; x_6 = lean_unsigned_to_nat(1u); x_7 = l_Lean_Syntax_getArg(x_2, x_6); -x_8 = l_Lean_Syntax_getArgs(x_7); +x_8 = l_Lean_Syntax_getOptional_x3f(x_7); lean_dec(x_7); x_9 = lean_unsigned_to_nat(2u); x_10 = l_Lean_Syntax_getArg(x_2, x_9); @@ -30922,127 +31299,127 @@ x_20 = l_Lean_Syntax_getArg(x_2, x_19); x_21 = lean_unsigned_to_nat(9u); x_22 = l_Lean_Syntax_getArg(x_2, x_21); x_23 = l_Lean_Syntax_getId(x_18); -x_1502 = lean_st_ref_get(x_4, x_5); -x_1503 = lean_ctor_get(x_1502, 0); -lean_inc(x_1503); -x_1504 = lean_ctor_get(x_1502, 1); -lean_inc(x_1504); -lean_dec(x_1502); -x_1505 = lean_ctor_get(x_1503, 0); -lean_inc(x_1505); -lean_dec(x_1503); -x_1506 = l_Lean_Elab_Command_getRef(x_3, x_4, x_1504); -x_1507 = lean_ctor_get(x_1506, 0); -lean_inc(x_1507); -x_1508 = lean_ctor_get(x_1506, 1); -lean_inc(x_1508); -lean_dec(x_1506); -x_1509 = l_Lean_Elab_Command_getCurrMacroScope(x_3, x_4, x_1508); -x_1510 = lean_ctor_get(x_1509, 0); -lean_inc(x_1510); -x_1511 = lean_ctor_get(x_1509, 1); -lean_inc(x_1511); -lean_dec(x_1509); -x_1512 = lean_ctor_get(x_3, 2); -lean_inc(x_1512); -x_1513 = lean_st_ref_get(x_4, x_1511); -x_1514 = lean_ctor_get(x_1513, 0); -lean_inc(x_1514); -x_1515 = lean_ctor_get(x_1513, 1); -lean_inc(x_1515); -lean_dec(x_1513); -x_1516 = lean_ctor_get(x_1514, 4); -lean_inc(x_1516); -lean_dec(x_1514); -x_1517 = lean_st_ref_get(x_4, x_1515); -x_1518 = lean_ctor_get(x_1517, 0); -lean_inc(x_1518); -x_1519 = lean_ctor_get(x_1517, 1); -lean_inc(x_1519); -lean_dec(x_1517); -x_1520 = lean_ctor_get(x_1518, 3); -lean_inc(x_1520); -lean_dec(x_1518); -lean_inc(x_1505); -x_1521 = lean_alloc_closure((void*)(l___private_Lean_Elab_Util_0__Lean_Elab_expandMacro_x3f___boxed), 4, 1); -lean_closure_set(x_1521, 0, x_1505); -x_1522 = x_1521; -x_1523 = lean_environment_main_module(x_1505); -x_1524 = lean_alloc_ctor(0, 6, 0); -lean_ctor_set(x_1524, 0, x_1522); -lean_ctor_set(x_1524, 1, x_1523); -lean_ctor_set(x_1524, 2, x_1510); -lean_ctor_set(x_1524, 3, x_1512); -lean_ctor_set(x_1524, 4, x_1516); -lean_ctor_set(x_1524, 5, x_1507); +x_1658 = lean_st_ref_get(x_4, x_5); +x_1659 = lean_ctor_get(x_1658, 0); +lean_inc(x_1659); +x_1660 = lean_ctor_get(x_1658, 1); +lean_inc(x_1660); +lean_dec(x_1658); +x_1661 = lean_ctor_get(x_1659, 0); +lean_inc(x_1661); +lean_dec(x_1659); +x_1662 = l_Lean_Elab_Command_getRef(x_3, x_4, x_1660); +x_1663 = lean_ctor_get(x_1662, 0); +lean_inc(x_1663); +x_1664 = lean_ctor_get(x_1662, 1); +lean_inc(x_1664); +lean_dec(x_1662); +x_1665 = l_Lean_Elab_Command_getCurrMacroScope(x_3, x_4, x_1664); +x_1666 = lean_ctor_get(x_1665, 0); +lean_inc(x_1666); +x_1667 = lean_ctor_get(x_1665, 1); +lean_inc(x_1667); +lean_dec(x_1665); +x_1668 = lean_ctor_get(x_3, 2); +lean_inc(x_1668); +x_1669 = lean_st_ref_get(x_4, x_1667); +x_1670 = lean_ctor_get(x_1669, 0); +lean_inc(x_1670); +x_1671 = lean_ctor_get(x_1669, 1); +lean_inc(x_1671); +lean_dec(x_1669); +x_1672 = lean_ctor_get(x_1670, 4); +lean_inc(x_1672); +lean_dec(x_1670); +x_1673 = lean_st_ref_get(x_4, x_1671); +x_1674 = lean_ctor_get(x_1673, 0); +lean_inc(x_1674); +x_1675 = lean_ctor_get(x_1673, 1); +lean_inc(x_1675); +lean_dec(x_1673); +x_1676 = lean_ctor_get(x_1674, 3); +lean_inc(x_1676); +lean_dec(x_1674); +lean_inc(x_1661); +x_1677 = lean_alloc_closure((void*)(l___private_Lean_Elab_Util_0__Lean_Elab_expandMacro_x3f___boxed), 4, 1); +lean_closure_set(x_1677, 0, x_1661); +x_1678 = x_1677; +x_1679 = lean_environment_main_module(x_1661); +x_1680 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_1680, 0, x_1678); +lean_ctor_set(x_1680, 1, x_1679); +lean_ctor_set(x_1680, 2, x_1666); +lean_ctor_set(x_1680, 3, x_1668); +lean_ctor_set(x_1680, 4, x_1672); +lean_ctor_set(x_1680, 5, x_1663); lean_inc(x_13); -x_1525 = l_Lean_Elab_Command_expandMacroArgIntoSyntaxItem(x_13, x_1524, x_1520); -lean_dec(x_1524); -if (lean_obj_tag(x_1525) == 0) +x_1681 = l_Lean_Elab_Command_expandMacroArgIntoSyntaxItem(x_13, x_1680, x_1676); +lean_dec(x_1680); +if (lean_obj_tag(x_1681) == 0) { -lean_object* x_1526; lean_object* x_1527; lean_object* x_1528; lean_object* x_1529; lean_object* x_1530; uint8_t x_1531; -x_1526 = lean_ctor_get(x_1525, 0); -lean_inc(x_1526); -x_1527 = lean_ctor_get(x_1525, 1); -lean_inc(x_1527); -lean_dec(x_1525); -x_1528 = lean_st_ref_take(x_4, x_1519); -x_1529 = lean_ctor_get(x_1528, 0); -lean_inc(x_1529); -x_1530 = lean_ctor_get(x_1528, 1); -lean_inc(x_1530); -lean_dec(x_1528); -x_1531 = !lean_is_exclusive(x_1529); -if (x_1531 == 0) +lean_object* x_1682; lean_object* x_1683; lean_object* x_1684; lean_object* x_1685; lean_object* x_1686; uint8_t x_1687; +x_1682 = lean_ctor_get(x_1681, 0); +lean_inc(x_1682); +x_1683 = lean_ctor_get(x_1681, 1); +lean_inc(x_1683); +lean_dec(x_1681); +x_1684 = lean_st_ref_take(x_4, x_1675); +x_1685 = lean_ctor_get(x_1684, 0); +lean_inc(x_1685); +x_1686 = lean_ctor_get(x_1684, 1); +lean_inc(x_1686); +lean_dec(x_1684); +x_1687 = !lean_is_exclusive(x_1685); +if (x_1687 == 0) { -lean_object* x_1532; lean_object* x_1533; lean_object* x_1534; -x_1532 = lean_ctor_get(x_1529, 3); -lean_dec(x_1532); -lean_ctor_set(x_1529, 3, x_1527); -x_1533 = lean_st_ref_set(x_4, x_1529, x_1530); -x_1534 = lean_ctor_get(x_1533, 1); -lean_inc(x_1534); -lean_dec(x_1533); -x_24 = x_1526; -x_25 = x_1534; -goto block_1501; +lean_object* x_1688; lean_object* x_1689; lean_object* x_1690; +x_1688 = lean_ctor_get(x_1685, 3); +lean_dec(x_1688); +lean_ctor_set(x_1685, 3, x_1683); +x_1689 = lean_st_ref_set(x_4, x_1685, x_1686); +x_1690 = lean_ctor_get(x_1689, 1); +lean_inc(x_1690); +lean_dec(x_1689); +x_24 = x_1682; +x_25 = x_1690; +goto block_1657; } else { -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; -x_1535 = lean_ctor_get(x_1529, 0); -x_1536 = lean_ctor_get(x_1529, 1); -x_1537 = lean_ctor_get(x_1529, 2); -x_1538 = lean_ctor_get(x_1529, 4); -x_1539 = lean_ctor_get(x_1529, 5); -x_1540 = lean_ctor_get(x_1529, 6); -lean_inc(x_1540); -lean_inc(x_1539); -lean_inc(x_1538); -lean_inc(x_1537); -lean_inc(x_1536); -lean_inc(x_1535); -lean_dec(x_1529); -x_1541 = lean_alloc_ctor(0, 7, 0); -lean_ctor_set(x_1541, 0, x_1535); -lean_ctor_set(x_1541, 1, x_1536); -lean_ctor_set(x_1541, 2, x_1537); -lean_ctor_set(x_1541, 3, x_1527); -lean_ctor_set(x_1541, 4, x_1538); -lean_ctor_set(x_1541, 5, x_1539); -lean_ctor_set(x_1541, 6, x_1540); -x_1542 = lean_st_ref_set(x_4, x_1541, x_1530); -x_1543 = lean_ctor_get(x_1542, 1); -lean_inc(x_1543); -lean_dec(x_1542); -x_24 = x_1526; -x_25 = x_1543; -goto block_1501; +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; lean_object* x_1699; +x_1691 = lean_ctor_get(x_1685, 0); +x_1692 = lean_ctor_get(x_1685, 1); +x_1693 = lean_ctor_get(x_1685, 2); +x_1694 = lean_ctor_get(x_1685, 4); +x_1695 = lean_ctor_get(x_1685, 5); +x_1696 = lean_ctor_get(x_1685, 6); +lean_inc(x_1696); +lean_inc(x_1695); +lean_inc(x_1694); +lean_inc(x_1693); +lean_inc(x_1692); +lean_inc(x_1691); +lean_dec(x_1685); +x_1697 = lean_alloc_ctor(0, 7, 0); +lean_ctor_set(x_1697, 0, x_1691); +lean_ctor_set(x_1697, 1, x_1692); +lean_ctor_set(x_1697, 2, x_1693); +lean_ctor_set(x_1697, 3, x_1683); +lean_ctor_set(x_1697, 4, x_1694); +lean_ctor_set(x_1697, 5, x_1695); +lean_ctor_set(x_1697, 6, x_1696); +x_1698 = lean_st_ref_set(x_4, x_1697, x_1686); +x_1699 = lean_ctor_get(x_1698, 1); +lean_inc(x_1699); +lean_dec(x_1698); +x_24 = x_1682; +x_25 = x_1699; +goto block_1657; } } else { -lean_object* x_1544; +lean_object* x_1700; lean_dec(x_23); lean_dec(x_22); lean_dec(x_20); @@ -31051,201 +31428,201 @@ lean_dec(x_16); lean_dec(x_13); lean_dec(x_11); lean_dec(x_8); -x_1544 = lean_ctor_get(x_1525, 0); -lean_inc(x_1544); -lean_dec(x_1525); -if (lean_obj_tag(x_1544) == 0) +x_1700 = lean_ctor_get(x_1681, 0); +lean_inc(x_1700); +lean_dec(x_1681); +if (lean_obj_tag(x_1700) == 0) { -lean_object* x_1545; lean_object* x_1546; lean_object* x_1547; lean_object* x_1548; lean_object* x_1549; uint8_t x_1550; -x_1545 = lean_ctor_get(x_1544, 0); -lean_inc(x_1545); -x_1546 = lean_ctor_get(x_1544, 1); -lean_inc(x_1546); -lean_dec(x_1544); -x_1547 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_1547, 0, x_1546); -x_1548 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_1548, 0, x_1547); -x_1549 = l_Lean_throwErrorAt___at_Lean_Elab_Command_elabCommand___spec__7___rarg(x_1545, x_1548, x_3, x_4, x_1519); -lean_dec(x_1545); -x_1550 = !lean_is_exclusive(x_1549); -if (x_1550 == 0) +lean_object* x_1701; lean_object* x_1702; lean_object* x_1703; lean_object* x_1704; lean_object* x_1705; uint8_t x_1706; +x_1701 = lean_ctor_get(x_1700, 0); +lean_inc(x_1701); +x_1702 = lean_ctor_get(x_1700, 1); +lean_inc(x_1702); +lean_dec(x_1700); +x_1703 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_1703, 0, x_1702); +x_1704 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_1704, 0, x_1703); +x_1705 = l_Lean_throwErrorAt___at_Lean_Elab_Command_elabCommand___spec__7___rarg(x_1701, x_1704, x_3, x_4, x_1675); +lean_dec(x_1701); +x_1706 = !lean_is_exclusive(x_1705); +if (x_1706 == 0) { -return x_1549; +return x_1705; } else { -lean_object* x_1551; lean_object* x_1552; lean_object* x_1553; -x_1551 = lean_ctor_get(x_1549, 0); -x_1552 = lean_ctor_get(x_1549, 1); -lean_inc(x_1552); -lean_inc(x_1551); -lean_dec(x_1549); -x_1553 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1553, 0, x_1551); -lean_ctor_set(x_1553, 1, x_1552); -return x_1553; +lean_object* x_1707; lean_object* x_1708; lean_object* x_1709; +x_1707 = lean_ctor_get(x_1705, 0); +x_1708 = lean_ctor_get(x_1705, 1); +lean_inc(x_1708); +lean_inc(x_1707); +lean_dec(x_1705); +x_1709 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1709, 0, x_1707); +lean_ctor_set(x_1709, 1, x_1708); +return x_1709; } } else { -lean_object* x_1554; uint8_t x_1555; +lean_object* x_1710; uint8_t x_1711; lean_dec(x_3); -x_1554 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabCommand___spec__8___rarg(x_1519); -x_1555 = !lean_is_exclusive(x_1554); -if (x_1555 == 0) +x_1710 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabCommand___spec__8___rarg(x_1675); +x_1711 = !lean_is_exclusive(x_1710); +if (x_1711 == 0) { -return x_1554; +return x_1710; } else { -lean_object* x_1556; lean_object* x_1557; lean_object* x_1558; -x_1556 = lean_ctor_get(x_1554, 0); -x_1557 = lean_ctor_get(x_1554, 1); -lean_inc(x_1557); -lean_inc(x_1556); -lean_dec(x_1554); -x_1558 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1558, 0, x_1556); -lean_ctor_set(x_1558, 1, x_1557); -return x_1558; +lean_object* x_1712; lean_object* x_1713; lean_object* x_1714; +x_1712 = lean_ctor_get(x_1710, 0); +x_1713 = lean_ctor_get(x_1710, 1); +lean_inc(x_1713); +lean_inc(x_1712); +lean_dec(x_1710); +x_1714 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1714, 0, x_1712); +lean_ctor_set(x_1714, 1, x_1713); +return x_1714; } } } -block_1501: +block_1657: { -lean_object* x_26; lean_object* x_27; lean_object* x_1437; size_t 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; 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; -x_1437 = lean_array_get_size(x_16); -x_1438 = lean_usize_of_nat(x_1437); -lean_dec(x_1437); +lean_object* x_26; lean_object* x_27; lean_object* x_1593; size_t 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; +x_1593 = lean_array_get_size(x_16); +x_1594 = lean_usize_of_nat(x_1593); +lean_dec(x_1593); lean_inc(x_16); -x_1439 = x_16; -x_1440 = lean_box_usize(x_1438); -x_1441 = l_Lean_Elab_Command_expandElab___boxed__const__1; -x_1442 = lean_alloc_closure((void*)(l_Array_mapMUnsafe_map___at_Lean_Elab_Command_expandMacro___spec__3___boxed), 5, 3); -lean_closure_set(x_1442, 0, x_1440); -lean_closure_set(x_1442, 1, x_1441); -lean_closure_set(x_1442, 2, x_1439); -x_1443 = lean_st_ref_get(x_4, x_25); -x_1444 = lean_ctor_get(x_1443, 0); -lean_inc(x_1444); -x_1445 = lean_ctor_get(x_1443, 1); -lean_inc(x_1445); -lean_dec(x_1443); -x_1446 = lean_ctor_get(x_1444, 0); -lean_inc(x_1446); -lean_dec(x_1444); -x_1447 = l_Lean_Elab_Command_getRef(x_3, x_4, x_1445); -x_1448 = lean_ctor_get(x_1447, 0); -lean_inc(x_1448); -x_1449 = lean_ctor_get(x_1447, 1); -lean_inc(x_1449); -lean_dec(x_1447); -x_1450 = l_Lean_Elab_Command_getCurrMacroScope(x_3, x_4, x_1449); -x_1451 = lean_ctor_get(x_1450, 0); -lean_inc(x_1451); -x_1452 = lean_ctor_get(x_1450, 1); -lean_inc(x_1452); -lean_dec(x_1450); -x_1453 = lean_ctor_get(x_3, 2); -lean_inc(x_1453); -x_1454 = lean_st_ref_get(x_4, x_1452); -x_1455 = lean_ctor_get(x_1454, 0); -lean_inc(x_1455); -x_1456 = lean_ctor_get(x_1454, 1); -lean_inc(x_1456); -lean_dec(x_1454); -x_1457 = lean_ctor_get(x_1455, 4); -lean_inc(x_1457); -lean_dec(x_1455); -x_1458 = lean_st_ref_get(x_4, x_1456); -x_1459 = lean_ctor_get(x_1458, 0); -lean_inc(x_1459); -x_1460 = lean_ctor_get(x_1458, 1); -lean_inc(x_1460); -lean_dec(x_1458); -x_1461 = lean_ctor_get(x_1459, 3); -lean_inc(x_1461); -lean_dec(x_1459); -lean_inc(x_1446); -x_1462 = lean_alloc_closure((void*)(l___private_Lean_Elab_Util_0__Lean_Elab_expandMacro_x3f___boxed), 4, 1); -lean_closure_set(x_1462, 0, x_1446); -x_1463 = x_1462; -x_1464 = lean_environment_main_module(x_1446); -x_1465 = lean_alloc_ctor(0, 6, 0); -lean_ctor_set(x_1465, 0, x_1463); -lean_ctor_set(x_1465, 1, x_1464); -lean_ctor_set(x_1465, 2, x_1451); -lean_ctor_set(x_1465, 3, x_1453); -lean_ctor_set(x_1465, 4, x_1457); -lean_ctor_set(x_1465, 5, x_1448); -x_1466 = x_1442; -x_1467 = lean_apply_2(x_1466, x_1465, x_1461); -if (lean_obj_tag(x_1467) == 0) +x_1595 = x_16; +x_1596 = lean_box_usize(x_1594); +x_1597 = l_Lean_Elab_Command_expandElab___boxed__const__1; +x_1598 = lean_alloc_closure((void*)(l_Array_mapMUnsafe_map___at_Lean_Elab_Command_expandMacro___spec__3___boxed), 5, 3); +lean_closure_set(x_1598, 0, x_1596); +lean_closure_set(x_1598, 1, x_1597); +lean_closure_set(x_1598, 2, x_1595); +x_1599 = lean_st_ref_get(x_4, x_25); +x_1600 = lean_ctor_get(x_1599, 0); +lean_inc(x_1600); +x_1601 = lean_ctor_get(x_1599, 1); +lean_inc(x_1601); +lean_dec(x_1599); +x_1602 = lean_ctor_get(x_1600, 0); +lean_inc(x_1602); +lean_dec(x_1600); +x_1603 = l_Lean_Elab_Command_getRef(x_3, x_4, x_1601); +x_1604 = lean_ctor_get(x_1603, 0); +lean_inc(x_1604); +x_1605 = lean_ctor_get(x_1603, 1); +lean_inc(x_1605); +lean_dec(x_1603); +x_1606 = l_Lean_Elab_Command_getCurrMacroScope(x_3, x_4, x_1605); +x_1607 = lean_ctor_get(x_1606, 0); +lean_inc(x_1607); +x_1608 = lean_ctor_get(x_1606, 1); +lean_inc(x_1608); +lean_dec(x_1606); +x_1609 = lean_ctor_get(x_3, 2); +lean_inc(x_1609); +x_1610 = lean_st_ref_get(x_4, x_1608); +x_1611 = lean_ctor_get(x_1610, 0); +lean_inc(x_1611); +x_1612 = lean_ctor_get(x_1610, 1); +lean_inc(x_1612); +lean_dec(x_1610); +x_1613 = lean_ctor_get(x_1611, 4); +lean_inc(x_1613); +lean_dec(x_1611); +x_1614 = lean_st_ref_get(x_4, x_1612); +x_1615 = lean_ctor_get(x_1614, 0); +lean_inc(x_1615); +x_1616 = lean_ctor_get(x_1614, 1); +lean_inc(x_1616); +lean_dec(x_1614); +x_1617 = lean_ctor_get(x_1615, 3); +lean_inc(x_1617); +lean_dec(x_1615); +lean_inc(x_1602); +x_1618 = lean_alloc_closure((void*)(l___private_Lean_Elab_Util_0__Lean_Elab_expandMacro_x3f___boxed), 4, 1); +lean_closure_set(x_1618, 0, x_1602); +x_1619 = x_1618; +x_1620 = lean_environment_main_module(x_1602); +x_1621 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_1621, 0, x_1619); +lean_ctor_set(x_1621, 1, x_1620); +lean_ctor_set(x_1621, 2, x_1607); +lean_ctor_set(x_1621, 3, x_1609); +lean_ctor_set(x_1621, 4, x_1613); +lean_ctor_set(x_1621, 5, x_1604); +x_1622 = x_1598; +x_1623 = lean_apply_2(x_1622, x_1621, x_1617); +if (lean_obj_tag(x_1623) == 0) { -lean_object* x_1468; lean_object* x_1469; lean_object* x_1470; lean_object* x_1471; lean_object* x_1472; uint8_t x_1473; -x_1468 = lean_ctor_get(x_1467, 0); -lean_inc(x_1468); -x_1469 = lean_ctor_get(x_1467, 1); -lean_inc(x_1469); -lean_dec(x_1467); -x_1470 = lean_st_ref_take(x_4, x_1460); -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 = !lean_is_exclusive(x_1471); -if (x_1473 == 0) +lean_object* x_1624; lean_object* x_1625; lean_object* x_1626; lean_object* x_1627; lean_object* x_1628; uint8_t x_1629; +x_1624 = lean_ctor_get(x_1623, 0); +lean_inc(x_1624); +x_1625 = lean_ctor_get(x_1623, 1); +lean_inc(x_1625); +lean_dec(x_1623); +x_1626 = lean_st_ref_take(x_4, x_1616); +x_1627 = lean_ctor_get(x_1626, 0); +lean_inc(x_1627); +x_1628 = lean_ctor_get(x_1626, 1); +lean_inc(x_1628); +lean_dec(x_1626); +x_1629 = !lean_is_exclusive(x_1627); +if (x_1629 == 0) { -lean_object* x_1474; lean_object* x_1475; lean_object* x_1476; -x_1474 = lean_ctor_get(x_1471, 3); -lean_dec(x_1474); -lean_ctor_set(x_1471, 3, x_1469); -x_1475 = lean_st_ref_set(x_4, x_1471, x_1472); -x_1476 = lean_ctor_get(x_1475, 1); -lean_inc(x_1476); -lean_dec(x_1475); -x_26 = x_1468; -x_27 = x_1476; -goto block_1436; +lean_object* x_1630; lean_object* x_1631; lean_object* x_1632; +x_1630 = lean_ctor_get(x_1627, 3); +lean_dec(x_1630); +lean_ctor_set(x_1627, 3, x_1625); +x_1631 = lean_st_ref_set(x_4, x_1627, x_1628); +x_1632 = lean_ctor_get(x_1631, 1); +lean_inc(x_1632); +lean_dec(x_1631); +x_26 = x_1624; +x_27 = x_1632; +goto block_1592; } else { -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; -x_1477 = lean_ctor_get(x_1471, 0); -x_1478 = lean_ctor_get(x_1471, 1); -x_1479 = lean_ctor_get(x_1471, 2); -x_1480 = lean_ctor_get(x_1471, 4); -x_1481 = lean_ctor_get(x_1471, 5); -x_1482 = lean_ctor_get(x_1471, 6); -lean_inc(x_1482); -lean_inc(x_1481); -lean_inc(x_1480); -lean_inc(x_1479); -lean_inc(x_1478); -lean_inc(x_1477); -lean_dec(x_1471); -x_1483 = lean_alloc_ctor(0, 7, 0); -lean_ctor_set(x_1483, 0, x_1477); -lean_ctor_set(x_1483, 1, x_1478); -lean_ctor_set(x_1483, 2, x_1479); -lean_ctor_set(x_1483, 3, x_1469); -lean_ctor_set(x_1483, 4, x_1480); -lean_ctor_set(x_1483, 5, x_1481); -lean_ctor_set(x_1483, 6, x_1482); -x_1484 = lean_st_ref_set(x_4, x_1483, x_1472); -x_1485 = lean_ctor_get(x_1484, 1); -lean_inc(x_1485); -lean_dec(x_1484); -x_26 = x_1468; -x_27 = x_1485; -goto block_1436; +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; +x_1633 = lean_ctor_get(x_1627, 0); +x_1634 = lean_ctor_get(x_1627, 1); +x_1635 = lean_ctor_get(x_1627, 2); +x_1636 = lean_ctor_get(x_1627, 4); +x_1637 = lean_ctor_get(x_1627, 5); +x_1638 = lean_ctor_get(x_1627, 6); +lean_inc(x_1638); +lean_inc(x_1637); +lean_inc(x_1636); +lean_inc(x_1635); +lean_inc(x_1634); +lean_inc(x_1633); +lean_dec(x_1627); +x_1639 = lean_alloc_ctor(0, 7, 0); +lean_ctor_set(x_1639, 0, x_1633); +lean_ctor_set(x_1639, 1, x_1634); +lean_ctor_set(x_1639, 2, x_1635); +lean_ctor_set(x_1639, 3, x_1625); +lean_ctor_set(x_1639, 4, x_1636); +lean_ctor_set(x_1639, 5, x_1637); +lean_ctor_set(x_1639, 6, x_1638); +x_1640 = lean_st_ref_set(x_4, x_1639, x_1628); +x_1641 = lean_ctor_get(x_1640, 1); +lean_inc(x_1641); +lean_dec(x_1640); +x_26 = x_1624; +x_27 = x_1641; +goto block_1592; } } else { -lean_object* x_1486; +lean_object* x_1642; lean_dec(x_24); lean_dec(x_23); lean_dec(x_22); @@ -31255,70 +31632,70 @@ lean_dec(x_16); lean_dec(x_13); lean_dec(x_11); lean_dec(x_8); -x_1486 = lean_ctor_get(x_1467, 0); -lean_inc(x_1486); -lean_dec(x_1467); -if (lean_obj_tag(x_1486) == 0) +x_1642 = lean_ctor_get(x_1623, 0); +lean_inc(x_1642); +lean_dec(x_1623); +if (lean_obj_tag(x_1642) == 0) { -lean_object* x_1487; lean_object* x_1488; lean_object* x_1489; lean_object* x_1490; lean_object* x_1491; uint8_t x_1492; -x_1487 = lean_ctor_get(x_1486, 0); -lean_inc(x_1487); -x_1488 = lean_ctor_get(x_1486, 1); -lean_inc(x_1488); -lean_dec(x_1486); -x_1489 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_1489, 0, x_1488); -x_1490 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_1490, 0, x_1489); -x_1491 = l_Lean_throwErrorAt___at_Lean_Elab_Command_elabCommand___spec__7___rarg(x_1487, x_1490, x_3, x_4, x_1460); -lean_dec(x_1487); -x_1492 = !lean_is_exclusive(x_1491); -if (x_1492 == 0) +lean_object* x_1643; lean_object* x_1644; lean_object* x_1645; lean_object* x_1646; lean_object* x_1647; uint8_t x_1648; +x_1643 = lean_ctor_get(x_1642, 0); +lean_inc(x_1643); +x_1644 = lean_ctor_get(x_1642, 1); +lean_inc(x_1644); +lean_dec(x_1642); +x_1645 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_1645, 0, x_1644); +x_1646 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_1646, 0, x_1645); +x_1647 = l_Lean_throwErrorAt___at_Lean_Elab_Command_elabCommand___spec__7___rarg(x_1643, x_1646, x_3, x_4, x_1616); +lean_dec(x_1643); +x_1648 = !lean_is_exclusive(x_1647); +if (x_1648 == 0) { -return x_1491; +return x_1647; } else { -lean_object* x_1493; lean_object* x_1494; lean_object* x_1495; -x_1493 = lean_ctor_get(x_1491, 0); -x_1494 = lean_ctor_get(x_1491, 1); -lean_inc(x_1494); -lean_inc(x_1493); -lean_dec(x_1491); -x_1495 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1495, 0, x_1493); -lean_ctor_set(x_1495, 1, x_1494); -return x_1495; +lean_object* x_1649; lean_object* x_1650; lean_object* x_1651; +x_1649 = lean_ctor_get(x_1647, 0); +x_1650 = lean_ctor_get(x_1647, 1); +lean_inc(x_1650); +lean_inc(x_1649); +lean_dec(x_1647); +x_1651 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1651, 0, x_1649); +lean_ctor_set(x_1651, 1, x_1650); +return x_1651; } } else { -lean_object* x_1496; uint8_t x_1497; +lean_object* x_1652; uint8_t x_1653; lean_dec(x_3); -x_1496 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_expandMacro___spec__2___rarg(x_1460); -x_1497 = !lean_is_exclusive(x_1496); -if (x_1497 == 0) +x_1652 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_expandMacro___spec__2___rarg(x_1616); +x_1653 = !lean_is_exclusive(x_1652); +if (x_1653 == 0) { -return x_1496; +return x_1652; } else { -lean_object* x_1498; lean_object* x_1499; lean_object* x_1500; -x_1498 = lean_ctor_get(x_1496, 0); -x_1499 = lean_ctor_get(x_1496, 1); -lean_inc(x_1499); -lean_inc(x_1498); -lean_dec(x_1496); -x_1500 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1500, 0, x_1498); -lean_ctor_set(x_1500, 1, x_1499); -return x_1500; +lean_object* x_1654; lean_object* x_1655; lean_object* x_1656; +x_1654 = lean_ctor_get(x_1652, 0); +x_1655 = lean_ctor_get(x_1652, 1); +lean_inc(x_1655); +lean_inc(x_1654); +lean_dec(x_1652); +x_1656 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1656, 0, x_1654); +lean_ctor_set(x_1656, 1, x_1655); +return x_1656; } } } -block_1436: +block_1592: { -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_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_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_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; x_28 = l_Lean_mkOptionalNode___closed__2; x_29 = lean_array_push(x_28, x_24); x_30 = l_Array_append___rarg(x_29, x_26); @@ -31336,127 +31713,127 @@ lean_inc(x_34); x_35 = lean_ctor_get(x_33, 1); lean_inc(x_35); lean_dec(x_33); -x_1389 = lean_st_ref_get(x_4, x_35); -x_1390 = lean_ctor_get(x_1389, 0); -lean_inc(x_1390); -x_1391 = lean_ctor_get(x_1389, 1); -lean_inc(x_1391); -lean_dec(x_1389); -x_1392 = lean_ctor_get(x_1390, 0); -lean_inc(x_1392); -lean_dec(x_1390); -x_1393 = l_Lean_Elab_Command_getRef(x_3, x_4, x_1391); -x_1394 = lean_ctor_get(x_1393, 0); -lean_inc(x_1394); -x_1395 = lean_ctor_get(x_1393, 1); -lean_inc(x_1395); -lean_dec(x_1393); -x_1396 = l_Lean_Elab_Command_getCurrMacroScope(x_3, x_4, x_1395); -x_1397 = lean_ctor_get(x_1396, 0); -lean_inc(x_1397); -x_1398 = lean_ctor_get(x_1396, 1); -lean_inc(x_1398); -lean_dec(x_1396); -x_1399 = lean_ctor_get(x_3, 2); -lean_inc(x_1399); -x_1400 = lean_st_ref_get(x_4, x_1398); -x_1401 = lean_ctor_get(x_1400, 0); -lean_inc(x_1401); -x_1402 = lean_ctor_get(x_1400, 1); -lean_inc(x_1402); -lean_dec(x_1400); -x_1403 = lean_ctor_get(x_1401, 4); -lean_inc(x_1403); -lean_dec(x_1401); -x_1404 = lean_st_ref_get(x_4, x_1402); -x_1405 = lean_ctor_get(x_1404, 0); -lean_inc(x_1405); -x_1406 = lean_ctor_get(x_1404, 1); -lean_inc(x_1406); -lean_dec(x_1404); -x_1407 = lean_ctor_get(x_1405, 3); -lean_inc(x_1407); -lean_dec(x_1405); -lean_inc(x_1392); -x_1408 = lean_alloc_closure((void*)(l___private_Lean_Elab_Util_0__Lean_Elab_expandMacro_x3f___boxed), 4, 1); -lean_closure_set(x_1408, 0, x_1392); -x_1409 = x_1408; -x_1410 = lean_environment_main_module(x_1392); -x_1411 = lean_alloc_ctor(0, 6, 0); -lean_ctor_set(x_1411, 0, x_1409); -lean_ctor_set(x_1411, 1, x_1410); -lean_ctor_set(x_1411, 2, x_1397); -lean_ctor_set(x_1411, 3, x_1399); -lean_ctor_set(x_1411, 4, x_1403); -lean_ctor_set(x_1411, 5, x_1394); -x_1412 = l_Lean_Elab_Command_expandMacroArgIntoPattern(x_13, x_1411, x_1407); -lean_dec(x_1411); -if (lean_obj_tag(x_1412) == 0) +x_1545 = lean_st_ref_get(x_4, x_35); +x_1546 = lean_ctor_get(x_1545, 0); +lean_inc(x_1546); +x_1547 = lean_ctor_get(x_1545, 1); +lean_inc(x_1547); +lean_dec(x_1545); +x_1548 = lean_ctor_get(x_1546, 0); +lean_inc(x_1548); +lean_dec(x_1546); +x_1549 = l_Lean_Elab_Command_getRef(x_3, x_4, x_1547); +x_1550 = lean_ctor_get(x_1549, 0); +lean_inc(x_1550); +x_1551 = lean_ctor_get(x_1549, 1); +lean_inc(x_1551); +lean_dec(x_1549); +x_1552 = l_Lean_Elab_Command_getCurrMacroScope(x_3, x_4, x_1551); +x_1553 = lean_ctor_get(x_1552, 0); +lean_inc(x_1553); +x_1554 = lean_ctor_get(x_1552, 1); +lean_inc(x_1554); +lean_dec(x_1552); +x_1555 = lean_ctor_get(x_3, 2); +lean_inc(x_1555); +x_1556 = lean_st_ref_get(x_4, x_1554); +x_1557 = lean_ctor_get(x_1556, 0); +lean_inc(x_1557); +x_1558 = lean_ctor_get(x_1556, 1); +lean_inc(x_1558); +lean_dec(x_1556); +x_1559 = lean_ctor_get(x_1557, 4); +lean_inc(x_1559); +lean_dec(x_1557); +x_1560 = lean_st_ref_get(x_4, x_1558); +x_1561 = lean_ctor_get(x_1560, 0); +lean_inc(x_1561); +x_1562 = lean_ctor_get(x_1560, 1); +lean_inc(x_1562); +lean_dec(x_1560); +x_1563 = lean_ctor_get(x_1561, 3); +lean_inc(x_1563); +lean_dec(x_1561); +lean_inc(x_1548); +x_1564 = lean_alloc_closure((void*)(l___private_Lean_Elab_Util_0__Lean_Elab_expandMacro_x3f___boxed), 4, 1); +lean_closure_set(x_1564, 0, x_1548); +x_1565 = x_1564; +x_1566 = lean_environment_main_module(x_1548); +x_1567 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_1567, 0, x_1565); +lean_ctor_set(x_1567, 1, x_1566); +lean_ctor_set(x_1567, 2, x_1553); +lean_ctor_set(x_1567, 3, x_1555); +lean_ctor_set(x_1567, 4, x_1559); +lean_ctor_set(x_1567, 5, x_1550); +x_1568 = l_Lean_Elab_Command_expandMacroArgIntoPattern(x_13, x_1567, x_1563); +lean_dec(x_1567); +if (lean_obj_tag(x_1568) == 0) { -lean_object* x_1413; lean_object* x_1414; lean_object* x_1415; lean_object* x_1416; lean_object* x_1417; uint8_t x_1418; -x_1413 = lean_ctor_get(x_1412, 0); -lean_inc(x_1413); -x_1414 = lean_ctor_get(x_1412, 1); -lean_inc(x_1414); -lean_dec(x_1412); -x_1415 = lean_st_ref_take(x_4, x_1406); -x_1416 = lean_ctor_get(x_1415, 0); -lean_inc(x_1416); -x_1417 = lean_ctor_get(x_1415, 1); -lean_inc(x_1417); -lean_dec(x_1415); -x_1418 = !lean_is_exclusive(x_1416); -if (x_1418 == 0) +lean_object* x_1569; lean_object* x_1570; lean_object* x_1571; lean_object* x_1572; lean_object* x_1573; uint8_t x_1574; +x_1569 = lean_ctor_get(x_1568, 0); +lean_inc(x_1569); +x_1570 = lean_ctor_get(x_1568, 1); +lean_inc(x_1570); +lean_dec(x_1568); +x_1571 = lean_st_ref_take(x_4, x_1562); +x_1572 = lean_ctor_get(x_1571, 0); +lean_inc(x_1572); +x_1573 = lean_ctor_get(x_1571, 1); +lean_inc(x_1573); +lean_dec(x_1571); +x_1574 = !lean_is_exclusive(x_1572); +if (x_1574 == 0) { -lean_object* x_1419; lean_object* x_1420; lean_object* x_1421; -x_1419 = lean_ctor_get(x_1416, 3); -lean_dec(x_1419); -lean_ctor_set(x_1416, 3, x_1414); -x_1420 = lean_st_ref_set(x_4, x_1416, x_1417); -x_1421 = lean_ctor_get(x_1420, 1); -lean_inc(x_1421); -lean_dec(x_1420); -x_36 = x_1413; -x_37 = x_1421; -goto block_1388; +lean_object* x_1575; lean_object* x_1576; lean_object* x_1577; +x_1575 = lean_ctor_get(x_1572, 3); +lean_dec(x_1575); +lean_ctor_set(x_1572, 3, x_1570); +x_1576 = lean_st_ref_set(x_4, x_1572, x_1573); +x_1577 = lean_ctor_get(x_1576, 1); +lean_inc(x_1577); +lean_dec(x_1576); +x_36 = x_1569; +x_37 = x_1577; +goto block_1544; } else { -lean_object* x_1422; lean_object* x_1423; lean_object* x_1424; lean_object* x_1425; lean_object* x_1426; lean_object* x_1427; lean_object* x_1428; lean_object* x_1429; lean_object* x_1430; -x_1422 = lean_ctor_get(x_1416, 0); -x_1423 = lean_ctor_get(x_1416, 1); -x_1424 = lean_ctor_get(x_1416, 2); -x_1425 = lean_ctor_get(x_1416, 4); -x_1426 = lean_ctor_get(x_1416, 5); -x_1427 = lean_ctor_get(x_1416, 6); -lean_inc(x_1427); -lean_inc(x_1426); -lean_inc(x_1425); -lean_inc(x_1424); -lean_inc(x_1423); -lean_inc(x_1422); -lean_dec(x_1416); -x_1428 = lean_alloc_ctor(0, 7, 0); -lean_ctor_set(x_1428, 0, x_1422); -lean_ctor_set(x_1428, 1, x_1423); -lean_ctor_set(x_1428, 2, x_1424); -lean_ctor_set(x_1428, 3, x_1414); -lean_ctor_set(x_1428, 4, x_1425); -lean_ctor_set(x_1428, 5, x_1426); -lean_ctor_set(x_1428, 6, x_1427); -x_1429 = lean_st_ref_set(x_4, x_1428, x_1417); -x_1430 = lean_ctor_get(x_1429, 1); -lean_inc(x_1430); -lean_dec(x_1429); -x_36 = x_1413; -x_37 = x_1430; -goto block_1388; +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; lean_object* x_1586; +x_1578 = lean_ctor_get(x_1572, 0); +x_1579 = lean_ctor_get(x_1572, 1); +x_1580 = lean_ctor_get(x_1572, 2); +x_1581 = lean_ctor_get(x_1572, 4); +x_1582 = lean_ctor_get(x_1572, 5); +x_1583 = lean_ctor_get(x_1572, 6); +lean_inc(x_1583); +lean_inc(x_1582); +lean_inc(x_1581); +lean_inc(x_1580); +lean_inc(x_1579); +lean_inc(x_1578); +lean_dec(x_1572); +x_1584 = lean_alloc_ctor(0, 7, 0); +lean_ctor_set(x_1584, 0, x_1578); +lean_ctor_set(x_1584, 1, x_1579); +lean_ctor_set(x_1584, 2, x_1580); +lean_ctor_set(x_1584, 3, x_1570); +lean_ctor_set(x_1584, 4, x_1581); +lean_ctor_set(x_1584, 5, x_1582); +lean_ctor_set(x_1584, 6, x_1583); +x_1585 = lean_st_ref_set(x_4, x_1584, x_1573); +x_1586 = lean_ctor_get(x_1585, 1); +lean_inc(x_1586); +lean_dec(x_1585); +x_36 = x_1569; +x_37 = x_1586; +goto block_1544; } } else { -lean_object* x_1431; uint8_t x_1432; -lean_dec(x_1412); +lean_object* x_1587; uint8_t x_1588; +lean_dec(x_1568); lean_dec(x_34); lean_dec(x_30); lean_dec(x_23); @@ -31467,159 +31844,159 @@ lean_dec(x_16); lean_dec(x_11); lean_dec(x_8); lean_dec(x_3); -x_1431 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabCommand___spec__8___rarg(x_1406); -x_1432 = !lean_is_exclusive(x_1431); -if (x_1432 == 0) +x_1587 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_elabCommand___spec__8___rarg(x_1562); +x_1588 = !lean_is_exclusive(x_1587); +if (x_1588 == 0) { -return x_1431; +return x_1587; } else { -lean_object* x_1433; lean_object* x_1434; lean_object* x_1435; -x_1433 = lean_ctor_get(x_1431, 0); -x_1434 = lean_ctor_get(x_1431, 1); -lean_inc(x_1434); -lean_inc(x_1433); -lean_dec(x_1431); -x_1435 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1435, 0, x_1433); -lean_ctor_set(x_1435, 1, x_1434); -return x_1435; +lean_object* x_1589; lean_object* x_1590; lean_object* x_1591; +x_1589 = lean_ctor_get(x_1587, 0); +x_1590 = lean_ctor_get(x_1587, 1); +lean_inc(x_1590); +lean_inc(x_1589); +lean_dec(x_1587); +x_1591 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1591, 0, x_1589); +lean_ctor_set(x_1591, 1, x_1590); +return x_1591; } } -block_1388: +block_1544: { -lean_object* x_38; lean_object* x_39; lean_object* x_1324; size_t 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; -x_1324 = lean_array_get_size(x_16); -x_1325 = lean_usize_of_nat(x_1324); -lean_dec(x_1324); -x_1326 = x_16; -x_1327 = lean_box_usize(x_1325); -x_1328 = l_Lean_Elab_Command_expandElab___boxed__const__1; -x_1329 = lean_alloc_closure((void*)(l_Array_mapMUnsafe_map___at_Lean_Elab_Command_expandMacro___spec__1___boxed), 5, 3); -lean_closure_set(x_1329, 0, x_1327); -lean_closure_set(x_1329, 1, x_1328); -lean_closure_set(x_1329, 2, x_1326); -x_1330 = lean_st_ref_get(x_4, x_37); -x_1331 = lean_ctor_get(x_1330, 0); -lean_inc(x_1331); -x_1332 = lean_ctor_get(x_1330, 1); -lean_inc(x_1332); -lean_dec(x_1330); -x_1333 = lean_ctor_get(x_1331, 0); -lean_inc(x_1333); -lean_dec(x_1331); -x_1334 = l_Lean_Elab_Command_getRef(x_3, x_4, x_1332); -x_1335 = lean_ctor_get(x_1334, 0); -lean_inc(x_1335); -x_1336 = lean_ctor_get(x_1334, 1); -lean_inc(x_1336); -lean_dec(x_1334); -x_1337 = l_Lean_Elab_Command_getCurrMacroScope(x_3, x_4, x_1336); -x_1338 = lean_ctor_get(x_1337, 0); -lean_inc(x_1338); -x_1339 = lean_ctor_get(x_1337, 1); -lean_inc(x_1339); -lean_dec(x_1337); -x_1340 = lean_ctor_get(x_3, 2); -lean_inc(x_1340); -x_1341 = lean_st_ref_get(x_4, x_1339); -x_1342 = lean_ctor_get(x_1341, 0); -lean_inc(x_1342); -x_1343 = lean_ctor_get(x_1341, 1); -lean_inc(x_1343); -lean_dec(x_1341); -x_1344 = lean_ctor_get(x_1342, 4); -lean_inc(x_1344); -lean_dec(x_1342); -x_1345 = lean_st_ref_get(x_4, x_1343); -x_1346 = lean_ctor_get(x_1345, 0); -lean_inc(x_1346); -x_1347 = lean_ctor_get(x_1345, 1); -lean_inc(x_1347); -lean_dec(x_1345); -x_1348 = lean_ctor_get(x_1346, 3); -lean_inc(x_1348); -lean_dec(x_1346); -lean_inc(x_1333); -x_1349 = lean_alloc_closure((void*)(l___private_Lean_Elab_Util_0__Lean_Elab_expandMacro_x3f___boxed), 4, 1); -lean_closure_set(x_1349, 0, x_1333); -x_1350 = x_1349; -x_1351 = lean_environment_main_module(x_1333); -x_1352 = lean_alloc_ctor(0, 6, 0); -lean_ctor_set(x_1352, 0, x_1350); -lean_ctor_set(x_1352, 1, x_1351); -lean_ctor_set(x_1352, 2, x_1338); -lean_ctor_set(x_1352, 3, x_1340); -lean_ctor_set(x_1352, 4, x_1344); -lean_ctor_set(x_1352, 5, x_1335); -x_1353 = x_1329; -x_1354 = lean_apply_2(x_1353, x_1352, x_1348); -if (lean_obj_tag(x_1354) == 0) +lean_object* x_38; lean_object* x_39; lean_object* x_1480; size_t 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; +x_1480 = lean_array_get_size(x_16); +x_1481 = lean_usize_of_nat(x_1480); +lean_dec(x_1480); +x_1482 = x_16; +x_1483 = lean_box_usize(x_1481); +x_1484 = l_Lean_Elab_Command_expandElab___boxed__const__1; +x_1485 = lean_alloc_closure((void*)(l_Array_mapMUnsafe_map___at_Lean_Elab_Command_expandMacro___spec__1___boxed), 5, 3); +lean_closure_set(x_1485, 0, x_1483); +lean_closure_set(x_1485, 1, x_1484); +lean_closure_set(x_1485, 2, x_1482); +x_1486 = lean_st_ref_get(x_4, x_37); +x_1487 = lean_ctor_get(x_1486, 0); +lean_inc(x_1487); +x_1488 = lean_ctor_get(x_1486, 1); +lean_inc(x_1488); +lean_dec(x_1486); +x_1489 = lean_ctor_get(x_1487, 0); +lean_inc(x_1489); +lean_dec(x_1487); +x_1490 = l_Lean_Elab_Command_getRef(x_3, x_4, x_1488); +x_1491 = lean_ctor_get(x_1490, 0); +lean_inc(x_1491); +x_1492 = lean_ctor_get(x_1490, 1); +lean_inc(x_1492); +lean_dec(x_1490); +x_1493 = l_Lean_Elab_Command_getCurrMacroScope(x_3, x_4, x_1492); +x_1494 = lean_ctor_get(x_1493, 0); +lean_inc(x_1494); +x_1495 = lean_ctor_get(x_1493, 1); +lean_inc(x_1495); +lean_dec(x_1493); +x_1496 = lean_ctor_get(x_3, 2); +lean_inc(x_1496); +x_1497 = lean_st_ref_get(x_4, x_1495); +x_1498 = lean_ctor_get(x_1497, 0); +lean_inc(x_1498); +x_1499 = lean_ctor_get(x_1497, 1); +lean_inc(x_1499); +lean_dec(x_1497); +x_1500 = lean_ctor_get(x_1498, 4); +lean_inc(x_1500); +lean_dec(x_1498); +x_1501 = lean_st_ref_get(x_4, x_1499); +x_1502 = lean_ctor_get(x_1501, 0); +lean_inc(x_1502); +x_1503 = lean_ctor_get(x_1501, 1); +lean_inc(x_1503); +lean_dec(x_1501); +x_1504 = lean_ctor_get(x_1502, 3); +lean_inc(x_1504); +lean_dec(x_1502); +lean_inc(x_1489); +x_1505 = lean_alloc_closure((void*)(l___private_Lean_Elab_Util_0__Lean_Elab_expandMacro_x3f___boxed), 4, 1); +lean_closure_set(x_1505, 0, x_1489); +x_1506 = x_1505; +x_1507 = lean_environment_main_module(x_1489); +x_1508 = lean_alloc_ctor(0, 6, 0); +lean_ctor_set(x_1508, 0, x_1506); +lean_ctor_set(x_1508, 1, x_1507); +lean_ctor_set(x_1508, 2, x_1494); +lean_ctor_set(x_1508, 3, x_1496); +lean_ctor_set(x_1508, 4, x_1500); +lean_ctor_set(x_1508, 5, x_1491); +x_1509 = x_1485; +x_1510 = lean_apply_2(x_1509, x_1508, x_1504); +if (lean_obj_tag(x_1510) == 0) { -lean_object* x_1355; lean_object* x_1356; lean_object* x_1357; lean_object* x_1358; lean_object* x_1359; uint8_t x_1360; -x_1355 = lean_ctor_get(x_1354, 0); -lean_inc(x_1355); -x_1356 = lean_ctor_get(x_1354, 1); -lean_inc(x_1356); -lean_dec(x_1354); -x_1357 = lean_st_ref_take(x_4, x_1347); -x_1358 = lean_ctor_get(x_1357, 0); -lean_inc(x_1358); -x_1359 = lean_ctor_get(x_1357, 1); -lean_inc(x_1359); -lean_dec(x_1357); -x_1360 = !lean_is_exclusive(x_1358); -if (x_1360 == 0) +lean_object* x_1511; lean_object* x_1512; lean_object* x_1513; lean_object* x_1514; lean_object* x_1515; uint8_t x_1516; +x_1511 = lean_ctor_get(x_1510, 0); +lean_inc(x_1511); +x_1512 = lean_ctor_get(x_1510, 1); +lean_inc(x_1512); +lean_dec(x_1510); +x_1513 = lean_st_ref_take(x_4, x_1503); +x_1514 = lean_ctor_get(x_1513, 0); +lean_inc(x_1514); +x_1515 = lean_ctor_get(x_1513, 1); +lean_inc(x_1515); +lean_dec(x_1513); +x_1516 = !lean_is_exclusive(x_1514); +if (x_1516 == 0) { -lean_object* x_1361; lean_object* x_1362; lean_object* x_1363; -x_1361 = lean_ctor_get(x_1358, 3); -lean_dec(x_1361); -lean_ctor_set(x_1358, 3, x_1356); -x_1362 = lean_st_ref_set(x_4, x_1358, x_1359); -x_1363 = lean_ctor_get(x_1362, 1); -lean_inc(x_1363); -lean_dec(x_1362); -x_38 = x_1355; -x_39 = x_1363; -goto block_1323; +lean_object* x_1517; lean_object* x_1518; lean_object* x_1519; +x_1517 = lean_ctor_get(x_1514, 3); +lean_dec(x_1517); +lean_ctor_set(x_1514, 3, x_1512); +x_1518 = lean_st_ref_set(x_4, x_1514, x_1515); +x_1519 = lean_ctor_get(x_1518, 1); +lean_inc(x_1519); +lean_dec(x_1518); +x_38 = x_1511; +x_39 = x_1519; +goto block_1479; } else { -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; -x_1364 = lean_ctor_get(x_1358, 0); -x_1365 = lean_ctor_get(x_1358, 1); -x_1366 = lean_ctor_get(x_1358, 2); -x_1367 = lean_ctor_get(x_1358, 4); -x_1368 = lean_ctor_get(x_1358, 5); -x_1369 = lean_ctor_get(x_1358, 6); -lean_inc(x_1369); -lean_inc(x_1368); -lean_inc(x_1367); -lean_inc(x_1366); -lean_inc(x_1365); -lean_inc(x_1364); -lean_dec(x_1358); -x_1370 = lean_alloc_ctor(0, 7, 0); -lean_ctor_set(x_1370, 0, x_1364); -lean_ctor_set(x_1370, 1, x_1365); -lean_ctor_set(x_1370, 2, x_1366); -lean_ctor_set(x_1370, 3, x_1356); -lean_ctor_set(x_1370, 4, x_1367); -lean_ctor_set(x_1370, 5, x_1368); -lean_ctor_set(x_1370, 6, x_1369); -x_1371 = lean_st_ref_set(x_4, x_1370, x_1359); -x_1372 = lean_ctor_get(x_1371, 1); -lean_inc(x_1372); -lean_dec(x_1371); -x_38 = x_1355; -x_39 = x_1372; -goto block_1323; +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; +x_1520 = lean_ctor_get(x_1514, 0); +x_1521 = lean_ctor_get(x_1514, 1); +x_1522 = lean_ctor_get(x_1514, 2); +x_1523 = lean_ctor_get(x_1514, 4); +x_1524 = lean_ctor_get(x_1514, 5); +x_1525 = lean_ctor_get(x_1514, 6); +lean_inc(x_1525); +lean_inc(x_1524); +lean_inc(x_1523); +lean_inc(x_1522); +lean_inc(x_1521); +lean_inc(x_1520); +lean_dec(x_1514); +x_1526 = lean_alloc_ctor(0, 7, 0); +lean_ctor_set(x_1526, 0, x_1520); +lean_ctor_set(x_1526, 1, x_1521); +lean_ctor_set(x_1526, 2, x_1522); +lean_ctor_set(x_1526, 3, x_1512); +lean_ctor_set(x_1526, 4, x_1523); +lean_ctor_set(x_1526, 5, x_1524); +lean_ctor_set(x_1526, 6, x_1525); +x_1527 = lean_st_ref_set(x_4, x_1526, x_1515); +x_1528 = lean_ctor_get(x_1527, 1); +lean_inc(x_1528); +lean_dec(x_1527); +x_38 = x_1511; +x_39 = x_1528; +goto block_1479; } } else { -lean_object* x_1373; +lean_object* x_1529; lean_dec(x_36); lean_dec(x_34); lean_dec(x_30); @@ -31629,68 +32006,68 @@ lean_dec(x_20); lean_dec(x_18); lean_dec(x_11); lean_dec(x_8); -x_1373 = lean_ctor_get(x_1354, 0); -lean_inc(x_1373); -lean_dec(x_1354); -if (lean_obj_tag(x_1373) == 0) +x_1529 = lean_ctor_get(x_1510, 0); +lean_inc(x_1529); +lean_dec(x_1510); +if (lean_obj_tag(x_1529) == 0) { -lean_object* x_1374; lean_object* x_1375; lean_object* x_1376; lean_object* x_1377; lean_object* x_1378; uint8_t x_1379; -x_1374 = lean_ctor_get(x_1373, 0); -lean_inc(x_1374); -x_1375 = lean_ctor_get(x_1373, 1); -lean_inc(x_1375); -lean_dec(x_1373); -x_1376 = lean_alloc_ctor(2, 1, 0); -lean_ctor_set(x_1376, 0, x_1375); -x_1377 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_1377, 0, x_1376); -x_1378 = l_Lean_throwErrorAt___at_Lean_Elab_Command_elabCommand___spec__7___rarg(x_1374, x_1377, x_3, x_4, x_1347); -lean_dec(x_1374); -x_1379 = !lean_is_exclusive(x_1378); -if (x_1379 == 0) +lean_object* x_1530; lean_object* x_1531; lean_object* x_1532; lean_object* x_1533; lean_object* x_1534; uint8_t x_1535; +x_1530 = lean_ctor_get(x_1529, 0); +lean_inc(x_1530); +x_1531 = lean_ctor_get(x_1529, 1); +lean_inc(x_1531); +lean_dec(x_1529); +x_1532 = lean_alloc_ctor(2, 1, 0); +lean_ctor_set(x_1532, 0, x_1531); +x_1533 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_1533, 0, x_1532); +x_1534 = l_Lean_throwErrorAt___at_Lean_Elab_Command_elabCommand___spec__7___rarg(x_1530, x_1533, x_3, x_4, x_1503); +lean_dec(x_1530); +x_1535 = !lean_is_exclusive(x_1534); +if (x_1535 == 0) { -return x_1378; +return x_1534; } else { -lean_object* x_1380; lean_object* x_1381; lean_object* x_1382; -x_1380 = lean_ctor_get(x_1378, 0); -x_1381 = lean_ctor_get(x_1378, 1); -lean_inc(x_1381); -lean_inc(x_1380); -lean_dec(x_1378); -x_1382 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1382, 0, x_1380); -lean_ctor_set(x_1382, 1, x_1381); -return x_1382; +lean_object* x_1536; lean_object* x_1537; lean_object* x_1538; +x_1536 = lean_ctor_get(x_1534, 0); +x_1537 = lean_ctor_get(x_1534, 1); +lean_inc(x_1537); +lean_inc(x_1536); +lean_dec(x_1534); +x_1538 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1538, 0, x_1536); +lean_ctor_set(x_1538, 1, x_1537); +return x_1538; } } else { -lean_object* x_1383; uint8_t x_1384; +lean_object* x_1539; uint8_t x_1540; lean_dec(x_3); -x_1383 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_expandMacro___spec__2___rarg(x_1347); -x_1384 = !lean_is_exclusive(x_1383); -if (x_1384 == 0) +x_1539 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Command_expandMacro___spec__2___rarg(x_1503); +x_1540 = !lean_is_exclusive(x_1539); +if (x_1540 == 0) { -return x_1383; +return x_1539; } else { -lean_object* x_1385; lean_object* x_1386; lean_object* x_1387; -x_1385 = lean_ctor_get(x_1383, 0); -x_1386 = lean_ctor_get(x_1383, 1); -lean_inc(x_1386); -lean_inc(x_1385); -lean_dec(x_1383); -x_1387 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1387, 0, x_1385); -lean_ctor_set(x_1387, 1, x_1386); -return x_1387; +lean_object* x_1541; lean_object* x_1542; lean_object* x_1543; +x_1541 = lean_ctor_get(x_1539, 0); +x_1542 = lean_ctor_get(x_1539, 1); +lean_inc(x_1542); +lean_inc(x_1541); +lean_dec(x_1539); +x_1543 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1543, 0, x_1541); +lean_ctor_set(x_1543, 1, x_1542); +return x_1543; } } } -block_1323: +block_1479: { lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; uint8_t x_45; lean_inc(x_34); @@ -31757,1454 +32134,1676 @@ x_61 = l_Lean_Elab_Command_getMainModule___rarg(x_4, x_60); x_62 = !lean_is_exclusive(x_61); if (x_62 == 0) { -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; 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_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; size_t x_82; size_t x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; 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; x_63 = lean_ctor_get(x_61, 0); x_64 = l_Array_empty___closed__1; -x_65 = l_Array_appendCore___rarg(x_64, x_8); -lean_dec(x_8); -x_66 = l_Lean_nullKind___closed__2; -x_67 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_67, 0, x_66); -lean_ctor_set(x_67, 1, x_65); -x_68 = l_Lean_Elab_Command_expandMacro___closed__1; -x_69 = lean_array_push(x_68, x_67); -x_70 = lean_array_push(x_64, x_44); -x_71 = l_myMacro____x40_Init_Notation___hyg_376____closed__8; -lean_inc(x_70); -x_72 = lean_array_push(x_70, x_71); -x_73 = l_Nat_repr(x_11); -x_74 = l_Lean_numLitKind; -x_75 = l_Lean_instInhabitedSourceInfo___closed__1; -x_76 = l_Lean_Syntax_mkLit(x_74, x_73, x_75); -x_77 = lean_array_push(x_72, x_76); -x_78 = l_Lean_Parser_Command_parserKindPrio___elambda__1___closed__2; -x_79 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_79, 0, x_78); -lean_ctor_set(x_79, 1, x_77); -x_80 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3404____closed__9; -x_81 = lean_array_push(x_80, x_79); -x_82 = l_Lean_myMacro____x40_Init_Notation___hyg_12778____closed__11; -x_83 = lean_array_push(x_81, x_82); -x_84 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_84, 0, x_66); -lean_ctor_set(x_84, 1, x_83); -x_85 = lean_array_push(x_69, x_84); -x_86 = l_Array_appendCore___rarg(x_64, x_30); -lean_dec(x_30); -x_87 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_87, 0, x_66); -lean_ctor_set(x_87, 1, x_86); -x_88 = lean_array_push(x_85, x_87); -x_89 = l_myMacro____x40_Init_Notation___hyg_11918____closed__10; -x_90 = lean_array_push(x_88, x_89); -x_91 = lean_array_push(x_90, x_18); -x_92 = l_Lean_Parser_Command_syntax___elambda__1___closed__1; -x_93 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_93, 0, x_92); -lean_ctor_set(x_93, 1, x_91); -x_94 = lean_array_push(x_64, x_93); +x_65 = lean_array_push(x_64, x_44); +x_66 = l_myMacro____x40_Init_Notation___hyg_376____closed__8; +lean_inc(x_65); +x_67 = lean_array_push(x_65, x_66); +x_68 = l_Nat_repr(x_11); +x_69 = l_Lean_numLitKind; +x_70 = l_Lean_instInhabitedSourceInfo___closed__1; +x_71 = l_Lean_Syntax_mkLit(x_69, x_68, x_70); +x_72 = lean_array_push(x_67, x_71); +x_73 = l_Lean_Parser_Command_parserKindPrio___elambda__1___closed__2; +x_74 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_74, 0, x_73); +lean_ctor_set(x_74, 1, x_72); +x_75 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3404____closed__9; +x_76 = lean_array_push(x_75, x_74); +x_77 = l_Lean_myMacro____x40_Init_Notation___hyg_12778____closed__11; +x_78 = lean_array_push(x_76, x_77); +x_79 = l_Lean_nullKind___closed__2; +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 = lean_array_get_size(x_30); +x_82 = lean_usize_of_nat(x_81); +lean_dec(x_81); +x_83 = 0; +x_84 = x_30; +x_85 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_2962____spec__3(x_82, x_83, x_84); +x_86 = x_85; +x_87 = l_Array_appendCore___rarg(x_64, x_86); +lean_dec(x_86); +x_88 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_88, 0, x_79); +lean_ctor_set(x_88, 1, x_87); lean_inc(x_59); lean_inc(x_63); -x_95 = l_Lean_addMacroScope(x_63, x_50, x_59); -x_96 = lean_box(0); -x_97 = l_Lean_Elab_Command_expandElab___closed__4; -x_98 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_98, 0, x_75); -lean_ctor_set(x_98, 1, x_97); -lean_ctor_set(x_98, 2, x_95); -lean_ctor_set(x_98, 3, x_96); -x_99 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__2; -x_100 = lean_array_push(x_99, x_98); -x_101 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_101, 0, x_66); -lean_ctor_set(x_101, 1, x_70); -x_102 = lean_array_push(x_100, x_101); -x_103 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__15; -x_104 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_104, 0, x_103); -lean_ctor_set(x_104, 1, x_102); -x_105 = lean_array_push(x_64, x_104); -x_106 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_106, 0, x_66); -lean_ctor_set(x_106, 1, x_105); -x_107 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__13; -x_108 = lean_array_push(x_107, x_106); -x_109 = lean_array_push(x_108, x_82); -x_110 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__10; -x_111 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_111, 0, x_110); -lean_ctor_set(x_111, 1, x_109); -x_112 = lean_array_push(x_64, x_111); -x_113 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_113, 0, x_66); -lean_ctor_set(x_113, 1, x_112); -x_114 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__8; -x_115 = lean_array_push(x_114, x_113); -x_116 = l_myMacro____x40_Init_Notation___hyg_11918____closed__22; -x_117 = lean_array_push(x_115, x_116); -x_118 = lean_array_push(x_117, x_116); -x_119 = lean_array_push(x_118, x_116); -x_120 = lean_array_push(x_119, x_116); -x_121 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__7; -x_122 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_122, 0, x_121); -lean_ctor_set(x_122, 1, x_120); -x_123 = lean_array_push(x_64, x_122); -x_124 = l_Lean_Elab_Command_expandElab___closed__8; +x_89 = l_Lean_addMacroScope(x_63, x_50, x_59); +x_90 = lean_box(0); +x_91 = l_Lean_Elab_Command_expandElab___closed__4; +x_92 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_92, 0, x_70); +lean_ctor_set(x_92, 1, x_91); +lean_ctor_set(x_92, 2, x_89); +lean_ctor_set(x_92, 3, x_90); +x_93 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__2; +x_94 = lean_array_push(x_93, x_92); +x_95 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_95, 0, x_79); +lean_ctor_set(x_95, 1, x_65); +x_96 = lean_array_push(x_94, x_95); +x_97 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__15; +x_98 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_98, 0, x_97); +lean_ctor_set(x_98, 1, x_96); +x_99 = lean_array_push(x_64, x_98); +x_100 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_100, 0, x_79); +lean_ctor_set(x_100, 1, x_99); +x_101 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__13; +x_102 = lean_array_push(x_101, x_100); +x_103 = lean_array_push(x_102, x_77); +x_104 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__10; +x_105 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_105, 0, x_104); +lean_ctor_set(x_105, 1, x_103); +x_106 = lean_array_push(x_64, x_105); +x_107 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_107, 0, x_79); +lean_ctor_set(x_107, 1, x_106); +x_108 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__8; +x_109 = lean_array_push(x_108, x_107); +x_110 = l_myMacro____x40_Init_Notation___hyg_11918____closed__22; +x_111 = lean_array_push(x_109, x_110); +x_112 = lean_array_push(x_111, x_110); +x_113 = lean_array_push(x_112, x_110); +x_114 = lean_array_push(x_113, x_110); +x_115 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__7; +x_116 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_116, 0, x_115); +lean_ctor_set(x_116, 1, x_114); +x_117 = lean_array_push(x_64, x_116); +x_118 = l_Lean_Elab_Command_expandElab___closed__8; lean_inc(x_59); lean_inc(x_63); -x_125 = l_Lean_addMacroScope(x_63, x_124, x_59); -x_126 = l_Lean_Elab_Command_expandElab___closed__7; -x_127 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_127, 0, x_75); -lean_ctor_set(x_127, 1, x_126); -lean_ctor_set(x_127, 2, x_125); -lean_ctor_set(x_127, 3, x_96); -x_128 = lean_array_push(x_64, x_127); -x_129 = lean_array_push(x_128, x_116); -x_130 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__25; -x_131 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_131, 0, x_130); -lean_ctor_set(x_131, 1, x_129); -x_132 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__23; -x_133 = lean_array_push(x_132, x_131); -x_134 = l_Lean_Elab_Tactic_mkTacticAttribute___closed__6; +x_119 = l_Lean_addMacroScope(x_63, x_118, x_59); +x_120 = l_Lean_Elab_Command_expandElab___closed__7; +x_121 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_121, 0, x_70); +lean_ctor_set(x_121, 1, x_120); +lean_ctor_set(x_121, 2, x_119); +lean_ctor_set(x_121, 3, x_90); +x_122 = lean_array_push(x_64, x_121); +x_123 = lean_array_push(x_122, x_110); +x_124 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__25; +x_125 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_125, 0, x_124); +lean_ctor_set(x_125, 1, x_123); +x_126 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__23; +x_127 = lean_array_push(x_126, x_125); +x_128 = l_Lean_Elab_Tactic_mkTacticAttribute___closed__6; lean_inc(x_59); lean_inc(x_63); -x_135 = l_Lean_addMacroScope(x_63, x_134, x_59); -x_136 = l_Lean_Elab_Command_expandElab___closed__11; -x_137 = l_Lean_Elab_Command_expandElab___closed__13; -x_138 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_138, 0, x_75); -lean_ctor_set(x_138, 1, x_136); -lean_ctor_set(x_138, 2, x_135); -lean_ctor_set(x_138, 3, x_137); -x_139 = l_myMacro____x40_Init_Notation___hyg_11918____closed__11; -x_140 = lean_array_push(x_139, x_138); -x_141 = l_Lean_expandExplicitBindersAux_loop___closed__8; -x_142 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_142, 0, x_141); -lean_ctor_set(x_142, 1, x_140); -x_143 = lean_array_push(x_64, x_142); -x_144 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_144, 0, x_66); -lean_ctor_set(x_144, 1, x_143); -x_145 = lean_array_push(x_114, x_144); -x_146 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__27; -x_147 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_147, 0, x_146); -lean_ctor_set(x_147, 1, x_145); -x_148 = lean_array_push(x_133, x_147); -x_149 = l_Lean_Elab_Command_expandElab___closed__15; -x_150 = lean_array_push(x_149, x_43); -x_151 = l_myMacro____x40_Init_Notation___hyg_49____closed__16; -x_152 = lean_array_push(x_150, x_151); -x_153 = l_Lean_Parser_Tactic_quot___elambda__1___closed__1; -x_154 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_154, 0, x_153); -lean_ctor_set(x_154, 1, x_152); -x_155 = lean_array_push(x_64, x_154); +x_129 = l_Lean_addMacroScope(x_63, x_128, x_59); +x_130 = l_Lean_Elab_Command_expandElab___closed__11; +x_131 = l_Lean_Elab_Command_expandElab___closed__13; +x_132 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_132, 0, x_70); +lean_ctor_set(x_132, 1, x_130); +lean_ctor_set(x_132, 2, x_129); +lean_ctor_set(x_132, 3, x_131); +x_133 = l_myMacro____x40_Init_Notation___hyg_11918____closed__11; +x_134 = lean_array_push(x_133, x_132); +x_135 = l_Lean_expandExplicitBindersAux_loop___closed__8; +x_136 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_136, 0, x_135); +lean_ctor_set(x_136, 1, x_134); +x_137 = lean_array_push(x_64, x_136); +x_138 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_138, 0, x_79); +lean_ctor_set(x_138, 1, x_137); +x_139 = lean_array_push(x_108, x_138); +x_140 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__27; +x_141 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_141, 0, x_140); +lean_ctor_set(x_141, 1, x_139); +x_142 = lean_array_push(x_127, x_141); +x_143 = l_Lean_Elab_Command_expandElab___closed__15; +x_144 = lean_array_push(x_143, x_43); +x_145 = l_myMacro____x40_Init_Notation___hyg_49____closed__16; +x_146 = lean_array_push(x_144, x_145); +x_147 = l_Lean_Parser_Tactic_quot___elambda__1___closed__1; +x_148 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_148, 0, x_147); +lean_ctor_set(x_148, 1, x_146); +x_149 = lean_array_push(x_64, x_148); +x_150 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_150, 0, x_79); +lean_ctor_set(x_150, 1, x_149); +x_151 = lean_array_push(x_64, x_150); +x_152 = l_myMacro____x40_Init_Notation___hyg_10790____closed__17; +x_153 = lean_array_push(x_151, x_152); +x_154 = lean_array_push(x_153, x_22); +x_155 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; x_156 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_156, 0, x_66); -lean_ctor_set(x_156, 1, x_155); +lean_ctor_set(x_156, 0, x_155); +lean_ctor_set(x_156, 1, x_154); x_157 = lean_array_push(x_64, x_156); -x_158 = l_myMacro____x40_Init_Notation___hyg_10790____closed__17; +x_158 = l_Lean_myMacro____x40_Init_Notation___hyg_12778____closed__3; x_159 = lean_array_push(x_157, x_158); -x_160 = lean_array_push(x_159, x_22); -x_161 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; -x_162 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_162, 0, x_161); -lean_ctor_set(x_162, 1, x_160); -x_163 = lean_array_push(x_64, x_162); -x_164 = l_Lean_myMacro____x40_Init_Notation___hyg_12778____closed__3; -x_165 = lean_array_push(x_163, x_164); -x_166 = l_Lean_Elab_Command_expandElab___closed__19; -x_167 = l_Lean_addMacroScope(x_63, x_166, x_59); -x_168 = l_Lean_Elab_Command_expandElab___closed__18; -x_169 = l_Lean_Elab_Command_expandElab___closed__22; -x_170 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_170, 0, x_75); -lean_ctor_set(x_170, 1, x_168); -lean_ctor_set(x_170, 2, x_167); -lean_ctor_set(x_170, 3, x_169); -x_171 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__23; -x_172 = lean_array_push(x_171, x_170); +x_160 = l_Lean_Elab_Command_expandElab___closed__19; +x_161 = l_Lean_addMacroScope(x_63, x_160, x_59); +x_162 = l_Lean_Elab_Command_expandElab___closed__18; +x_163 = l_Lean_Elab_Command_expandElab___closed__22; +x_164 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_164, 0, x_70); +lean_ctor_set(x_164, 1, x_162); +lean_ctor_set(x_164, 2, x_161); +lean_ctor_set(x_164, 3, x_163); +x_165 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__23; +x_166 = lean_array_push(x_165, x_164); +x_167 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_167, 0, x_155); +lean_ctor_set(x_167, 1, x_166); +x_168 = lean_array_push(x_159, x_167); +x_169 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_169, 0, x_79); +lean_ctor_set(x_169, 1, x_168); +x_170 = l_Lean_Elab_Term_expandFunBinders_loop___closed__10; +x_171 = lean_array_push(x_170, x_169); +x_172 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; x_173 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_173, 0, x_161); -lean_ctor_set(x_173, 1, x_172); -x_174 = lean_array_push(x_165, x_173); -x_175 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_175, 0, x_66); -lean_ctor_set(x_175, 1, x_174); -x_176 = l_Lean_Elab_Term_expandFunBinders_loop___closed__10; -x_177 = lean_array_push(x_176, x_175); -x_178 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; -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 = l_myMacro____x40_Init_Notation___hyg_10790____closed__13; -x_181 = lean_array_push(x_180, x_179); -x_182 = l_myMacro____x40_Init_Notation___hyg_10790____closed__11; -x_183 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_183, 0, x_182); -lean_ctor_set(x_183, 1, x_181); -x_184 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15698____closed__5; -x_185 = lean_array_push(x_184, x_183); -x_186 = lean_array_push(x_185, x_116); -x_187 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__46; +lean_ctor_set(x_173, 0, x_172); +lean_ctor_set(x_173, 1, x_171); +x_174 = l_myMacro____x40_Init_Notation___hyg_10790____closed__13; +x_175 = lean_array_push(x_174, x_173); +x_176 = l_myMacro____x40_Init_Notation___hyg_10790____closed__11; +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 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15704____closed__5; +x_179 = lean_array_push(x_178, x_177); +x_180 = lean_array_push(x_179, x_110); +x_181 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__46; +x_182 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_182, 0, x_181); +lean_ctor_set(x_182, 1, x_180); +x_183 = lean_array_push(x_142, x_182); +x_184 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__21; +x_185 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_185, 0, x_184); +lean_ctor_set(x_185, 1, x_183); +x_186 = lean_array_push(x_117, x_185); +x_187 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__5; x_188 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_188, 0, x_187); lean_ctor_set(x_188, 1, x_186); -x_189 = lean_array_push(x_148, x_188); -x_190 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__21; -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_123, x_191); -x_193 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__5; -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_94, x_194); +if (lean_obj_tag(x_8) == 0) +{ +lean_object* x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; +x_189 = l_Lean_Elab_Command_expandMacro___closed__3; +x_190 = lean_array_push(x_189, x_80); +x_191 = lean_array_push(x_190, x_88); +x_192 = l_myMacro____x40_Init_Notation___hyg_11918____closed__10; +x_193 = lean_array_push(x_191, x_192); +x_194 = lean_array_push(x_193, x_18); +x_195 = l_Lean_Parser_Command_syntax___elambda__1___closed__1; x_196 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_196, 0, x_66); -lean_ctor_set(x_196, 1, x_195); -lean_ctor_set(x_61, 0, x_196); +lean_ctor_set(x_196, 0, x_195); +lean_ctor_set(x_196, 1, x_194); +x_197 = lean_array_push(x_64, x_196); +x_198 = lean_array_push(x_197, x_188); +x_199 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_199, 0, x_79); +lean_ctor_set(x_199, 1, x_198); +lean_ctor_set(x_61, 0, x_199); return x_61; } 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; lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; lean_object* x_255; lean_object* x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; lean_object* x_262; lean_object* x_263; lean_object* x_264; lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; lean_object* x_269; lean_object* x_270; lean_object* x_271; lean_object* x_272; lean_object* x_273; lean_object* x_274; lean_object* x_275; lean_object* x_276; lean_object* x_277; lean_object* x_278; lean_object* x_279; lean_object* x_280; lean_object* x_281; lean_object* x_282; lean_object* x_283; lean_object* x_284; lean_object* x_285; lean_object* x_286; lean_object* x_287; lean_object* x_288; lean_object* x_289; lean_object* x_290; lean_object* x_291; lean_object* x_292; lean_object* x_293; lean_object* x_294; lean_object* x_295; lean_object* x_296; lean_object* x_297; lean_object* x_298; lean_object* x_299; lean_object* x_300; lean_object* x_301; lean_object* x_302; lean_object* x_303; lean_object* x_304; lean_object* x_305; lean_object* x_306; lean_object* x_307; lean_object* x_308; lean_object* x_309; lean_object* x_310; lean_object* x_311; lean_object* x_312; lean_object* x_313; lean_object* x_314; 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; -x_197 = lean_ctor_get(x_61, 0); -x_198 = lean_ctor_get(x_61, 1); -lean_inc(x_198); -lean_inc(x_197); -lean_dec(x_61); -x_199 = l_Array_empty___closed__1; -x_200 = l_Array_appendCore___rarg(x_199, x_8); +lean_object* x_200; lean_object* x_201; lean_object* x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; lean_object* x_206; lean_object* x_207; lean_object* x_208; lean_object* x_209; lean_object* x_210; lean_object* x_211; lean_object* x_212; lean_object* x_213; lean_object* x_214; lean_object* x_215; +x_200 = lean_ctor_get(x_8, 0); +lean_inc(x_200); lean_dec(x_8); -x_201 = l_Lean_nullKind___closed__2; -x_202 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_202, 0, x_201); -lean_ctor_set(x_202, 1, x_200); -x_203 = l_Lean_Elab_Command_expandMacro___closed__1; -x_204 = lean_array_push(x_203, x_202); -x_205 = lean_array_push(x_199, x_44); -x_206 = l_myMacro____x40_Init_Notation___hyg_376____closed__8; -lean_inc(x_205); -x_207 = lean_array_push(x_205, x_206); -x_208 = l_Nat_repr(x_11); -x_209 = l_Lean_numLitKind; -x_210 = l_Lean_instInhabitedSourceInfo___closed__1; -x_211 = l_Lean_Syntax_mkLit(x_209, x_208, x_210); -x_212 = lean_array_push(x_207, x_211); -x_213 = l_Lean_Parser_Command_parserKindPrio___elambda__1___closed__2; -x_214 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_214, 0, x_213); -lean_ctor_set(x_214, 1, x_212); -x_215 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3404____closed__9; -x_216 = lean_array_push(x_215, x_214); -x_217 = l_Lean_myMacro____x40_Init_Notation___hyg_12778____closed__11; -x_218 = lean_array_push(x_216, x_217); -x_219 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_219, 0, x_201); -lean_ctor_set(x_219, 1, x_218); -x_220 = lean_array_push(x_204, x_219); -x_221 = l_Array_appendCore___rarg(x_199, x_30); -lean_dec(x_30); -x_222 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_222, 0, x_201); -lean_ctor_set(x_222, 1, x_221); -x_223 = lean_array_push(x_220, x_222); -x_224 = l_myMacro____x40_Init_Notation___hyg_11918____closed__10; -x_225 = lean_array_push(x_223, x_224); -x_226 = lean_array_push(x_225, x_18); -x_227 = l_Lean_Parser_Command_syntax___elambda__1___closed__1; +x_201 = lean_array_push(x_64, x_200); +x_202 = l_Array_appendCore___rarg(x_64, x_201); +lean_dec(x_201); +x_203 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_203, 0, x_79); +lean_ctor_set(x_203, 1, x_202); +x_204 = l_Lean_Elab_Command_expandMacro___closed__1; +x_205 = lean_array_push(x_204, x_203); +x_206 = lean_array_push(x_205, x_80); +x_207 = lean_array_push(x_206, x_88); +x_208 = l_myMacro____x40_Init_Notation___hyg_11918____closed__10; +x_209 = lean_array_push(x_207, x_208); +x_210 = lean_array_push(x_209, x_18); +x_211 = l_Lean_Parser_Command_syntax___elambda__1___closed__1; +x_212 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_212, 0, x_211); +lean_ctor_set(x_212, 1, x_210); +x_213 = lean_array_push(x_64, x_212); +x_214 = lean_array_push(x_213, x_188); +x_215 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_215, 0, x_79); +lean_ctor_set(x_215, 1, x_214); +lean_ctor_set(x_61, 0, x_215); +return x_61; +} +} +else +{ +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; size_t x_236; size_t x_237; lean_object* x_238; lean_object* x_239; lean_object* x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; lean_object* x_247; lean_object* x_248; lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; lean_object* x_255; lean_object* x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; lean_object* x_262; lean_object* x_263; lean_object* x_264; lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; lean_object* x_269; lean_object* x_270; lean_object* x_271; lean_object* x_272; lean_object* x_273; lean_object* x_274; lean_object* x_275; lean_object* x_276; lean_object* x_277; lean_object* x_278; lean_object* x_279; lean_object* x_280; lean_object* x_281; lean_object* x_282; lean_object* x_283; 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; +x_216 = lean_ctor_get(x_61, 0); +x_217 = lean_ctor_get(x_61, 1); +lean_inc(x_217); +lean_inc(x_216); +lean_dec(x_61); +x_218 = l_Array_empty___closed__1; +x_219 = lean_array_push(x_218, x_44); +x_220 = l_myMacro____x40_Init_Notation___hyg_376____closed__8; +lean_inc(x_219); +x_221 = lean_array_push(x_219, x_220); +x_222 = l_Nat_repr(x_11); +x_223 = l_Lean_numLitKind; +x_224 = l_Lean_instInhabitedSourceInfo___closed__1; +x_225 = l_Lean_Syntax_mkLit(x_223, x_222, x_224); +x_226 = lean_array_push(x_221, x_225); +x_227 = l_Lean_Parser_Command_parserKindPrio___elambda__1___closed__2; x_228 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_228, 0, x_227); lean_ctor_set(x_228, 1, x_226); -x_229 = lean_array_push(x_199, x_228); +x_229 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3404____closed__9; +x_230 = lean_array_push(x_229, x_228); +x_231 = l_Lean_myMacro____x40_Init_Notation___hyg_12778____closed__11; +x_232 = lean_array_push(x_230, x_231); +x_233 = l_Lean_nullKind___closed__2; +x_234 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_234, 0, x_233); +lean_ctor_set(x_234, 1, x_232); +x_235 = lean_array_get_size(x_30); +x_236 = lean_usize_of_nat(x_235); +lean_dec(x_235); +x_237 = 0; +x_238 = x_30; +x_239 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_2962____spec__3(x_236, x_237, x_238); +x_240 = x_239; +x_241 = l_Array_appendCore___rarg(x_218, x_240); +lean_dec(x_240); +x_242 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_242, 0, x_233); +lean_ctor_set(x_242, 1, x_241); lean_inc(x_59); -lean_inc(x_197); -x_230 = l_Lean_addMacroScope(x_197, x_50, x_59); -x_231 = lean_box(0); -x_232 = l_Lean_Elab_Command_expandElab___closed__4; -x_233 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_233, 0, x_210); -lean_ctor_set(x_233, 1, x_232); -lean_ctor_set(x_233, 2, x_230); -lean_ctor_set(x_233, 3, x_231); -x_234 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__2; -x_235 = lean_array_push(x_234, x_233); -x_236 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_236, 0, x_201); -lean_ctor_set(x_236, 1, x_205); -x_237 = lean_array_push(x_235, x_236); -x_238 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__15; -x_239 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_239, 0, x_238); -lean_ctor_set(x_239, 1, x_237); -x_240 = lean_array_push(x_199, x_239); -x_241 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_241, 0, x_201); -lean_ctor_set(x_241, 1, x_240); -x_242 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__13; -x_243 = lean_array_push(x_242, x_241); -x_244 = lean_array_push(x_243, x_217); -x_245 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__10; -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_199, x_246); -x_248 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_248, 0, x_201); -lean_ctor_set(x_248, 1, x_247); -x_249 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__8; -x_250 = lean_array_push(x_249, x_248); -x_251 = l_myMacro____x40_Init_Notation___hyg_11918____closed__22; -x_252 = lean_array_push(x_250, x_251); -x_253 = lean_array_push(x_252, x_251); -x_254 = lean_array_push(x_253, x_251); -x_255 = lean_array_push(x_254, x_251); -x_256 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__7; -x_257 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_257, 0, x_256); -lean_ctor_set(x_257, 1, x_255); -x_258 = lean_array_push(x_199, x_257); -x_259 = l_Lean_Elab_Command_expandElab___closed__8; +lean_inc(x_216); +x_243 = l_Lean_addMacroScope(x_216, x_50, x_59); +x_244 = lean_box(0); +x_245 = l_Lean_Elab_Command_expandElab___closed__4; +x_246 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_246, 0, x_224); +lean_ctor_set(x_246, 1, x_245); +lean_ctor_set(x_246, 2, x_243); +lean_ctor_set(x_246, 3, x_244); +x_247 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__2; +x_248 = lean_array_push(x_247, x_246); +x_249 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_249, 0, x_233); +lean_ctor_set(x_249, 1, x_219); +x_250 = lean_array_push(x_248, x_249); +x_251 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__15; +x_252 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_252, 0, x_251); +lean_ctor_set(x_252, 1, x_250); +x_253 = lean_array_push(x_218, x_252); +x_254 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_254, 0, x_233); +lean_ctor_set(x_254, 1, x_253); +x_255 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__13; +x_256 = lean_array_push(x_255, x_254); +x_257 = lean_array_push(x_256, x_231); +x_258 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__10; +x_259 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_259, 0, x_258); +lean_ctor_set(x_259, 1, x_257); +x_260 = lean_array_push(x_218, x_259); +x_261 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_261, 0, x_233); +lean_ctor_set(x_261, 1, x_260); +x_262 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__8; +x_263 = lean_array_push(x_262, x_261); +x_264 = l_myMacro____x40_Init_Notation___hyg_11918____closed__22; +x_265 = lean_array_push(x_263, x_264); +x_266 = lean_array_push(x_265, x_264); +x_267 = lean_array_push(x_266, x_264); +x_268 = lean_array_push(x_267, x_264); +x_269 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__7; +x_270 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_270, 0, x_269); +lean_ctor_set(x_270, 1, x_268); +x_271 = lean_array_push(x_218, x_270); +x_272 = l_Lean_Elab_Command_expandElab___closed__8; lean_inc(x_59); -lean_inc(x_197); -x_260 = l_Lean_addMacroScope(x_197, x_259, x_59); -x_261 = l_Lean_Elab_Command_expandElab___closed__7; -x_262 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_262, 0, x_210); -lean_ctor_set(x_262, 1, x_261); -lean_ctor_set(x_262, 2, x_260); -lean_ctor_set(x_262, 3, x_231); -x_263 = lean_array_push(x_199, x_262); -x_264 = lean_array_push(x_263, x_251); -x_265 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__25; -x_266 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_266, 0, x_265); -lean_ctor_set(x_266, 1, x_264); -x_267 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__23; -x_268 = lean_array_push(x_267, x_266); -x_269 = l_Lean_Elab_Tactic_mkTacticAttribute___closed__6; -lean_inc(x_59); -lean_inc(x_197); -x_270 = l_Lean_addMacroScope(x_197, x_269, x_59); -x_271 = l_Lean_Elab_Command_expandElab___closed__11; -x_272 = l_Lean_Elab_Command_expandElab___closed__13; -x_273 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_273, 0, x_210); -lean_ctor_set(x_273, 1, x_271); -lean_ctor_set(x_273, 2, x_270); -lean_ctor_set(x_273, 3, x_272); -x_274 = l_myMacro____x40_Init_Notation___hyg_11918____closed__11; -x_275 = lean_array_push(x_274, x_273); -x_276 = l_Lean_expandExplicitBindersAux_loop___closed__8; -x_277 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_277, 0, x_276); -lean_ctor_set(x_277, 1, x_275); -x_278 = lean_array_push(x_199, x_277); +lean_inc(x_216); +x_273 = l_Lean_addMacroScope(x_216, x_272, x_59); +x_274 = l_Lean_Elab_Command_expandElab___closed__7; +x_275 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_275, 0, x_224); +lean_ctor_set(x_275, 1, x_274); +lean_ctor_set(x_275, 2, x_273); +lean_ctor_set(x_275, 3, x_244); +x_276 = lean_array_push(x_218, x_275); +x_277 = lean_array_push(x_276, x_264); +x_278 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__25; x_279 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_279, 0, x_201); -lean_ctor_set(x_279, 1, x_278); -x_280 = lean_array_push(x_249, x_279); -x_281 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__27; -x_282 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_282, 0, x_281); -lean_ctor_set(x_282, 1, x_280); -x_283 = lean_array_push(x_268, x_282); -x_284 = l_Lean_Elab_Command_expandElab___closed__15; -x_285 = lean_array_push(x_284, x_43); -x_286 = l_myMacro____x40_Init_Notation___hyg_49____closed__16; -x_287 = lean_array_push(x_285, x_286); -x_288 = l_Lean_Parser_Tactic_quot___elambda__1___closed__1; -x_289 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_289, 0, x_288); -lean_ctor_set(x_289, 1, x_287); -x_290 = lean_array_push(x_199, x_289); -x_291 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_291, 0, x_201); -lean_ctor_set(x_291, 1, x_290); -x_292 = lean_array_push(x_199, x_291); -x_293 = l_myMacro____x40_Init_Notation___hyg_10790____closed__17; -x_294 = lean_array_push(x_292, x_293); -x_295 = lean_array_push(x_294, x_22); -x_296 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; -x_297 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_297, 0, x_296); -lean_ctor_set(x_297, 1, x_295); -x_298 = lean_array_push(x_199, x_297); -x_299 = l_Lean_myMacro____x40_Init_Notation___hyg_12778____closed__3; +lean_ctor_set(x_279, 0, x_278); +lean_ctor_set(x_279, 1, x_277); +x_280 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__23; +x_281 = lean_array_push(x_280, x_279); +x_282 = l_Lean_Elab_Tactic_mkTacticAttribute___closed__6; +lean_inc(x_59); +lean_inc(x_216); +x_283 = l_Lean_addMacroScope(x_216, x_282, x_59); +x_284 = l_Lean_Elab_Command_expandElab___closed__11; +x_285 = l_Lean_Elab_Command_expandElab___closed__13; +x_286 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_286, 0, x_224); +lean_ctor_set(x_286, 1, x_284); +lean_ctor_set(x_286, 2, x_283); +lean_ctor_set(x_286, 3, x_285); +x_287 = l_myMacro____x40_Init_Notation___hyg_11918____closed__11; +x_288 = lean_array_push(x_287, x_286); +x_289 = l_Lean_expandExplicitBindersAux_loop___closed__8; +x_290 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_290, 0, x_289); +lean_ctor_set(x_290, 1, x_288); +x_291 = lean_array_push(x_218, x_290); +x_292 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_292, 0, x_233); +lean_ctor_set(x_292, 1, x_291); +x_293 = lean_array_push(x_262, x_292); +x_294 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__27; +x_295 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_295, 0, x_294); +lean_ctor_set(x_295, 1, x_293); +x_296 = lean_array_push(x_281, x_295); +x_297 = l_Lean_Elab_Command_expandElab___closed__15; +x_298 = lean_array_push(x_297, x_43); +x_299 = l_myMacro____x40_Init_Notation___hyg_49____closed__16; x_300 = lean_array_push(x_298, x_299); -x_301 = l_Lean_Elab_Command_expandElab___closed__19; -x_302 = l_Lean_addMacroScope(x_197, x_301, x_59); -x_303 = l_Lean_Elab_Command_expandElab___closed__18; -x_304 = l_Lean_Elab_Command_expandElab___closed__22; -x_305 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_305, 0, x_210); -lean_ctor_set(x_305, 1, x_303); -lean_ctor_set(x_305, 2, x_302); -lean_ctor_set(x_305, 3, x_304); -x_306 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__23; -x_307 = lean_array_push(x_306, x_305); -x_308 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_308, 0, x_296); -lean_ctor_set(x_308, 1, x_307); -x_309 = lean_array_push(x_300, x_308); +x_301 = l_Lean_Parser_Tactic_quot___elambda__1___closed__1; +x_302 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_302, 0, x_301); +lean_ctor_set(x_302, 1, x_300); +x_303 = lean_array_push(x_218, x_302); +x_304 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_304, 0, x_233); +lean_ctor_set(x_304, 1, x_303); +x_305 = lean_array_push(x_218, x_304); +x_306 = l_myMacro____x40_Init_Notation___hyg_10790____closed__17; +x_307 = lean_array_push(x_305, x_306); +x_308 = lean_array_push(x_307, x_22); +x_309 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; x_310 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_310, 0, x_201); -lean_ctor_set(x_310, 1, x_309); -x_311 = l_Lean_Elab_Term_expandFunBinders_loop___closed__10; -x_312 = lean_array_push(x_311, x_310); -x_313 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; -x_314 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_314, 0, x_313); -lean_ctor_set(x_314, 1, x_312); -x_315 = l_myMacro____x40_Init_Notation___hyg_10790____closed__13; -x_316 = lean_array_push(x_315, x_314); -x_317 = l_myMacro____x40_Init_Notation___hyg_10790____closed__11; -x_318 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_318, 0, x_317); +lean_ctor_set(x_310, 0, x_309); +lean_ctor_set(x_310, 1, x_308); +x_311 = lean_array_push(x_218, x_310); +x_312 = l_Lean_myMacro____x40_Init_Notation___hyg_12778____closed__3; +x_313 = lean_array_push(x_311, x_312); +x_314 = l_Lean_Elab_Command_expandElab___closed__19; +x_315 = l_Lean_addMacroScope(x_216, x_314, x_59); +x_316 = l_Lean_Elab_Command_expandElab___closed__18; +x_317 = l_Lean_Elab_Command_expandElab___closed__22; +x_318 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_318, 0, x_224); lean_ctor_set(x_318, 1, x_316); -x_319 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15698____closed__5; +lean_ctor_set(x_318, 2, x_315); +lean_ctor_set(x_318, 3, x_317); +x_319 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__23; x_320 = lean_array_push(x_319, x_318); -x_321 = lean_array_push(x_320, x_251); -x_322 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__46; +x_321 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_321, 0, x_309); +lean_ctor_set(x_321, 1, x_320); +x_322 = lean_array_push(x_313, x_321); x_323 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_323, 0, x_322); -lean_ctor_set(x_323, 1, x_321); -x_324 = lean_array_push(x_283, x_323); -x_325 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__21; -x_326 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_326, 0, x_325); -lean_ctor_set(x_326, 1, x_324); -x_327 = lean_array_push(x_258, x_326); -x_328 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__5; -x_329 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_329, 0, x_328); -lean_ctor_set(x_329, 1, x_327); -x_330 = lean_array_push(x_229, x_329); +lean_ctor_set(x_323, 0, x_233); +lean_ctor_set(x_323, 1, x_322); +x_324 = l_Lean_Elab_Term_expandFunBinders_loop___closed__10; +x_325 = lean_array_push(x_324, x_323); +x_326 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_327 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_327, 0, x_326); +lean_ctor_set(x_327, 1, x_325); +x_328 = l_myMacro____x40_Init_Notation___hyg_10790____closed__13; +x_329 = lean_array_push(x_328, x_327); +x_330 = l_myMacro____x40_Init_Notation___hyg_10790____closed__11; x_331 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_331, 0, x_201); -lean_ctor_set(x_331, 1, x_330); -x_332 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_332, 0, x_331); -lean_ctor_set(x_332, 1, x_198); -return x_332; -} -} -} -else -{ -lean_object* x_333; lean_object* x_334; lean_object* x_335; lean_object* x_336; uint8_t x_337; -lean_dec(x_23); -x_333 = l_Lean_Elab_Command_getCurrMacroScope(x_3, x_4, x_39); -lean_dec(x_3); -x_334 = lean_ctor_get(x_333, 0); -lean_inc(x_334); -x_335 = lean_ctor_get(x_333, 1); -lean_inc(x_335); -lean_dec(x_333); -x_336 = l_Lean_Elab_Command_getMainModule___rarg(x_4, x_335); -x_337 = !lean_is_exclusive(x_336); -if (x_337 == 0) -{ -lean_object* x_338; lean_object* x_339; lean_object* x_340; lean_object* x_341; lean_object* x_342; lean_object* x_343; lean_object* x_344; lean_object* x_345; lean_object* x_346; lean_object* x_347; lean_object* x_348; lean_object* x_349; lean_object* x_350; lean_object* x_351; lean_object* x_352; lean_object* x_353; lean_object* x_354; lean_object* x_355; lean_object* x_356; lean_object* x_357; lean_object* x_358; lean_object* x_359; lean_object* x_360; lean_object* x_361; lean_object* x_362; lean_object* x_363; lean_object* x_364; lean_object* x_365; lean_object* x_366; lean_object* x_367; lean_object* x_368; lean_object* x_369; lean_object* x_370; lean_object* x_371; lean_object* x_372; lean_object* x_373; lean_object* x_374; lean_object* x_375; lean_object* x_376; lean_object* x_377; lean_object* x_378; lean_object* x_379; lean_object* x_380; lean_object* x_381; lean_object* x_382; lean_object* x_383; lean_object* x_384; lean_object* x_385; lean_object* x_386; lean_object* x_387; lean_object* x_388; lean_object* x_389; lean_object* x_390; lean_object* x_391; lean_object* x_392; lean_object* x_393; lean_object* x_394; lean_object* x_395; lean_object* x_396; lean_object* x_397; lean_object* x_398; lean_object* x_399; lean_object* x_400; lean_object* x_401; lean_object* x_402; lean_object* x_403; lean_object* x_404; lean_object* x_405; lean_object* x_406; lean_object* x_407; lean_object* x_408; lean_object* x_409; lean_object* x_410; lean_object* x_411; lean_object* x_412; lean_object* x_413; lean_object* x_414; lean_object* x_415; lean_object* x_416; lean_object* x_417; lean_object* x_418; lean_object* x_419; lean_object* x_420; lean_object* x_421; lean_object* x_422; lean_object* x_423; lean_object* x_424; lean_object* x_425; lean_object* x_426; lean_object* x_427; lean_object* x_428; lean_object* x_429; lean_object* x_430; lean_object* x_431; lean_object* x_432; lean_object* x_433; lean_object* x_434; lean_object* x_435; lean_object* x_436; lean_object* x_437; lean_object* x_438; lean_object* x_439; lean_object* x_440; lean_object* x_441; lean_object* x_442; lean_object* x_443; lean_object* x_444; lean_object* x_445; lean_object* x_446; lean_object* x_447; lean_object* x_448; lean_object* x_449; lean_object* x_450; lean_object* x_451; lean_object* x_452; lean_object* x_453; lean_object* x_454; lean_object* x_455; lean_object* x_456; lean_object* x_457; lean_object* x_458; lean_object* x_459; lean_object* x_460; lean_object* x_461; lean_object* x_462; lean_object* x_463; lean_object* x_464; lean_object* x_465; lean_object* x_466; lean_object* x_467; lean_object* x_468; lean_object* x_469; lean_object* x_470; lean_object* x_471; lean_object* x_472; -x_338 = lean_ctor_get(x_336, 0); -x_339 = l_Array_empty___closed__1; -x_340 = l_Array_appendCore___rarg(x_339, x_8); -lean_dec(x_8); -x_341 = l_Lean_nullKind___closed__2; +lean_ctor_set(x_331, 0, x_330); +lean_ctor_set(x_331, 1, x_329); +x_332 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15704____closed__5; +x_333 = lean_array_push(x_332, x_331); +x_334 = lean_array_push(x_333, x_264); +x_335 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__46; +x_336 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_336, 0, x_335); +lean_ctor_set(x_336, 1, x_334); +x_337 = lean_array_push(x_296, x_336); +x_338 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__21; +x_339 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_339, 0, x_338); +lean_ctor_set(x_339, 1, x_337); +x_340 = lean_array_push(x_271, x_339); +x_341 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__5; x_342 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_342, 0, x_341); lean_ctor_set(x_342, 1, x_340); -x_343 = l_Lean_Elab_Command_expandMacro___closed__1; -x_344 = lean_array_push(x_343, x_342); -x_345 = lean_array_push(x_339, x_44); -x_346 = l_myMacro____x40_Init_Notation___hyg_376____closed__8; -lean_inc(x_345); +if (lean_obj_tag(x_8) == 0) +{ +lean_object* x_343; lean_object* x_344; lean_object* x_345; lean_object* x_346; lean_object* x_347; lean_object* x_348; lean_object* x_349; lean_object* x_350; lean_object* x_351; lean_object* x_352; lean_object* x_353; lean_object* x_354; +x_343 = l_Lean_Elab_Command_expandMacro___closed__3; +x_344 = lean_array_push(x_343, x_234); +x_345 = lean_array_push(x_344, x_242); +x_346 = l_myMacro____x40_Init_Notation___hyg_11918____closed__10; x_347 = lean_array_push(x_345, x_346); -x_348 = l_Nat_repr(x_11); -x_349 = l_Lean_numLitKind; -x_350 = l_Lean_instInhabitedSourceInfo___closed__1; -x_351 = l_Lean_Syntax_mkLit(x_349, x_348, x_350); -x_352 = lean_array_push(x_347, x_351); -x_353 = l_Lean_Parser_Command_parserKindPrio___elambda__1___closed__2; -x_354 = lean_alloc_ctor(1, 2, 0); +x_348 = lean_array_push(x_347, x_18); +x_349 = l_Lean_Parser_Command_syntax___elambda__1___closed__1; +x_350 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_350, 0, x_349); +lean_ctor_set(x_350, 1, x_348); +x_351 = lean_array_push(x_218, x_350); +x_352 = lean_array_push(x_351, x_342); +x_353 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_353, 0, x_233); +lean_ctor_set(x_353, 1, x_352); +x_354 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_354, 0, x_353); -lean_ctor_set(x_354, 1, x_352); -x_355 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3404____closed__9; -x_356 = lean_array_push(x_355, x_354); -x_357 = l_Lean_myMacro____x40_Init_Notation___hyg_12778____closed__11; -x_358 = lean_array_push(x_356, x_357); -x_359 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_359, 0, x_341); -lean_ctor_set(x_359, 1, x_358); -x_360 = lean_array_push(x_344, x_359); -x_361 = l_Array_appendCore___rarg(x_339, x_30); -lean_dec(x_30); -x_362 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_362, 0, x_341); -lean_ctor_set(x_362, 1, x_361); -x_363 = lean_array_push(x_360, x_362); -x_364 = l_myMacro____x40_Init_Notation___hyg_11918____closed__10; -x_365 = lean_array_push(x_363, x_364); -x_366 = lean_array_push(x_365, x_18); -x_367 = l_Lean_Parser_Command_syntax___elambda__1___closed__1; -x_368 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_368, 0, x_367); -lean_ctor_set(x_368, 1, x_366); -x_369 = lean_array_push(x_339, x_368); -x_370 = l_Lean_Elab_Command_mkCommandElabAttributeUnsafe___closed__7; -lean_inc(x_334); -lean_inc(x_338); -x_371 = l_Lean_addMacroScope(x_338, x_370, x_334); -x_372 = lean_box(0); -x_373 = l_Lean_Elab_Command_expandElab___closed__24; -x_374 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_374, 0, x_350); -lean_ctor_set(x_374, 1, x_373); -lean_ctor_set(x_374, 2, x_371); -lean_ctor_set(x_374, 3, x_372); -x_375 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__2; -x_376 = lean_array_push(x_375, x_374); -x_377 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_377, 0, x_341); -lean_ctor_set(x_377, 1, x_345); -x_378 = lean_array_push(x_376, x_377); -x_379 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__15; -x_380 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_380, 0, x_379); -lean_ctor_set(x_380, 1, x_378); -x_381 = lean_array_push(x_339, x_380); -x_382 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_382, 0, x_341); -lean_ctor_set(x_382, 1, x_381); -x_383 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__13; -x_384 = lean_array_push(x_383, x_382); -x_385 = lean_array_push(x_384, x_357); -x_386 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__10; -x_387 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_387, 0, x_386); -lean_ctor_set(x_387, 1, x_385); -x_388 = lean_array_push(x_339, x_387); -x_389 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_389, 0, x_341); -lean_ctor_set(x_389, 1, x_388); -x_390 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__8; -x_391 = lean_array_push(x_390, x_389); -x_392 = l_myMacro____x40_Init_Notation___hyg_11918____closed__22; -x_393 = lean_array_push(x_391, x_392); -x_394 = lean_array_push(x_393, x_392); -x_395 = lean_array_push(x_394, x_392); -x_396 = lean_array_push(x_395, x_392); -x_397 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__7; -x_398 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_398, 0, x_397); -lean_ctor_set(x_398, 1, x_396); -x_399 = lean_array_push(x_339, x_398); -x_400 = l_Lean_Elab_Command_expandElab___closed__8; -lean_inc(x_334); -lean_inc(x_338); -x_401 = l_Lean_addMacroScope(x_338, x_400, x_334); -x_402 = l_Lean_Elab_Command_expandElab___closed__7; -x_403 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_403, 0, x_350); -lean_ctor_set(x_403, 1, x_402); -lean_ctor_set(x_403, 2, x_401); -lean_ctor_set(x_403, 3, x_372); -x_404 = lean_array_push(x_339, x_403); -x_405 = lean_array_push(x_404, x_392); -x_406 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__25; -x_407 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_407, 0, x_406); -lean_ctor_set(x_407, 1, x_405); -x_408 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__23; -x_409 = lean_array_push(x_408, x_407); -x_410 = l_Lean_Elab_Command_mkCommandElabAttributeUnsafe___closed__9; -lean_inc(x_334); -lean_inc(x_338); -x_411 = l_Lean_addMacroScope(x_338, x_410, x_334); -x_412 = l_Lean_Elab_Command_expandElab___closed__27; -x_413 = l_Lean_Elab_Command_expandElab___closed__29; -x_414 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_414, 0, x_350); -lean_ctor_set(x_414, 1, x_412); -lean_ctor_set(x_414, 2, x_411); -lean_ctor_set(x_414, 3, x_413); -x_415 = l_myMacro____x40_Init_Notation___hyg_11918____closed__11; -x_416 = lean_array_push(x_415, x_414); -x_417 = l_Lean_expandExplicitBindersAux_loop___closed__8; -x_418 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_418, 0, x_417); -lean_ctor_set(x_418, 1, x_416); -x_419 = lean_array_push(x_339, x_418); -x_420 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_420, 0, x_341); -lean_ctor_set(x_420, 1, x_419); -x_421 = lean_array_push(x_390, x_420); -x_422 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__27; -x_423 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_423, 0, x_422); -lean_ctor_set(x_423, 1, x_421); -x_424 = lean_array_push(x_409, x_423); -x_425 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__22; -x_426 = lean_array_push(x_425, x_43); -x_427 = l_myMacro____x40_Init_Notation___hyg_49____closed__16; -x_428 = lean_array_push(x_426, x_427); -x_429 = l_Lean_Parser_Term_quot___elambda__1___closed__1; -x_430 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_430, 0, x_429); -lean_ctor_set(x_430, 1, x_428); -x_431 = lean_array_push(x_339, x_430); -x_432 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_432, 0, x_341); -lean_ctor_set(x_432, 1, x_431); -x_433 = lean_array_push(x_339, x_432); -x_434 = l_myMacro____x40_Init_Notation___hyg_10790____closed__17; -x_435 = lean_array_push(x_433, x_434); -x_436 = lean_array_push(x_435, x_22); -x_437 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; -x_438 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_438, 0, x_437); -lean_ctor_set(x_438, 1, x_436); -x_439 = lean_array_push(x_339, x_438); -x_440 = l_Lean_myMacro____x40_Init_Notation___hyg_12778____closed__3; -x_441 = lean_array_push(x_439, x_440); -x_442 = l_Lean_Elab_Command_expandElab___closed__19; -x_443 = l_Lean_addMacroScope(x_338, x_442, x_334); -x_444 = l_Lean_Elab_Command_expandElab___closed__18; -x_445 = l_Lean_Elab_Command_expandElab___closed__22; -x_446 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_446, 0, x_350); -lean_ctor_set(x_446, 1, x_444); -lean_ctor_set(x_446, 2, x_443); -lean_ctor_set(x_446, 3, x_445); -x_447 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__23; -x_448 = lean_array_push(x_447, x_446); -x_449 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_449, 0, x_437); -lean_ctor_set(x_449, 1, x_448); -x_450 = lean_array_push(x_441, x_449); -x_451 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_451, 0, x_341); -lean_ctor_set(x_451, 1, x_450); -x_452 = l_Lean_Elab_Term_expandFunBinders_loop___closed__10; -x_453 = lean_array_push(x_452, x_451); -x_454 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; -x_455 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_455, 0, x_454); -lean_ctor_set(x_455, 1, x_453); -x_456 = l_myMacro____x40_Init_Notation___hyg_10790____closed__13; -x_457 = lean_array_push(x_456, x_455); -x_458 = l_myMacro____x40_Init_Notation___hyg_10790____closed__11; -x_459 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_459, 0, x_458); -lean_ctor_set(x_459, 1, x_457); -x_460 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15698____closed__5; -x_461 = lean_array_push(x_460, x_459); -x_462 = lean_array_push(x_461, x_392); -x_463 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__46; -x_464 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_464, 0, x_463); -lean_ctor_set(x_464, 1, x_462); -x_465 = lean_array_push(x_424, x_464); -x_466 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__21; -x_467 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_467, 0, x_466); -lean_ctor_set(x_467, 1, x_465); -x_468 = lean_array_push(x_399, x_467); -x_469 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__5; -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_369, x_470); -x_472 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_472, 0, x_341); -lean_ctor_set(x_472, 1, x_471); -lean_ctor_set(x_336, 0, x_472); -return x_336; +lean_ctor_set(x_354, 1, x_217); +return x_354; } else { -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; lean_object* x_554; lean_object* x_555; lean_object* x_556; lean_object* x_557; lean_object* x_558; lean_object* x_559; lean_object* x_560; lean_object* x_561; lean_object* x_562; lean_object* x_563; lean_object* x_564; lean_object* x_565; lean_object* x_566; lean_object* x_567; lean_object* x_568; lean_object* x_569; lean_object* x_570; lean_object* x_571; lean_object* x_572; lean_object* x_573; lean_object* x_574; lean_object* x_575; lean_object* x_576; lean_object* x_577; lean_object* x_578; lean_object* x_579; lean_object* x_580; lean_object* x_581; lean_object* x_582; lean_object* x_583; lean_object* x_584; lean_object* x_585; lean_object* x_586; lean_object* x_587; lean_object* x_588; lean_object* x_589; lean_object* x_590; lean_object* x_591; lean_object* x_592; lean_object* x_593; lean_object* x_594; lean_object* x_595; lean_object* x_596; lean_object* x_597; lean_object* x_598; lean_object* x_599; lean_object* x_600; lean_object* x_601; lean_object* x_602; lean_object* x_603; lean_object* x_604; lean_object* x_605; lean_object* x_606; lean_object* x_607; lean_object* x_608; lean_object* x_609; -x_473 = lean_ctor_get(x_336, 0); -x_474 = lean_ctor_get(x_336, 1); -lean_inc(x_474); -lean_inc(x_473); -lean_dec(x_336); -x_475 = l_Array_empty___closed__1; -x_476 = l_Array_appendCore___rarg(x_475, x_8); +lean_object* x_355; lean_object* x_356; lean_object* x_357; lean_object* x_358; lean_object* x_359; lean_object* x_360; lean_object* x_361; lean_object* x_362; lean_object* x_363; lean_object* x_364; lean_object* x_365; lean_object* x_366; lean_object* x_367; lean_object* x_368; lean_object* x_369; lean_object* x_370; lean_object* x_371; +x_355 = lean_ctor_get(x_8, 0); +lean_inc(x_355); lean_dec(x_8); -x_477 = l_Lean_nullKind___closed__2; -x_478 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_478, 0, x_477); -lean_ctor_set(x_478, 1, x_476); -x_479 = l_Lean_Elab_Command_expandMacro___closed__1; -x_480 = lean_array_push(x_479, x_478); -x_481 = lean_array_push(x_475, x_44); -x_482 = l_myMacro____x40_Init_Notation___hyg_376____closed__8; -lean_inc(x_481); -x_483 = lean_array_push(x_481, x_482); -x_484 = l_Nat_repr(x_11); -x_485 = l_Lean_numLitKind; -x_486 = l_Lean_instInhabitedSourceInfo___closed__1; -x_487 = l_Lean_Syntax_mkLit(x_485, x_484, x_486); -x_488 = lean_array_push(x_483, x_487); -x_489 = l_Lean_Parser_Command_parserKindPrio___elambda__1___closed__2; -x_490 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_490, 0, x_489); -lean_ctor_set(x_490, 1, x_488); -x_491 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3404____closed__9; -x_492 = lean_array_push(x_491, x_490); -x_493 = l_Lean_myMacro____x40_Init_Notation___hyg_12778____closed__11; -x_494 = lean_array_push(x_492, x_493); -x_495 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_495, 0, x_477); -lean_ctor_set(x_495, 1, x_494); -x_496 = lean_array_push(x_480, x_495); -x_497 = l_Array_appendCore___rarg(x_475, x_30); -lean_dec(x_30); -x_498 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_498, 0, x_477); -lean_ctor_set(x_498, 1, x_497); -x_499 = lean_array_push(x_496, x_498); -x_500 = l_myMacro____x40_Init_Notation___hyg_11918____closed__10; -x_501 = lean_array_push(x_499, x_500); -x_502 = lean_array_push(x_501, x_18); -x_503 = l_Lean_Parser_Command_syntax___elambda__1___closed__1; -x_504 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_504, 0, x_503); -lean_ctor_set(x_504, 1, x_502); -x_505 = lean_array_push(x_475, x_504); -x_506 = l_Lean_Elab_Command_mkCommandElabAttributeUnsafe___closed__7; -lean_inc(x_334); -lean_inc(x_473); -x_507 = l_Lean_addMacroScope(x_473, x_506, x_334); -x_508 = lean_box(0); -x_509 = l_Lean_Elab_Command_expandElab___closed__24; -x_510 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_510, 0, x_486); -lean_ctor_set(x_510, 1, x_509); -lean_ctor_set(x_510, 2, x_507); -lean_ctor_set(x_510, 3, x_508); -x_511 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__2; -x_512 = lean_array_push(x_511, x_510); -x_513 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_513, 0, x_477); -lean_ctor_set(x_513, 1, x_481); -x_514 = lean_array_push(x_512, x_513); -x_515 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__15; -x_516 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_516, 0, x_515); -lean_ctor_set(x_516, 1, x_514); -x_517 = lean_array_push(x_475, x_516); +x_356 = lean_array_push(x_218, x_355); +x_357 = l_Array_appendCore___rarg(x_218, x_356); +lean_dec(x_356); +x_358 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_358, 0, x_233); +lean_ctor_set(x_358, 1, x_357); +x_359 = l_Lean_Elab_Command_expandMacro___closed__1; +x_360 = lean_array_push(x_359, x_358); +x_361 = lean_array_push(x_360, x_234); +x_362 = lean_array_push(x_361, x_242); +x_363 = l_myMacro____x40_Init_Notation___hyg_11918____closed__10; +x_364 = lean_array_push(x_362, x_363); +x_365 = lean_array_push(x_364, x_18); +x_366 = l_Lean_Parser_Command_syntax___elambda__1___closed__1; +x_367 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_367, 0, x_366); +lean_ctor_set(x_367, 1, x_365); +x_368 = lean_array_push(x_218, x_367); +x_369 = lean_array_push(x_368, x_342); +x_370 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_370, 0, x_233); +lean_ctor_set(x_370, 1, x_369); +x_371 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_371, 0, x_370); +lean_ctor_set(x_371, 1, x_217); +return x_371; +} +} +} +} +else +{ +lean_object* x_372; lean_object* x_373; lean_object* x_374; lean_object* x_375; uint8_t x_376; +lean_dec(x_23); +x_372 = l_Lean_Elab_Command_getCurrMacroScope(x_3, x_4, x_39); +lean_dec(x_3); +x_373 = lean_ctor_get(x_372, 0); +lean_inc(x_373); +x_374 = lean_ctor_get(x_372, 1); +lean_inc(x_374); +lean_dec(x_372); +x_375 = l_Lean_Elab_Command_getMainModule___rarg(x_4, x_374); +x_376 = !lean_is_exclusive(x_375); +if (x_376 == 0) +{ +lean_object* x_377; lean_object* x_378; lean_object* x_379; lean_object* x_380; lean_object* x_381; lean_object* x_382; lean_object* x_383; lean_object* x_384; lean_object* x_385; lean_object* x_386; lean_object* x_387; lean_object* x_388; lean_object* x_389; lean_object* x_390; lean_object* x_391; lean_object* x_392; lean_object* x_393; lean_object* x_394; lean_object* x_395; size_t x_396; size_t x_397; lean_object* x_398; lean_object* x_399; lean_object* x_400; lean_object* x_401; lean_object* x_402; lean_object* x_403; lean_object* x_404; lean_object* x_405; lean_object* x_406; lean_object* x_407; lean_object* x_408; lean_object* x_409; lean_object* x_410; lean_object* x_411; lean_object* x_412; lean_object* x_413; lean_object* x_414; lean_object* x_415; lean_object* x_416; lean_object* x_417; lean_object* x_418; lean_object* x_419; lean_object* x_420; lean_object* x_421; lean_object* x_422; lean_object* x_423; lean_object* x_424; lean_object* x_425; lean_object* x_426; lean_object* x_427; lean_object* x_428; lean_object* x_429; lean_object* x_430; lean_object* x_431; lean_object* x_432; lean_object* x_433; lean_object* x_434; lean_object* x_435; lean_object* x_436; lean_object* x_437; lean_object* x_438; lean_object* x_439; lean_object* x_440; lean_object* x_441; lean_object* x_442; lean_object* x_443; lean_object* x_444; lean_object* x_445; lean_object* x_446; lean_object* x_447; lean_object* x_448; lean_object* x_449; lean_object* x_450; lean_object* x_451; lean_object* x_452; lean_object* x_453; lean_object* x_454; lean_object* x_455; lean_object* x_456; lean_object* x_457; lean_object* x_458; lean_object* x_459; lean_object* x_460; lean_object* x_461; lean_object* x_462; lean_object* x_463; lean_object* x_464; lean_object* x_465; lean_object* x_466; lean_object* x_467; lean_object* x_468; lean_object* x_469; lean_object* x_470; lean_object* x_471; lean_object* x_472; lean_object* x_473; lean_object* x_474; lean_object* x_475; lean_object* x_476; lean_object* x_477; lean_object* x_478; lean_object* x_479; lean_object* x_480; lean_object* x_481; lean_object* x_482; lean_object* x_483; lean_object* x_484; lean_object* x_485; lean_object* x_486; lean_object* x_487; lean_object* x_488; lean_object* x_489; lean_object* x_490; lean_object* x_491; lean_object* x_492; lean_object* x_493; lean_object* x_494; lean_object* x_495; lean_object* x_496; lean_object* x_497; lean_object* x_498; lean_object* x_499; lean_object* x_500; lean_object* x_501; lean_object* x_502; lean_object* x_503; +x_377 = lean_ctor_get(x_375, 0); +x_378 = l_Array_empty___closed__1; +x_379 = lean_array_push(x_378, x_44); +x_380 = l_myMacro____x40_Init_Notation___hyg_376____closed__8; +lean_inc(x_379); +x_381 = lean_array_push(x_379, x_380); +x_382 = l_Nat_repr(x_11); +x_383 = l_Lean_numLitKind; +x_384 = l_Lean_instInhabitedSourceInfo___closed__1; +x_385 = l_Lean_Syntax_mkLit(x_383, x_382, x_384); +x_386 = lean_array_push(x_381, x_385); +x_387 = l_Lean_Parser_Command_parserKindPrio___elambda__1___closed__2; +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 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3404____closed__9; +x_390 = lean_array_push(x_389, x_388); +x_391 = l_Lean_myMacro____x40_Init_Notation___hyg_12778____closed__11; +x_392 = lean_array_push(x_390, x_391); +x_393 = l_Lean_nullKind___closed__2; +x_394 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_394, 0, x_393); +lean_ctor_set(x_394, 1, x_392); +x_395 = lean_array_get_size(x_30); +x_396 = lean_usize_of_nat(x_395); +lean_dec(x_395); +x_397 = 0; +x_398 = x_30; +x_399 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_2962____spec__3(x_396, x_397, x_398); +x_400 = x_399; +x_401 = l_Array_appendCore___rarg(x_378, x_400); +lean_dec(x_400); +x_402 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_402, 0, x_393); +lean_ctor_set(x_402, 1, x_401); +x_403 = l_Lean_Elab_Command_mkCommandElabAttributeUnsafe___closed__7; +lean_inc(x_373); +lean_inc(x_377); +x_404 = l_Lean_addMacroScope(x_377, x_403, x_373); +x_405 = lean_box(0); +x_406 = l_Lean_Elab_Command_expandElab___closed__24; +x_407 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_407, 0, x_384); +lean_ctor_set(x_407, 1, x_406); +lean_ctor_set(x_407, 2, x_404); +lean_ctor_set(x_407, 3, x_405); +x_408 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__2; +x_409 = lean_array_push(x_408, x_407); +x_410 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_410, 0, x_393); +lean_ctor_set(x_410, 1, x_379); +x_411 = lean_array_push(x_409, x_410); +x_412 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__15; +x_413 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_413, 0, x_412); +lean_ctor_set(x_413, 1, x_411); +x_414 = lean_array_push(x_378, x_413); +x_415 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_415, 0, x_393); +lean_ctor_set(x_415, 1, x_414); +x_416 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__13; +x_417 = lean_array_push(x_416, x_415); +x_418 = lean_array_push(x_417, x_391); +x_419 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__10; +x_420 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_420, 0, x_419); +lean_ctor_set(x_420, 1, x_418); +x_421 = lean_array_push(x_378, x_420); +x_422 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_422, 0, x_393); +lean_ctor_set(x_422, 1, x_421); +x_423 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__8; +x_424 = lean_array_push(x_423, x_422); +x_425 = l_myMacro____x40_Init_Notation___hyg_11918____closed__22; +x_426 = lean_array_push(x_424, x_425); +x_427 = lean_array_push(x_426, x_425); +x_428 = lean_array_push(x_427, x_425); +x_429 = lean_array_push(x_428, x_425); +x_430 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__7; +x_431 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_431, 0, x_430); +lean_ctor_set(x_431, 1, x_429); +x_432 = lean_array_push(x_378, x_431); +x_433 = l_Lean_Elab_Command_expandElab___closed__8; +lean_inc(x_373); +lean_inc(x_377); +x_434 = l_Lean_addMacroScope(x_377, x_433, x_373); +x_435 = l_Lean_Elab_Command_expandElab___closed__7; +x_436 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_436, 0, x_384); +lean_ctor_set(x_436, 1, x_435); +lean_ctor_set(x_436, 2, x_434); +lean_ctor_set(x_436, 3, x_405); +x_437 = lean_array_push(x_378, x_436); +x_438 = lean_array_push(x_437, x_425); +x_439 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__25; +x_440 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_440, 0, x_439); +lean_ctor_set(x_440, 1, x_438); +x_441 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__23; +x_442 = lean_array_push(x_441, x_440); +x_443 = l_Lean_Elab_Command_mkCommandElabAttributeUnsafe___closed__9; +lean_inc(x_373); +lean_inc(x_377); +x_444 = l_Lean_addMacroScope(x_377, x_443, x_373); +x_445 = l_Lean_Elab_Command_expandElab___closed__27; +x_446 = l_Lean_Elab_Command_expandElab___closed__29; +x_447 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_447, 0, x_384); +lean_ctor_set(x_447, 1, x_445); +lean_ctor_set(x_447, 2, x_444); +lean_ctor_set(x_447, 3, x_446); +x_448 = l_myMacro____x40_Init_Notation___hyg_11918____closed__11; +x_449 = lean_array_push(x_448, x_447); +x_450 = l_Lean_expandExplicitBindersAux_loop___closed__8; +x_451 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_451, 0, x_450); +lean_ctor_set(x_451, 1, x_449); +x_452 = lean_array_push(x_378, x_451); +x_453 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_453, 0, x_393); +lean_ctor_set(x_453, 1, x_452); +x_454 = lean_array_push(x_423, x_453); +x_455 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__27; +x_456 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_456, 0, x_455); +lean_ctor_set(x_456, 1, x_454); +x_457 = lean_array_push(x_442, x_456); +x_458 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__22; +x_459 = lean_array_push(x_458, x_43); +x_460 = l_myMacro____x40_Init_Notation___hyg_49____closed__16; +x_461 = lean_array_push(x_459, x_460); +x_462 = l_Lean_Parser_Term_quot___elambda__1___closed__1; +x_463 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_463, 0, x_462); +lean_ctor_set(x_463, 1, x_461); +x_464 = lean_array_push(x_378, x_463); +x_465 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_465, 0, x_393); +lean_ctor_set(x_465, 1, x_464); +x_466 = lean_array_push(x_378, x_465); +x_467 = l_myMacro____x40_Init_Notation___hyg_10790____closed__17; +x_468 = lean_array_push(x_466, x_467); +x_469 = lean_array_push(x_468, x_22); +x_470 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +x_471 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_471, 0, x_470); +lean_ctor_set(x_471, 1, x_469); +x_472 = lean_array_push(x_378, x_471); +x_473 = l_Lean_myMacro____x40_Init_Notation___hyg_12778____closed__3; +x_474 = lean_array_push(x_472, x_473); +x_475 = l_Lean_Elab_Command_expandElab___closed__19; +x_476 = l_Lean_addMacroScope(x_377, x_475, x_373); +x_477 = l_Lean_Elab_Command_expandElab___closed__18; +x_478 = l_Lean_Elab_Command_expandElab___closed__22; +x_479 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_479, 0, x_384); +lean_ctor_set(x_479, 1, x_477); +lean_ctor_set(x_479, 2, x_476); +lean_ctor_set(x_479, 3, x_478); +x_480 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__23; +x_481 = lean_array_push(x_480, x_479); +x_482 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_482, 0, x_470); +lean_ctor_set(x_482, 1, x_481); +x_483 = lean_array_push(x_474, x_482); +x_484 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_484, 0, x_393); +lean_ctor_set(x_484, 1, x_483); +x_485 = l_Lean_Elab_Term_expandFunBinders_loop___closed__10; +x_486 = lean_array_push(x_485, x_484); +x_487 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_488 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_488, 0, x_487); +lean_ctor_set(x_488, 1, x_486); +x_489 = l_myMacro____x40_Init_Notation___hyg_10790____closed__13; +x_490 = lean_array_push(x_489, x_488); +x_491 = l_myMacro____x40_Init_Notation___hyg_10790____closed__11; +x_492 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_492, 0, x_491); +lean_ctor_set(x_492, 1, x_490); +x_493 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15704____closed__5; +x_494 = lean_array_push(x_493, x_492); +x_495 = lean_array_push(x_494, x_425); +x_496 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__46; +x_497 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_497, 0, x_496); +lean_ctor_set(x_497, 1, x_495); +x_498 = lean_array_push(x_457, x_497); +x_499 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__21; +x_500 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_500, 0, x_499); +lean_ctor_set(x_500, 1, x_498); +x_501 = lean_array_push(x_432, x_500); +x_502 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__5; +x_503 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_503, 0, x_502); +lean_ctor_set(x_503, 1, x_501); +if (lean_obj_tag(x_8) == 0) +{ +lean_object* x_504; lean_object* x_505; lean_object* x_506; lean_object* x_507; lean_object* x_508; lean_object* x_509; lean_object* x_510; lean_object* x_511; lean_object* x_512; lean_object* x_513; lean_object* x_514; +x_504 = l_Lean_Elab_Command_expandMacro___closed__3; +x_505 = lean_array_push(x_504, x_394); +x_506 = lean_array_push(x_505, x_402); +x_507 = l_myMacro____x40_Init_Notation___hyg_11918____closed__10; +x_508 = lean_array_push(x_506, x_507); +x_509 = lean_array_push(x_508, x_18); +x_510 = l_Lean_Parser_Command_syntax___elambda__1___closed__1; +x_511 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_511, 0, x_510); +lean_ctor_set(x_511, 1, x_509); +x_512 = lean_array_push(x_378, x_511); +x_513 = lean_array_push(x_512, x_503); +x_514 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_514, 0, x_393); +lean_ctor_set(x_514, 1, x_513); +lean_ctor_set(x_375, 0, x_514); +return x_375; +} +else +{ +lean_object* x_515; lean_object* x_516; lean_object* x_517; lean_object* x_518; lean_object* x_519; lean_object* x_520; lean_object* x_521; lean_object* x_522; lean_object* x_523; lean_object* x_524; lean_object* x_525; lean_object* x_526; lean_object* x_527; lean_object* x_528; lean_object* x_529; lean_object* x_530; +x_515 = lean_ctor_get(x_8, 0); +lean_inc(x_515); +lean_dec(x_8); +x_516 = lean_array_push(x_378, x_515); +x_517 = l_Array_appendCore___rarg(x_378, x_516); +lean_dec(x_516); x_518 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_518, 0, x_477); +lean_ctor_set(x_518, 0, x_393); lean_ctor_set(x_518, 1, x_517); -x_519 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__13; +x_519 = l_Lean_Elab_Command_expandMacro___closed__1; x_520 = lean_array_push(x_519, x_518); -x_521 = lean_array_push(x_520, x_493); -x_522 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__10; -x_523 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_523, 0, x_522); -lean_ctor_set(x_523, 1, x_521); -x_524 = lean_array_push(x_475, x_523); -x_525 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_525, 0, x_477); -lean_ctor_set(x_525, 1, x_524); -x_526 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__8; -x_527 = lean_array_push(x_526, x_525); -x_528 = l_myMacro____x40_Init_Notation___hyg_11918____closed__22; -x_529 = lean_array_push(x_527, x_528); -x_530 = lean_array_push(x_529, x_528); -x_531 = lean_array_push(x_530, x_528); -x_532 = lean_array_push(x_531, x_528); -x_533 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__7; -x_534 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_534, 0, x_533); -lean_ctor_set(x_534, 1, x_532); -x_535 = lean_array_push(x_475, x_534); -x_536 = l_Lean_Elab_Command_expandElab___closed__8; -lean_inc(x_334); -lean_inc(x_473); -x_537 = l_Lean_addMacroScope(x_473, x_536, x_334); -x_538 = l_Lean_Elab_Command_expandElab___closed__7; -x_539 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_539, 0, x_486); -lean_ctor_set(x_539, 1, x_538); -lean_ctor_set(x_539, 2, x_537); -lean_ctor_set(x_539, 3, x_508); -x_540 = lean_array_push(x_475, x_539); -x_541 = lean_array_push(x_540, x_528); -x_542 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__25; +x_521 = lean_array_push(x_520, x_394); +x_522 = lean_array_push(x_521, x_402); +x_523 = l_myMacro____x40_Init_Notation___hyg_11918____closed__10; +x_524 = lean_array_push(x_522, x_523); +x_525 = lean_array_push(x_524, x_18); +x_526 = l_Lean_Parser_Command_syntax___elambda__1___closed__1; +x_527 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_527, 0, x_526); +lean_ctor_set(x_527, 1, x_525); +x_528 = lean_array_push(x_378, x_527); +x_529 = lean_array_push(x_528, x_503); +x_530 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_530, 0, x_393); +lean_ctor_set(x_530, 1, x_529); +lean_ctor_set(x_375, 0, x_530); +return x_375; +} +} +else +{ +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; size_t x_551; size_t x_552; lean_object* x_553; lean_object* x_554; lean_object* x_555; lean_object* x_556; lean_object* x_557; lean_object* x_558; lean_object* x_559; lean_object* x_560; lean_object* x_561; lean_object* x_562; lean_object* x_563; lean_object* x_564; lean_object* x_565; lean_object* x_566; lean_object* x_567; lean_object* x_568; lean_object* x_569; lean_object* x_570; lean_object* x_571; lean_object* x_572; lean_object* x_573; lean_object* x_574; lean_object* x_575; lean_object* x_576; lean_object* x_577; lean_object* x_578; lean_object* x_579; lean_object* x_580; lean_object* x_581; lean_object* x_582; lean_object* x_583; lean_object* x_584; lean_object* x_585; lean_object* x_586; lean_object* x_587; lean_object* x_588; lean_object* x_589; lean_object* x_590; lean_object* x_591; lean_object* x_592; lean_object* x_593; lean_object* x_594; lean_object* x_595; lean_object* x_596; lean_object* x_597; lean_object* x_598; lean_object* x_599; lean_object* x_600; lean_object* x_601; lean_object* x_602; lean_object* x_603; lean_object* x_604; lean_object* x_605; lean_object* x_606; lean_object* x_607; lean_object* x_608; lean_object* x_609; lean_object* x_610; lean_object* x_611; lean_object* x_612; lean_object* x_613; lean_object* x_614; lean_object* x_615; lean_object* x_616; lean_object* x_617; lean_object* x_618; lean_object* x_619; lean_object* x_620; lean_object* x_621; lean_object* x_622; lean_object* x_623; lean_object* x_624; lean_object* x_625; lean_object* x_626; lean_object* x_627; lean_object* x_628; lean_object* x_629; lean_object* x_630; lean_object* x_631; lean_object* x_632; lean_object* x_633; lean_object* x_634; lean_object* x_635; lean_object* x_636; lean_object* x_637; lean_object* x_638; lean_object* x_639; lean_object* x_640; lean_object* x_641; lean_object* x_642; lean_object* x_643; lean_object* x_644; lean_object* x_645; lean_object* x_646; lean_object* x_647; lean_object* x_648; lean_object* x_649; lean_object* x_650; lean_object* x_651; lean_object* x_652; lean_object* x_653; lean_object* x_654; lean_object* x_655; lean_object* x_656; lean_object* x_657; lean_object* x_658; +x_531 = lean_ctor_get(x_375, 0); +x_532 = lean_ctor_get(x_375, 1); +lean_inc(x_532); +lean_inc(x_531); +lean_dec(x_375); +x_533 = l_Array_empty___closed__1; +x_534 = lean_array_push(x_533, x_44); +x_535 = l_myMacro____x40_Init_Notation___hyg_376____closed__8; +lean_inc(x_534); +x_536 = lean_array_push(x_534, x_535); +x_537 = l_Nat_repr(x_11); +x_538 = l_Lean_numLitKind; +x_539 = l_Lean_instInhabitedSourceInfo___closed__1; +x_540 = l_Lean_Syntax_mkLit(x_538, x_537, x_539); +x_541 = lean_array_push(x_536, x_540); +x_542 = l_Lean_Parser_Command_parserKindPrio___elambda__1___closed__2; x_543 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_543, 0, x_542); lean_ctor_set(x_543, 1, x_541); -x_544 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__23; +x_544 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3404____closed__9; x_545 = lean_array_push(x_544, x_543); -x_546 = l_Lean_Elab_Command_mkCommandElabAttributeUnsafe___closed__9; -lean_inc(x_334); -lean_inc(x_473); -x_547 = l_Lean_addMacroScope(x_473, x_546, x_334); -x_548 = l_Lean_Elab_Command_expandElab___closed__27; -x_549 = l_Lean_Elab_Command_expandElab___closed__29; -x_550 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_550, 0, x_486); -lean_ctor_set(x_550, 1, x_548); -lean_ctor_set(x_550, 2, x_547); -lean_ctor_set(x_550, 3, x_549); -x_551 = l_myMacro____x40_Init_Notation___hyg_11918____closed__11; -x_552 = lean_array_push(x_551, x_550); -x_553 = l_Lean_expandExplicitBindersAux_loop___closed__8; -x_554 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_554, 0, x_553); -lean_ctor_set(x_554, 1, x_552); -x_555 = lean_array_push(x_475, x_554); -x_556 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_556, 0, x_477); -lean_ctor_set(x_556, 1, x_555); -x_557 = lean_array_push(x_526, x_556); -x_558 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__27; -x_559 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_559, 0, x_558); -lean_ctor_set(x_559, 1, x_557); -x_560 = lean_array_push(x_545, x_559); -x_561 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__22; -x_562 = lean_array_push(x_561, x_43); -x_563 = l_myMacro____x40_Init_Notation___hyg_49____closed__16; -x_564 = lean_array_push(x_562, x_563); -x_565 = l_Lean_Parser_Term_quot___elambda__1___closed__1; -x_566 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_566, 0, x_565); -lean_ctor_set(x_566, 1, x_564); -x_567 = lean_array_push(x_475, x_566); +x_546 = l_Lean_myMacro____x40_Init_Notation___hyg_12778____closed__11; +x_547 = lean_array_push(x_545, x_546); +x_548 = l_Lean_nullKind___closed__2; +x_549 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_549, 0, x_548); +lean_ctor_set(x_549, 1, x_547); +x_550 = lean_array_get_size(x_30); +x_551 = lean_usize_of_nat(x_550); +lean_dec(x_550); +x_552 = 0; +x_553 = x_30; +x_554 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_2962____spec__3(x_551, x_552, x_553); +x_555 = x_554; +x_556 = l_Array_appendCore___rarg(x_533, x_555); +lean_dec(x_555); +x_557 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_557, 0, x_548); +lean_ctor_set(x_557, 1, x_556); +x_558 = l_Lean_Elab_Command_mkCommandElabAttributeUnsafe___closed__7; +lean_inc(x_373); +lean_inc(x_531); +x_559 = l_Lean_addMacroScope(x_531, x_558, x_373); +x_560 = lean_box(0); +x_561 = l_Lean_Elab_Command_expandElab___closed__24; +x_562 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_562, 0, x_539); +lean_ctor_set(x_562, 1, x_561); +lean_ctor_set(x_562, 2, x_559); +lean_ctor_set(x_562, 3, x_560); +x_563 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__2; +x_564 = lean_array_push(x_563, x_562); +x_565 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_565, 0, x_548); +lean_ctor_set(x_565, 1, x_534); +x_566 = lean_array_push(x_564, x_565); +x_567 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__15; x_568 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_568, 0, x_477); -lean_ctor_set(x_568, 1, x_567); -x_569 = lean_array_push(x_475, x_568); -x_570 = l_myMacro____x40_Init_Notation___hyg_10790____closed__17; -x_571 = lean_array_push(x_569, x_570); -x_572 = lean_array_push(x_571, x_22); -x_573 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; -x_574 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_574, 0, x_573); -lean_ctor_set(x_574, 1, x_572); -x_575 = lean_array_push(x_475, x_574); -x_576 = l_Lean_myMacro____x40_Init_Notation___hyg_12778____closed__3; -x_577 = lean_array_push(x_575, x_576); -x_578 = l_Lean_Elab_Command_expandElab___closed__19; -x_579 = l_Lean_addMacroScope(x_473, x_578, x_334); -x_580 = l_Lean_Elab_Command_expandElab___closed__18; -x_581 = l_Lean_Elab_Command_expandElab___closed__22; -x_582 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_582, 0, x_486); -lean_ctor_set(x_582, 1, x_580); -lean_ctor_set(x_582, 2, x_579); -lean_ctor_set(x_582, 3, x_581); -x_583 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__23; -x_584 = lean_array_push(x_583, x_582); -x_585 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_585, 0, x_573); -lean_ctor_set(x_585, 1, x_584); -x_586 = lean_array_push(x_577, x_585); -x_587 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_587, 0, x_477); -lean_ctor_set(x_587, 1, x_586); -x_588 = l_Lean_Elab_Term_expandFunBinders_loop___closed__10; -x_589 = lean_array_push(x_588, x_587); -x_590 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; -x_591 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_591, 0, x_590); -lean_ctor_set(x_591, 1, x_589); -x_592 = l_myMacro____x40_Init_Notation___hyg_10790____closed__13; -x_593 = lean_array_push(x_592, x_591); -x_594 = l_myMacro____x40_Init_Notation___hyg_10790____closed__11; +lean_ctor_set(x_568, 0, x_567); +lean_ctor_set(x_568, 1, x_566); +x_569 = lean_array_push(x_533, x_568); +x_570 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_570, 0, x_548); +lean_ctor_set(x_570, 1, x_569); +x_571 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__13; +x_572 = lean_array_push(x_571, x_570); +x_573 = lean_array_push(x_572, x_546); +x_574 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__10; +x_575 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_575, 0, x_574); +lean_ctor_set(x_575, 1, x_573); +x_576 = lean_array_push(x_533, x_575); +x_577 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_577, 0, x_548); +lean_ctor_set(x_577, 1, x_576); +x_578 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__8; +x_579 = lean_array_push(x_578, x_577); +x_580 = l_myMacro____x40_Init_Notation___hyg_11918____closed__22; +x_581 = lean_array_push(x_579, x_580); +x_582 = lean_array_push(x_581, x_580); +x_583 = lean_array_push(x_582, x_580); +x_584 = lean_array_push(x_583, x_580); +x_585 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__7; +x_586 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_586, 0, x_585); +lean_ctor_set(x_586, 1, x_584); +x_587 = lean_array_push(x_533, x_586); +x_588 = l_Lean_Elab_Command_expandElab___closed__8; +lean_inc(x_373); +lean_inc(x_531); +x_589 = l_Lean_addMacroScope(x_531, x_588, x_373); +x_590 = l_Lean_Elab_Command_expandElab___closed__7; +x_591 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_591, 0, x_539); +lean_ctor_set(x_591, 1, x_590); +lean_ctor_set(x_591, 2, x_589); +lean_ctor_set(x_591, 3, x_560); +x_592 = lean_array_push(x_533, x_591); +x_593 = lean_array_push(x_592, x_580); +x_594 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__25; x_595 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_595, 0, x_594); lean_ctor_set(x_595, 1, x_593); -x_596 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15698____closed__5; +x_596 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__23; x_597 = lean_array_push(x_596, x_595); -x_598 = lean_array_push(x_597, x_528); -x_599 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__46; -x_600 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_600, 0, x_599); -lean_ctor_set(x_600, 1, x_598); -x_601 = lean_array_push(x_560, x_600); -x_602 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__21; -x_603 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_603, 0, x_602); -lean_ctor_set(x_603, 1, x_601); -x_604 = lean_array_push(x_535, x_603); -x_605 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__5; +x_598 = l_Lean_Elab_Command_mkCommandElabAttributeUnsafe___closed__9; +lean_inc(x_373); +lean_inc(x_531); +x_599 = l_Lean_addMacroScope(x_531, x_598, x_373); +x_600 = l_Lean_Elab_Command_expandElab___closed__27; +x_601 = l_Lean_Elab_Command_expandElab___closed__29; +x_602 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_602, 0, x_539); +lean_ctor_set(x_602, 1, x_600); +lean_ctor_set(x_602, 2, x_599); +lean_ctor_set(x_602, 3, x_601); +x_603 = l_myMacro____x40_Init_Notation___hyg_11918____closed__11; +x_604 = lean_array_push(x_603, x_602); +x_605 = l_Lean_expandExplicitBindersAux_loop___closed__8; x_606 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_606, 0, x_605); lean_ctor_set(x_606, 1, x_604); -x_607 = lean_array_push(x_505, x_606); +x_607 = lean_array_push(x_533, x_606); x_608 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_608, 0, x_477); +lean_ctor_set(x_608, 0, x_548); lean_ctor_set(x_608, 1, x_607); -x_609 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_609, 0, x_608); -lean_ctor_set(x_609, 1, x_474); -return x_609; +x_609 = lean_array_push(x_578, x_608); +x_610 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__27; +x_611 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_611, 0, x_610); +lean_ctor_set(x_611, 1, x_609); +x_612 = lean_array_push(x_597, x_611); +x_613 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__22; +x_614 = lean_array_push(x_613, x_43); +x_615 = l_myMacro____x40_Init_Notation___hyg_49____closed__16; +x_616 = lean_array_push(x_614, x_615); +x_617 = l_Lean_Parser_Term_quot___elambda__1___closed__1; +x_618 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_618, 0, x_617); +lean_ctor_set(x_618, 1, x_616); +x_619 = lean_array_push(x_533, x_618); +x_620 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_620, 0, x_548); +lean_ctor_set(x_620, 1, x_619); +x_621 = lean_array_push(x_533, x_620); +x_622 = l_myMacro____x40_Init_Notation___hyg_10790____closed__17; +x_623 = lean_array_push(x_621, x_622); +x_624 = lean_array_push(x_623, x_22); +x_625 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +x_626 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_626, 0, x_625); +lean_ctor_set(x_626, 1, x_624); +x_627 = lean_array_push(x_533, x_626); +x_628 = l_Lean_myMacro____x40_Init_Notation___hyg_12778____closed__3; +x_629 = lean_array_push(x_627, x_628); +x_630 = l_Lean_Elab_Command_expandElab___closed__19; +x_631 = l_Lean_addMacroScope(x_531, x_630, x_373); +x_632 = l_Lean_Elab_Command_expandElab___closed__18; +x_633 = l_Lean_Elab_Command_expandElab___closed__22; +x_634 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_634, 0, x_539); +lean_ctor_set(x_634, 1, x_632); +lean_ctor_set(x_634, 2, x_631); +lean_ctor_set(x_634, 3, x_633); +x_635 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__23; +x_636 = lean_array_push(x_635, x_634); +x_637 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_637, 0, x_625); +lean_ctor_set(x_637, 1, x_636); +x_638 = lean_array_push(x_629, x_637); +x_639 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_639, 0, x_548); +lean_ctor_set(x_639, 1, x_638); +x_640 = l_Lean_Elab_Term_expandFunBinders_loop___closed__10; +x_641 = lean_array_push(x_640, x_639); +x_642 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_643 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_643, 0, x_642); +lean_ctor_set(x_643, 1, x_641); +x_644 = l_myMacro____x40_Init_Notation___hyg_10790____closed__13; +x_645 = lean_array_push(x_644, x_643); +x_646 = l_myMacro____x40_Init_Notation___hyg_10790____closed__11; +x_647 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_647, 0, x_646); +lean_ctor_set(x_647, 1, x_645); +x_648 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15704____closed__5; +x_649 = lean_array_push(x_648, x_647); +x_650 = lean_array_push(x_649, x_580); +x_651 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__46; +x_652 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_652, 0, x_651); +lean_ctor_set(x_652, 1, x_650); +x_653 = lean_array_push(x_612, x_652); +x_654 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__21; +x_655 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_655, 0, x_654); +lean_ctor_set(x_655, 1, x_653); +x_656 = lean_array_push(x_587, x_655); +x_657 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__5; +x_658 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_658, 0, x_657); +lean_ctor_set(x_658, 1, x_656); +if (lean_obj_tag(x_8) == 0) +{ +lean_object* x_659; lean_object* x_660; lean_object* x_661; lean_object* x_662; lean_object* x_663; lean_object* x_664; lean_object* x_665; lean_object* x_666; lean_object* x_667; lean_object* x_668; lean_object* x_669; lean_object* x_670; +x_659 = l_Lean_Elab_Command_expandMacro___closed__3; +x_660 = lean_array_push(x_659, x_549); +x_661 = lean_array_push(x_660, x_557); +x_662 = l_myMacro____x40_Init_Notation___hyg_11918____closed__10; +x_663 = lean_array_push(x_661, x_662); +x_664 = lean_array_push(x_663, x_18); +x_665 = l_Lean_Parser_Command_syntax___elambda__1___closed__1; +x_666 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_666, 0, x_665); +lean_ctor_set(x_666, 1, x_664); +x_667 = lean_array_push(x_533, x_666); +x_668 = lean_array_push(x_667, x_658); +x_669 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_669, 0, x_548); +lean_ctor_set(x_669, 1, x_668); +x_670 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_670, 0, x_669); +lean_ctor_set(x_670, 1, x_532); +return x_670; +} +else +{ +lean_object* x_671; lean_object* x_672; lean_object* x_673; lean_object* x_674; lean_object* x_675; lean_object* x_676; lean_object* x_677; lean_object* x_678; lean_object* x_679; lean_object* x_680; lean_object* x_681; lean_object* x_682; lean_object* x_683; lean_object* x_684; lean_object* x_685; lean_object* x_686; lean_object* x_687; +x_671 = lean_ctor_get(x_8, 0); +lean_inc(x_671); +lean_dec(x_8); +x_672 = lean_array_push(x_533, x_671); +x_673 = l_Array_appendCore___rarg(x_533, x_672); +lean_dec(x_672); +x_674 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_674, 0, x_548); +lean_ctor_set(x_674, 1, x_673); +x_675 = l_Lean_Elab_Command_expandMacro___closed__1; +x_676 = lean_array_push(x_675, x_674); +x_677 = lean_array_push(x_676, x_549); +x_678 = lean_array_push(x_677, x_557); +x_679 = l_myMacro____x40_Init_Notation___hyg_11918____closed__10; +x_680 = lean_array_push(x_678, x_679); +x_681 = lean_array_push(x_680, x_18); +x_682 = l_Lean_Parser_Command_syntax___elambda__1___closed__1; +x_683 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_683, 0, x_682); +lean_ctor_set(x_683, 1, x_681); +x_684 = lean_array_push(x_533, x_683); +x_685 = lean_array_push(x_684, x_658); +x_686 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_686, 0, x_548); +lean_ctor_set(x_686, 1, x_685); +x_687 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_687, 0, x_686); +lean_ctor_set(x_687, 1, x_532); +return x_687; +} } } } else { -lean_object* x_610; lean_object* x_611; lean_object* x_612; lean_object* x_613; uint8_t x_614; +lean_object* x_688; lean_object* x_689; lean_object* x_690; lean_object* x_691; uint8_t x_692; lean_dec(x_23); -x_610 = l_Lean_Elab_Command_getCurrMacroScope(x_3, x_4, x_39); +x_688 = l_Lean_Elab_Command_getCurrMacroScope(x_3, x_4, x_39); lean_dec(x_3); -x_611 = lean_ctor_get(x_610, 0); -lean_inc(x_611); -x_612 = lean_ctor_get(x_610, 1); -lean_inc(x_612); -lean_dec(x_610); -x_613 = l_Lean_Elab_Command_getMainModule___rarg(x_4, x_612); -x_614 = !lean_is_exclusive(x_613); -if (x_614 == 0) +x_689 = lean_ctor_get(x_688, 0); +lean_inc(x_689); +x_690 = lean_ctor_get(x_688, 1); +lean_inc(x_690); +lean_dec(x_688); +x_691 = l_Lean_Elab_Command_getMainModule___rarg(x_4, x_690); +x_692 = !lean_is_exclusive(x_691); +if (x_692 == 0) { -lean_object* x_615; lean_object* x_616; lean_object* x_617; lean_object* x_618; lean_object* x_619; lean_object* x_620; lean_object* x_621; lean_object* x_622; lean_object* x_623; lean_object* x_624; lean_object* x_625; lean_object* x_626; lean_object* x_627; lean_object* x_628; lean_object* x_629; lean_object* x_630; lean_object* x_631; lean_object* x_632; lean_object* x_633; lean_object* x_634; lean_object* x_635; lean_object* x_636; lean_object* x_637; lean_object* x_638; lean_object* x_639; lean_object* x_640; lean_object* x_641; lean_object* x_642; lean_object* x_643; lean_object* x_644; lean_object* x_645; lean_object* x_646; lean_object* x_647; lean_object* x_648; lean_object* x_649; lean_object* x_650; lean_object* x_651; lean_object* x_652; lean_object* x_653; lean_object* x_654; lean_object* x_655; lean_object* x_656; lean_object* x_657; lean_object* x_658; lean_object* x_659; lean_object* x_660; lean_object* x_661; lean_object* x_662; lean_object* x_663; lean_object* x_664; lean_object* x_665; lean_object* x_666; lean_object* x_667; lean_object* x_668; lean_object* x_669; lean_object* x_670; lean_object* x_671; lean_object* x_672; lean_object* x_673; lean_object* x_674; lean_object* x_675; lean_object* x_676; lean_object* x_677; lean_object* x_678; lean_object* x_679; lean_object* x_680; lean_object* x_681; lean_object* x_682; lean_object* x_683; lean_object* x_684; lean_object* x_685; lean_object* x_686; lean_object* x_687; lean_object* x_688; lean_object* x_689; lean_object* x_690; lean_object* x_691; lean_object* x_692; lean_object* x_693; lean_object* x_694; lean_object* x_695; lean_object* x_696; lean_object* x_697; lean_object* x_698; lean_object* x_699; lean_object* x_700; lean_object* x_701; lean_object* x_702; lean_object* x_703; lean_object* x_704; lean_object* x_705; lean_object* x_706; lean_object* x_707; lean_object* x_708; lean_object* x_709; lean_object* x_710; lean_object* x_711; lean_object* x_712; lean_object* x_713; lean_object* x_714; lean_object* x_715; lean_object* x_716; lean_object* x_717; lean_object* x_718; lean_object* x_719; lean_object* x_720; lean_object* x_721; lean_object* x_722; lean_object* x_723; lean_object* x_724; lean_object* x_725; lean_object* x_726; lean_object* x_727; lean_object* x_728; lean_object* x_729; lean_object* x_730; lean_object* x_731; lean_object* x_732; lean_object* x_733; lean_object* x_734; lean_object* x_735; lean_object* x_736; lean_object* x_737; lean_object* x_738; lean_object* x_739; lean_object* x_740; lean_object* x_741; lean_object* x_742; lean_object* x_743; lean_object* x_744; lean_object* x_745; lean_object* x_746; lean_object* x_747; lean_object* x_748; lean_object* x_749; lean_object* x_750; lean_object* x_751; lean_object* x_752; lean_object* x_753; lean_object* x_754; lean_object* x_755; lean_object* x_756; lean_object* x_757; lean_object* x_758; lean_object* x_759; lean_object* x_760; lean_object* x_761; lean_object* x_762; lean_object* x_763; lean_object* x_764; lean_object* x_765; lean_object* x_766; lean_object* x_767; lean_object* x_768; lean_object* x_769; lean_object* x_770; lean_object* x_771; lean_object* x_772; lean_object* x_773; lean_object* x_774; lean_object* x_775; -x_615 = lean_ctor_get(x_613, 0); -x_616 = l_Array_empty___closed__1; -x_617 = l_Array_appendCore___rarg(x_616, x_8); -lean_dec(x_8); -x_618 = l_Lean_nullKind___closed__2; -x_619 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_619, 0, x_618); -lean_ctor_set(x_619, 1, x_617); -x_620 = l_Lean_Elab_Command_expandMacro___closed__1; -x_621 = lean_array_push(x_620, x_619); -x_622 = lean_array_push(x_616, x_44); -x_623 = l_myMacro____x40_Init_Notation___hyg_376____closed__8; -lean_inc(x_622); -x_624 = lean_array_push(x_622, x_623); -x_625 = l_Nat_repr(x_11); -x_626 = l_Lean_numLitKind; -x_627 = l_Lean_instInhabitedSourceInfo___closed__1; -x_628 = l_Lean_Syntax_mkLit(x_626, x_625, x_627); -x_629 = lean_array_push(x_624, x_628); -x_630 = l_Lean_Parser_Command_parserKindPrio___elambda__1___closed__2; -x_631 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_631, 0, x_630); -lean_ctor_set(x_631, 1, x_629); -x_632 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3404____closed__9; -x_633 = lean_array_push(x_632, x_631); -x_634 = l_Lean_myMacro____x40_Init_Notation___hyg_12778____closed__11; -x_635 = lean_array_push(x_633, x_634); -x_636 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_636, 0, x_618); -lean_ctor_set(x_636, 1, x_635); -x_637 = lean_array_push(x_621, x_636); -x_638 = l_Array_appendCore___rarg(x_616, x_30); -lean_dec(x_30); -x_639 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_639, 0, x_618); -lean_ctor_set(x_639, 1, x_638); -x_640 = lean_array_push(x_637, x_639); -x_641 = l_myMacro____x40_Init_Notation___hyg_11918____closed__10; -x_642 = lean_array_push(x_640, x_641); -x_643 = lean_array_push(x_642, x_18); -x_644 = l_Lean_Parser_Command_syntax___elambda__1___closed__1; -x_645 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_645, 0, x_644); -lean_ctor_set(x_645, 1, x_643); -x_646 = lean_array_push(x_616, x_645); -x_647 = l_Lean_Elab_Term_mkTermElabAttributeUnsafe___closed__7; -lean_inc(x_611); -lean_inc(x_615); -x_648 = l_Lean_addMacroScope(x_615, x_647, x_611); -x_649 = lean_box(0); -x_650 = l_Lean_Elab_Command_expandElab___closed__31; -x_651 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_651, 0, x_627); -lean_ctor_set(x_651, 1, x_650); -lean_ctor_set(x_651, 2, x_648); -lean_ctor_set(x_651, 3, x_649); -x_652 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__2; -x_653 = lean_array_push(x_652, x_651); -x_654 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_654, 0, x_618); -lean_ctor_set(x_654, 1, x_622); -x_655 = lean_array_push(x_653, x_654); -x_656 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__15; -x_657 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_657, 0, x_656); -lean_ctor_set(x_657, 1, x_655); -x_658 = lean_array_push(x_616, x_657); -x_659 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_659, 0, x_618); -lean_ctor_set(x_659, 1, x_658); -x_660 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__13; -x_661 = lean_array_push(x_660, x_659); -x_662 = lean_array_push(x_661, x_634); -x_663 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__10; -x_664 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_664, 0, x_663); -lean_ctor_set(x_664, 1, x_662); -x_665 = lean_array_push(x_616, x_664); -x_666 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_666, 0, x_618); -lean_ctor_set(x_666, 1, x_665); -x_667 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__8; -x_668 = lean_array_push(x_667, x_666); -x_669 = l_myMacro____x40_Init_Notation___hyg_11918____closed__22; -x_670 = lean_array_push(x_668, x_669); -x_671 = lean_array_push(x_670, x_669); -x_672 = lean_array_push(x_671, x_669); -x_673 = lean_array_push(x_672, x_669); -x_674 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__7; -x_675 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_675, 0, x_674); -lean_ctor_set(x_675, 1, x_673); -x_676 = lean_array_push(x_616, x_675); -x_677 = l_Lean_Elab_Command_expandElab___closed__8; -lean_inc(x_611); -lean_inc(x_615); -x_678 = l_Lean_addMacroScope(x_615, x_677, x_611); -x_679 = l_Lean_Elab_Command_expandElab___closed__7; -x_680 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_680, 0, x_627); -lean_ctor_set(x_680, 1, x_679); -lean_ctor_set(x_680, 2, x_678); -lean_ctor_set(x_680, 3, x_649); -x_681 = lean_array_push(x_616, x_680); -x_682 = lean_array_push(x_681, x_669); -x_683 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__25; -x_684 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_684, 0, x_683); -lean_ctor_set(x_684, 1, x_682); -x_685 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__23; -x_686 = lean_array_push(x_685, x_684); -x_687 = l_Lean_Elab_Term_mkTermElabAttributeUnsafe___closed__9; -lean_inc(x_611); -lean_inc(x_615); -x_688 = l_Lean_addMacroScope(x_615, x_687, x_611); -x_689 = l_Lean_Elab_Command_expandElab___closed__34; -x_690 = l_Lean_Elab_Command_expandElab___closed__36; -x_691 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_691, 0, x_627); -lean_ctor_set(x_691, 1, x_689); -lean_ctor_set(x_691, 2, x_688); -lean_ctor_set(x_691, 3, x_690); -x_692 = l_myMacro____x40_Init_Notation___hyg_11918____closed__11; -x_693 = lean_array_push(x_692, x_691); -x_694 = l_Lean_expandExplicitBindersAux_loop___closed__8; -x_695 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_695, 0, x_694); -lean_ctor_set(x_695, 1, x_693); -x_696 = lean_array_push(x_616, x_695); -x_697 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_697, 0, x_618); -lean_ctor_set(x_697, 1, x_696); -x_698 = lean_array_push(x_667, x_697); -x_699 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__27; -x_700 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_700, 0, x_699); -lean_ctor_set(x_700, 1, x_698); -x_701 = lean_array_push(x_686, x_700); -x_702 = l_stx___x3c_x7c_x3e_____closed__8; -lean_inc(x_611); -lean_inc(x_615); -x_703 = l_Lean_addMacroScope(x_615, x_702, x_611); -x_704 = l_Lean_Elab_Command_expandElab___closed__38; -x_705 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_705, 0, x_627); -lean_ctor_set(x_705, 1, x_704); -lean_ctor_set(x_705, 2, x_703); -lean_ctor_set(x_705, 3, x_649); -lean_inc(x_705); -x_706 = lean_array_push(x_616, x_705); -x_707 = l_myMacro____x40_Init_Notation___hyg_11918____closed__17; +lean_object* x_693; lean_object* x_694; lean_object* x_695; lean_object* x_696; lean_object* x_697; lean_object* x_698; lean_object* x_699; lean_object* x_700; lean_object* x_701; lean_object* x_702; lean_object* x_703; lean_object* x_704; lean_object* x_705; lean_object* x_706; lean_object* x_707; lean_object* x_708; lean_object* x_709; lean_object* x_710; lean_object* x_711; size_t x_712; size_t x_713; lean_object* x_714; lean_object* x_715; lean_object* x_716; lean_object* x_717; lean_object* x_718; lean_object* x_719; lean_object* x_720; lean_object* x_721; lean_object* x_722; lean_object* x_723; lean_object* x_724; lean_object* x_725; lean_object* x_726; lean_object* x_727; lean_object* x_728; lean_object* x_729; lean_object* x_730; lean_object* x_731; lean_object* x_732; lean_object* x_733; lean_object* x_734; lean_object* x_735; lean_object* x_736; lean_object* x_737; lean_object* x_738; lean_object* x_739; lean_object* x_740; lean_object* x_741; lean_object* x_742; lean_object* x_743; lean_object* x_744; lean_object* x_745; lean_object* x_746; lean_object* x_747; lean_object* x_748; lean_object* x_749; lean_object* x_750; lean_object* x_751; lean_object* x_752; lean_object* x_753; lean_object* x_754; lean_object* x_755; lean_object* x_756; lean_object* x_757; lean_object* x_758; lean_object* x_759; lean_object* x_760; lean_object* x_761; lean_object* x_762; lean_object* x_763; lean_object* x_764; lean_object* x_765; lean_object* x_766; lean_object* x_767; lean_object* x_768; lean_object* x_769; lean_object* x_770; lean_object* x_771; lean_object* x_772; lean_object* x_773; lean_object* x_774; lean_object* x_775; lean_object* x_776; lean_object* x_777; lean_object* x_778; lean_object* x_779; lean_object* x_780; lean_object* x_781; lean_object* x_782; lean_object* x_783; lean_object* x_784; lean_object* x_785; lean_object* x_786; lean_object* x_787; lean_object* x_788; lean_object* x_789; lean_object* x_790; lean_object* x_791; lean_object* x_792; lean_object* x_793; lean_object* x_794; lean_object* x_795; lean_object* x_796; lean_object* x_797; lean_object* x_798; lean_object* x_799; lean_object* x_800; lean_object* x_801; lean_object* x_802; lean_object* x_803; lean_object* x_804; lean_object* x_805; lean_object* x_806; lean_object* x_807; lean_object* x_808; lean_object* x_809; lean_object* x_810; lean_object* x_811; lean_object* x_812; lean_object* x_813; lean_object* x_814; lean_object* x_815; lean_object* x_816; lean_object* x_817; lean_object* x_818; lean_object* x_819; lean_object* x_820; lean_object* x_821; lean_object* x_822; lean_object* x_823; lean_object* x_824; lean_object* x_825; lean_object* x_826; lean_object* x_827; lean_object* x_828; lean_object* x_829; lean_object* x_830; lean_object* x_831; lean_object* x_832; lean_object* x_833; lean_object* x_834; lean_object* x_835; lean_object* x_836; lean_object* x_837; lean_object* x_838; lean_object* x_839; lean_object* x_840; lean_object* x_841; lean_object* x_842; lean_object* x_843; lean_object* x_844; lean_object* x_845; +x_693 = lean_ctor_get(x_691, 0); +x_694 = l_Array_empty___closed__1; +x_695 = lean_array_push(x_694, x_44); +x_696 = l_myMacro____x40_Init_Notation___hyg_376____closed__8; +lean_inc(x_695); +x_697 = lean_array_push(x_695, x_696); +x_698 = l_Nat_repr(x_11); +x_699 = l_Lean_numLitKind; +x_700 = l_Lean_instInhabitedSourceInfo___closed__1; +x_701 = l_Lean_Syntax_mkLit(x_699, x_698, x_700); +x_702 = lean_array_push(x_697, x_701); +x_703 = l_Lean_Parser_Command_parserKindPrio___elambda__1___closed__2; +x_704 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_704, 0, x_703); +lean_ctor_set(x_704, 1, x_702); +x_705 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3404____closed__9; +x_706 = lean_array_push(x_705, x_704); +x_707 = l_Lean_myMacro____x40_Init_Notation___hyg_12778____closed__11; x_708 = lean_array_push(x_706, x_707); -x_709 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_709, 0, x_618); -lean_ctor_set(x_709, 1, x_708); -x_710 = lean_array_push(x_616, x_709); -x_711 = l_myMacro____x40_Init_Notation___hyg_10790____closed__17; -x_712 = lean_array_push(x_710, x_711); -x_713 = lean_array_push(x_667, x_705); -x_714 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; -x_715 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_715, 0, x_714); -lean_ctor_set(x_715, 1, x_713); -x_716 = lean_array_push(x_616, x_715); -x_717 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_717, 0, x_618); -lean_ctor_set(x_717, 1, x_716); -x_718 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; -x_719 = lean_array_push(x_718, x_717); -x_720 = lean_array_push(x_719, x_669); -x_721 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; -x_722 = lean_array_push(x_720, x_721); -x_723 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__22; -x_724 = lean_array_push(x_723, x_43); -x_725 = l_myMacro____x40_Init_Notation___hyg_49____closed__16; -x_726 = lean_array_push(x_724, x_725); -x_727 = l_Lean_Parser_Term_quot___elambda__1___closed__1; -x_728 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_728, 0, x_727); -lean_ctor_set(x_728, 1, x_726); -x_729 = lean_array_push(x_616, x_728); -x_730 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_730, 0, x_618); -lean_ctor_set(x_730, 1, x_729); -x_731 = lean_array_push(x_616, x_730); -x_732 = lean_array_push(x_731, x_711); -x_733 = lean_array_push(x_732, x_22); -x_734 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; -x_735 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_735, 0, x_734); -lean_ctor_set(x_735, 1, x_733); -x_736 = lean_array_push(x_616, x_735); -x_737 = l_Lean_myMacro____x40_Init_Notation___hyg_12778____closed__3; -x_738 = lean_array_push(x_736, x_737); -x_739 = l_Lean_Elab_Command_expandElab___closed__19; -x_740 = l_Lean_addMacroScope(x_615, x_739, x_611); -x_741 = l_Lean_Elab_Command_expandElab___closed__18; -x_742 = l_Lean_Elab_Command_expandElab___closed__22; -x_743 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_743, 0, x_627); -lean_ctor_set(x_743, 1, x_741); -lean_ctor_set(x_743, 2, x_740); -lean_ctor_set(x_743, 3, x_742); -x_744 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__23; -x_745 = lean_array_push(x_744, x_743); -x_746 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_746, 0, x_734); -lean_ctor_set(x_746, 1, x_745); -x_747 = lean_array_push(x_738, x_746); -x_748 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_748, 0, x_618); -lean_ctor_set(x_748, 1, x_747); -x_749 = l_Lean_Elab_Term_expandFunBinders_loop___closed__10; -x_750 = lean_array_push(x_749, x_748); -x_751 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; -x_752 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_752, 0, x_751); -lean_ctor_set(x_752, 1, x_750); -x_753 = lean_array_push(x_722, x_752); -x_754 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; -x_755 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_755, 0, x_754); -lean_ctor_set(x_755, 1, x_753); -x_756 = lean_array_push(x_712, x_755); -x_757 = l_myMacro____x40_Init_Notation___hyg_10790____closed__15; -x_758 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_758, 0, x_757); -lean_ctor_set(x_758, 1, x_756); -x_759 = l_myMacro____x40_Init_Notation___hyg_10790____closed__13; -x_760 = lean_array_push(x_759, x_758); -x_761 = l_myMacro____x40_Init_Notation___hyg_10790____closed__11; -x_762 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_762, 0, x_761); -lean_ctor_set(x_762, 1, x_760); -x_763 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15698____closed__5; -x_764 = lean_array_push(x_763, x_762); -x_765 = lean_array_push(x_764, x_669); -x_766 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__46; +x_709 = l_Lean_nullKind___closed__2; +x_710 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_710, 0, x_709); +lean_ctor_set(x_710, 1, x_708); +x_711 = lean_array_get_size(x_30); +x_712 = lean_usize_of_nat(x_711); +lean_dec(x_711); +x_713 = 0; +x_714 = x_30; +x_715 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_2962____spec__3(x_712, x_713, x_714); +x_716 = x_715; +x_717 = l_Array_appendCore___rarg(x_694, x_716); +lean_dec(x_716); +x_718 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_718, 0, x_709); +lean_ctor_set(x_718, 1, x_717); +x_719 = l_Lean_Elab_Term_mkTermElabAttributeUnsafe___closed__7; +lean_inc(x_689); +lean_inc(x_693); +x_720 = l_Lean_addMacroScope(x_693, x_719, x_689); +x_721 = lean_box(0); +x_722 = l_Lean_Elab_Command_expandElab___closed__31; +x_723 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_723, 0, x_700); +lean_ctor_set(x_723, 1, x_722); +lean_ctor_set(x_723, 2, x_720); +lean_ctor_set(x_723, 3, x_721); +x_724 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__2; +x_725 = lean_array_push(x_724, x_723); +x_726 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_726, 0, x_709); +lean_ctor_set(x_726, 1, x_695); +x_727 = lean_array_push(x_725, x_726); +x_728 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__15; +x_729 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_729, 0, x_728); +lean_ctor_set(x_729, 1, x_727); +x_730 = lean_array_push(x_694, x_729); +x_731 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_731, 0, x_709); +lean_ctor_set(x_731, 1, x_730); +x_732 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__13; +x_733 = lean_array_push(x_732, x_731); +x_734 = lean_array_push(x_733, x_707); +x_735 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__10; +x_736 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_736, 0, x_735); +lean_ctor_set(x_736, 1, x_734); +x_737 = lean_array_push(x_694, x_736); +x_738 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_738, 0, x_709); +lean_ctor_set(x_738, 1, x_737); +x_739 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__8; +x_740 = lean_array_push(x_739, x_738); +x_741 = l_myMacro____x40_Init_Notation___hyg_11918____closed__22; +x_742 = lean_array_push(x_740, x_741); +x_743 = lean_array_push(x_742, x_741); +x_744 = lean_array_push(x_743, x_741); +x_745 = lean_array_push(x_744, x_741); +x_746 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__7; +x_747 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_747, 0, x_746); +lean_ctor_set(x_747, 1, x_745); +x_748 = lean_array_push(x_694, x_747); +x_749 = l_Lean_Elab_Command_expandElab___closed__8; +lean_inc(x_689); +lean_inc(x_693); +x_750 = l_Lean_addMacroScope(x_693, x_749, x_689); +x_751 = l_Lean_Elab_Command_expandElab___closed__7; +x_752 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_752, 0, x_700); +lean_ctor_set(x_752, 1, x_751); +lean_ctor_set(x_752, 2, x_750); +lean_ctor_set(x_752, 3, x_721); +x_753 = lean_array_push(x_694, x_752); +x_754 = lean_array_push(x_753, x_741); +x_755 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__25; +x_756 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_756, 0, x_755); +lean_ctor_set(x_756, 1, x_754); +x_757 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__23; +x_758 = lean_array_push(x_757, x_756); +x_759 = l_Lean_Elab_Term_mkTermElabAttributeUnsafe___closed__9; +lean_inc(x_689); +lean_inc(x_693); +x_760 = l_Lean_addMacroScope(x_693, x_759, x_689); +x_761 = l_Lean_Elab_Command_expandElab___closed__34; +x_762 = l_Lean_Elab_Command_expandElab___closed__36; +x_763 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_763, 0, x_700); +lean_ctor_set(x_763, 1, x_761); +lean_ctor_set(x_763, 2, x_760); +lean_ctor_set(x_763, 3, x_762); +x_764 = l_myMacro____x40_Init_Notation___hyg_11918____closed__11; +x_765 = lean_array_push(x_764, x_763); +x_766 = l_Lean_expandExplicitBindersAux_loop___closed__8; x_767 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_767, 0, x_766); lean_ctor_set(x_767, 1, x_765); -x_768 = lean_array_push(x_701, x_767); -x_769 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__21; -x_770 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_770, 0, x_769); -lean_ctor_set(x_770, 1, x_768); -x_771 = lean_array_push(x_676, x_770); -x_772 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__5; -x_773 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_773, 0, x_772); -lean_ctor_set(x_773, 1, x_771); -x_774 = lean_array_push(x_646, x_773); -x_775 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_775, 0, x_618); -lean_ctor_set(x_775, 1, x_774); -lean_ctor_set(x_613, 0, x_775); -return x_613; -} -else -{ -lean_object* x_776; lean_object* x_777; lean_object* x_778; lean_object* x_779; lean_object* x_780; lean_object* x_781; lean_object* x_782; lean_object* x_783; lean_object* x_784; lean_object* x_785; lean_object* x_786; lean_object* x_787; lean_object* x_788; lean_object* x_789; lean_object* x_790; lean_object* x_791; lean_object* x_792; lean_object* x_793; lean_object* x_794; lean_object* x_795; lean_object* x_796; lean_object* x_797; lean_object* x_798; lean_object* x_799; lean_object* x_800; lean_object* x_801; lean_object* x_802; lean_object* x_803; lean_object* x_804; lean_object* x_805; lean_object* x_806; lean_object* x_807; lean_object* x_808; lean_object* x_809; lean_object* x_810; lean_object* x_811; lean_object* x_812; lean_object* x_813; lean_object* x_814; lean_object* x_815; lean_object* x_816; lean_object* x_817; lean_object* x_818; lean_object* x_819; lean_object* x_820; lean_object* x_821; lean_object* x_822; lean_object* x_823; lean_object* x_824; lean_object* x_825; lean_object* x_826; lean_object* x_827; lean_object* x_828; lean_object* x_829; lean_object* x_830; lean_object* x_831; lean_object* x_832; lean_object* x_833; lean_object* x_834; lean_object* x_835; lean_object* x_836; lean_object* x_837; lean_object* x_838; lean_object* x_839; lean_object* x_840; lean_object* x_841; lean_object* x_842; lean_object* x_843; lean_object* x_844; lean_object* x_845; lean_object* x_846; lean_object* x_847; lean_object* x_848; lean_object* x_849; lean_object* x_850; lean_object* x_851; lean_object* x_852; lean_object* x_853; lean_object* x_854; lean_object* x_855; lean_object* x_856; lean_object* x_857; lean_object* x_858; lean_object* x_859; lean_object* x_860; lean_object* x_861; lean_object* x_862; lean_object* x_863; lean_object* x_864; lean_object* x_865; lean_object* x_866; lean_object* x_867; lean_object* x_868; lean_object* x_869; lean_object* x_870; lean_object* x_871; lean_object* x_872; lean_object* x_873; lean_object* x_874; lean_object* x_875; lean_object* x_876; lean_object* x_877; lean_object* x_878; lean_object* x_879; lean_object* x_880; lean_object* x_881; lean_object* x_882; lean_object* x_883; lean_object* x_884; lean_object* x_885; lean_object* x_886; lean_object* x_887; lean_object* x_888; lean_object* x_889; lean_object* x_890; lean_object* x_891; lean_object* x_892; lean_object* x_893; lean_object* x_894; lean_object* x_895; lean_object* x_896; lean_object* x_897; lean_object* x_898; lean_object* x_899; lean_object* x_900; lean_object* x_901; lean_object* x_902; lean_object* x_903; lean_object* x_904; lean_object* x_905; lean_object* x_906; lean_object* x_907; lean_object* x_908; lean_object* x_909; lean_object* x_910; lean_object* x_911; lean_object* x_912; lean_object* x_913; lean_object* x_914; lean_object* x_915; lean_object* x_916; lean_object* x_917; lean_object* x_918; lean_object* x_919; lean_object* x_920; lean_object* x_921; lean_object* x_922; lean_object* x_923; lean_object* x_924; lean_object* x_925; lean_object* x_926; lean_object* x_927; lean_object* x_928; lean_object* x_929; lean_object* x_930; lean_object* x_931; lean_object* x_932; lean_object* x_933; lean_object* x_934; lean_object* x_935; lean_object* x_936; lean_object* x_937; lean_object* x_938; -x_776 = lean_ctor_get(x_613, 0); -x_777 = lean_ctor_get(x_613, 1); +x_768 = lean_array_push(x_694, x_767); +x_769 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_769, 0, x_709); +lean_ctor_set(x_769, 1, x_768); +x_770 = lean_array_push(x_739, x_769); +x_771 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__27; +x_772 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_772, 0, x_771); +lean_ctor_set(x_772, 1, x_770); +x_773 = lean_array_push(x_758, x_772); +x_774 = l_stx___x3c_x7c_x3e_____closed__8; +lean_inc(x_689); +lean_inc(x_693); +x_775 = l_Lean_addMacroScope(x_693, x_774, x_689); +x_776 = l_Lean_Elab_Command_expandElab___closed__38; +x_777 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_777, 0, x_700); +lean_ctor_set(x_777, 1, x_776); +lean_ctor_set(x_777, 2, x_775); +lean_ctor_set(x_777, 3, x_721); lean_inc(x_777); -lean_inc(x_776); -lean_dec(x_613); -x_778 = l_Array_empty___closed__1; -x_779 = l_Array_appendCore___rarg(x_778, x_8); -lean_dec(x_8); -x_780 = l_Lean_nullKind___closed__2; +x_778 = lean_array_push(x_694, x_777); +x_779 = l_myMacro____x40_Init_Notation___hyg_11918____closed__17; +x_780 = lean_array_push(x_778, x_779); x_781 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_781, 0, x_780); -lean_ctor_set(x_781, 1, x_779); -x_782 = l_Lean_Elab_Command_expandMacro___closed__1; -x_783 = lean_array_push(x_782, x_781); -x_784 = lean_array_push(x_778, x_44); -x_785 = l_myMacro____x40_Init_Notation___hyg_376____closed__8; -lean_inc(x_784); -x_786 = lean_array_push(x_784, x_785); -x_787 = l_Nat_repr(x_11); -x_788 = l_Lean_numLitKind; -x_789 = l_Lean_instInhabitedSourceInfo___closed__1; -x_790 = l_Lean_Syntax_mkLit(x_788, x_787, x_789); -x_791 = lean_array_push(x_786, x_790); -x_792 = l_Lean_Parser_Command_parserKindPrio___elambda__1___closed__2; -x_793 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_793, 0, x_792); -lean_ctor_set(x_793, 1, x_791); -x_794 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3404____closed__9; -x_795 = lean_array_push(x_794, x_793); -x_796 = l_Lean_myMacro____x40_Init_Notation___hyg_12778____closed__11; -x_797 = lean_array_push(x_795, x_796); -x_798 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_798, 0, x_780); -lean_ctor_set(x_798, 1, x_797); -x_799 = lean_array_push(x_783, x_798); -x_800 = l_Array_appendCore___rarg(x_778, x_30); -lean_dec(x_30); -x_801 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_801, 0, x_780); -lean_ctor_set(x_801, 1, x_800); -x_802 = lean_array_push(x_799, x_801); -x_803 = l_myMacro____x40_Init_Notation___hyg_11918____closed__10; -x_804 = lean_array_push(x_802, x_803); -x_805 = lean_array_push(x_804, x_18); -x_806 = l_Lean_Parser_Command_syntax___elambda__1___closed__1; +lean_ctor_set(x_781, 0, x_709); +lean_ctor_set(x_781, 1, x_780); +x_782 = lean_array_push(x_694, x_781); +x_783 = l_myMacro____x40_Init_Notation___hyg_10790____closed__17; +x_784 = lean_array_push(x_782, x_783); +x_785 = lean_array_push(x_739, x_777); +x_786 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; +x_787 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_787, 0, x_786); +lean_ctor_set(x_787, 1, x_785); +x_788 = lean_array_push(x_694, x_787); +x_789 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_789, 0, x_709); +lean_ctor_set(x_789, 1, x_788); +x_790 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_791 = lean_array_push(x_790, x_789); +x_792 = lean_array_push(x_791, x_741); +x_793 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; +x_794 = lean_array_push(x_792, x_793); +x_795 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__22; +x_796 = lean_array_push(x_795, x_43); +x_797 = l_myMacro____x40_Init_Notation___hyg_49____closed__16; +x_798 = lean_array_push(x_796, x_797); +x_799 = l_Lean_Parser_Term_quot___elambda__1___closed__1; +x_800 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_800, 0, x_799); +lean_ctor_set(x_800, 1, x_798); +x_801 = lean_array_push(x_694, x_800); +x_802 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_802, 0, x_709); +lean_ctor_set(x_802, 1, x_801); +x_803 = lean_array_push(x_694, x_802); +x_804 = lean_array_push(x_803, x_783); +x_805 = lean_array_push(x_804, x_22); +x_806 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; x_807 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_807, 0, x_806); lean_ctor_set(x_807, 1, x_805); -x_808 = lean_array_push(x_778, x_807); -x_809 = l_Lean_Elab_Term_mkTermElabAttributeUnsafe___closed__7; -lean_inc(x_611); -lean_inc(x_776); -x_810 = l_Lean_addMacroScope(x_776, x_809, x_611); -x_811 = lean_box(0); -x_812 = l_Lean_Elab_Command_expandElab___closed__31; -x_813 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_813, 0, x_789); -lean_ctor_set(x_813, 1, x_812); -lean_ctor_set(x_813, 2, x_810); -lean_ctor_set(x_813, 3, x_811); -x_814 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__2; -x_815 = lean_array_push(x_814, x_813); -x_816 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_816, 0, x_780); -lean_ctor_set(x_816, 1, x_784); -x_817 = lean_array_push(x_815, x_816); -x_818 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__15; -x_819 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_819, 0, x_818); -lean_ctor_set(x_819, 1, x_817); -x_820 = lean_array_push(x_778, x_819); -x_821 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_821, 0, x_780); -lean_ctor_set(x_821, 1, x_820); -x_822 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__13; -x_823 = lean_array_push(x_822, x_821); -x_824 = lean_array_push(x_823, x_796); -x_825 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__10; -x_826 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_826, 0, x_825); -lean_ctor_set(x_826, 1, x_824); -x_827 = lean_array_push(x_778, x_826); -x_828 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_828, 0, x_780); -lean_ctor_set(x_828, 1, x_827); -x_829 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__8; -x_830 = lean_array_push(x_829, x_828); -x_831 = l_myMacro____x40_Init_Notation___hyg_11918____closed__22; -x_832 = lean_array_push(x_830, x_831); -x_833 = lean_array_push(x_832, x_831); -x_834 = lean_array_push(x_833, x_831); -x_835 = lean_array_push(x_834, x_831); -x_836 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__7; -x_837 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_837, 0, x_836); -lean_ctor_set(x_837, 1, x_835); -x_838 = lean_array_push(x_778, x_837); -x_839 = l_Lean_Elab_Command_expandElab___closed__8; -lean_inc(x_611); -lean_inc(x_776); -x_840 = l_Lean_addMacroScope(x_776, x_839, x_611); -x_841 = l_Lean_Elab_Command_expandElab___closed__7; -x_842 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_842, 0, x_789); -lean_ctor_set(x_842, 1, x_841); -lean_ctor_set(x_842, 2, x_840); -lean_ctor_set(x_842, 3, x_811); -x_843 = lean_array_push(x_778, x_842); -x_844 = lean_array_push(x_843, x_831); -x_845 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__25; -x_846 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_846, 0, x_845); -lean_ctor_set(x_846, 1, x_844); -x_847 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__23; -x_848 = lean_array_push(x_847, x_846); -x_849 = l_Lean_Elab_Term_mkTermElabAttributeUnsafe___closed__9; -lean_inc(x_611); -lean_inc(x_776); -x_850 = l_Lean_addMacroScope(x_776, x_849, x_611); -x_851 = l_Lean_Elab_Command_expandElab___closed__34; -x_852 = l_Lean_Elab_Command_expandElab___closed__36; -x_853 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_853, 0, x_789); +x_808 = lean_array_push(x_694, x_807); +x_809 = l_Lean_myMacro____x40_Init_Notation___hyg_12778____closed__3; +x_810 = lean_array_push(x_808, x_809); +x_811 = l_Lean_Elab_Command_expandElab___closed__19; +x_812 = l_Lean_addMacroScope(x_693, x_811, x_689); +x_813 = l_Lean_Elab_Command_expandElab___closed__18; +x_814 = l_Lean_Elab_Command_expandElab___closed__22; +x_815 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_815, 0, x_700); +lean_ctor_set(x_815, 1, x_813); +lean_ctor_set(x_815, 2, x_812); +lean_ctor_set(x_815, 3, x_814); +x_816 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__23; +x_817 = lean_array_push(x_816, x_815); +x_818 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_818, 0, x_806); +lean_ctor_set(x_818, 1, x_817); +x_819 = lean_array_push(x_810, x_818); +x_820 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_820, 0, x_709); +lean_ctor_set(x_820, 1, x_819); +x_821 = l_Lean_Elab_Term_expandFunBinders_loop___closed__10; +x_822 = lean_array_push(x_821, x_820); +x_823 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_824 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_824, 0, x_823); +lean_ctor_set(x_824, 1, x_822); +x_825 = lean_array_push(x_794, x_824); +x_826 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; +x_827 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_827, 0, x_826); +lean_ctor_set(x_827, 1, x_825); +x_828 = lean_array_push(x_784, x_827); +x_829 = l_myMacro____x40_Init_Notation___hyg_10790____closed__15; +x_830 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_830, 0, x_829); +lean_ctor_set(x_830, 1, x_828); +x_831 = l_myMacro____x40_Init_Notation___hyg_10790____closed__13; +x_832 = lean_array_push(x_831, x_830); +x_833 = l_myMacro____x40_Init_Notation___hyg_10790____closed__11; +x_834 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_834, 0, x_833); +lean_ctor_set(x_834, 1, x_832); +x_835 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15704____closed__5; +x_836 = lean_array_push(x_835, x_834); +x_837 = lean_array_push(x_836, x_741); +x_838 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__46; +x_839 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_839, 0, x_838); +lean_ctor_set(x_839, 1, x_837); +x_840 = lean_array_push(x_773, x_839); +x_841 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__21; +x_842 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_842, 0, x_841); +lean_ctor_set(x_842, 1, x_840); +x_843 = lean_array_push(x_748, x_842); +x_844 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__5; +x_845 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_845, 0, x_844); +lean_ctor_set(x_845, 1, x_843); +if (lean_obj_tag(x_8) == 0) +{ +lean_object* x_846; lean_object* x_847; lean_object* x_848; lean_object* x_849; lean_object* x_850; lean_object* x_851; lean_object* x_852; lean_object* x_853; lean_object* x_854; lean_object* x_855; lean_object* x_856; +x_846 = l_Lean_Elab_Command_expandMacro___closed__3; +x_847 = lean_array_push(x_846, x_710); +x_848 = lean_array_push(x_847, x_718); +x_849 = l_myMacro____x40_Init_Notation___hyg_11918____closed__10; +x_850 = lean_array_push(x_848, x_849); +x_851 = lean_array_push(x_850, x_18); +x_852 = l_Lean_Parser_Command_syntax___elambda__1___closed__1; +x_853 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_853, 0, x_852); lean_ctor_set(x_853, 1, x_851); -lean_ctor_set(x_853, 2, x_850); -lean_ctor_set(x_853, 3, x_852); -x_854 = l_myMacro____x40_Init_Notation___hyg_11918____closed__11; -x_855 = lean_array_push(x_854, x_853); -x_856 = l_Lean_expandExplicitBindersAux_loop___closed__8; -x_857 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_857, 0, x_856); -lean_ctor_set(x_857, 1, x_855); -x_858 = lean_array_push(x_778, x_857); -x_859 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_859, 0, x_780); -lean_ctor_set(x_859, 1, x_858); -x_860 = lean_array_push(x_829, x_859); -x_861 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__27; -x_862 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_862, 0, x_861); -lean_ctor_set(x_862, 1, x_860); -x_863 = lean_array_push(x_848, x_862); -x_864 = l_stx___x3c_x7c_x3e_____closed__8; -lean_inc(x_611); -lean_inc(x_776); -x_865 = l_Lean_addMacroScope(x_776, x_864, x_611); -x_866 = l_Lean_Elab_Command_expandElab___closed__38; -x_867 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_867, 0, x_789); -lean_ctor_set(x_867, 1, x_866); -lean_ctor_set(x_867, 2, x_865); -lean_ctor_set(x_867, 3, x_811); -lean_inc(x_867); -x_868 = lean_array_push(x_778, x_867); -x_869 = l_myMacro____x40_Init_Notation___hyg_11918____closed__17; -x_870 = lean_array_push(x_868, x_869); -x_871 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_871, 0, x_780); -lean_ctor_set(x_871, 1, x_870); -x_872 = lean_array_push(x_778, x_871); -x_873 = l_myMacro____x40_Init_Notation___hyg_10790____closed__17; -x_874 = lean_array_push(x_872, x_873); -x_875 = lean_array_push(x_829, x_867); -x_876 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; -x_877 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_877, 0, x_876); -lean_ctor_set(x_877, 1, x_875); -x_878 = lean_array_push(x_778, x_877); -x_879 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_879, 0, x_780); -lean_ctor_set(x_879, 1, x_878); -x_880 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; -x_881 = lean_array_push(x_880, x_879); -x_882 = lean_array_push(x_881, x_831); -x_883 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; -x_884 = lean_array_push(x_882, x_883); -x_885 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__22; -x_886 = lean_array_push(x_885, x_43); -x_887 = l_myMacro____x40_Init_Notation___hyg_49____closed__16; -x_888 = lean_array_push(x_886, x_887); -x_889 = l_Lean_Parser_Term_quot___elambda__1___closed__1; -x_890 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_890, 0, x_889); -lean_ctor_set(x_890, 1, x_888); -x_891 = lean_array_push(x_778, x_890); -x_892 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_892, 0, x_780); -lean_ctor_set(x_892, 1, x_891); -x_893 = lean_array_push(x_778, x_892); -x_894 = lean_array_push(x_893, x_873); -x_895 = lean_array_push(x_894, x_22); -x_896 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; -x_897 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_897, 0, x_896); -lean_ctor_set(x_897, 1, x_895); -x_898 = lean_array_push(x_778, x_897); -x_899 = l_Lean_myMacro____x40_Init_Notation___hyg_12778____closed__3; -x_900 = lean_array_push(x_898, x_899); -x_901 = l_Lean_Elab_Command_expandElab___closed__19; -x_902 = l_Lean_addMacroScope(x_776, x_901, x_611); -x_903 = l_Lean_Elab_Command_expandElab___closed__18; -x_904 = l_Lean_Elab_Command_expandElab___closed__22; -x_905 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_905, 0, x_789); -lean_ctor_set(x_905, 1, x_903); -lean_ctor_set(x_905, 2, x_902); -lean_ctor_set(x_905, 3, x_904); -x_906 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__23; -x_907 = lean_array_push(x_906, x_905); -x_908 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_908, 0, x_896); -lean_ctor_set(x_908, 1, x_907); -x_909 = lean_array_push(x_900, x_908); +x_854 = lean_array_push(x_694, x_853); +x_855 = lean_array_push(x_854, x_845); +x_856 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_856, 0, x_709); +lean_ctor_set(x_856, 1, x_855); +lean_ctor_set(x_691, 0, x_856); +return x_691; +} +else +{ +lean_object* x_857; lean_object* x_858; lean_object* x_859; lean_object* x_860; lean_object* x_861; lean_object* x_862; lean_object* x_863; lean_object* x_864; lean_object* x_865; lean_object* x_866; lean_object* x_867; lean_object* x_868; lean_object* x_869; lean_object* x_870; lean_object* x_871; lean_object* x_872; +x_857 = lean_ctor_get(x_8, 0); +lean_inc(x_857); +lean_dec(x_8); +x_858 = lean_array_push(x_694, x_857); +x_859 = l_Array_appendCore___rarg(x_694, x_858); +lean_dec(x_858); +x_860 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_860, 0, x_709); +lean_ctor_set(x_860, 1, x_859); +x_861 = l_Lean_Elab_Command_expandMacro___closed__1; +x_862 = lean_array_push(x_861, x_860); +x_863 = lean_array_push(x_862, x_710); +x_864 = lean_array_push(x_863, x_718); +x_865 = l_myMacro____x40_Init_Notation___hyg_11918____closed__10; +x_866 = lean_array_push(x_864, x_865); +x_867 = lean_array_push(x_866, x_18); +x_868 = l_Lean_Parser_Command_syntax___elambda__1___closed__1; +x_869 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_869, 0, x_868); +lean_ctor_set(x_869, 1, x_867); +x_870 = lean_array_push(x_694, x_869); +x_871 = lean_array_push(x_870, x_845); +x_872 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_872, 0, x_709); +lean_ctor_set(x_872, 1, x_871); +lean_ctor_set(x_691, 0, x_872); +return x_691; +} +} +else +{ +lean_object* x_873; lean_object* x_874; lean_object* x_875; lean_object* x_876; lean_object* x_877; lean_object* x_878; lean_object* x_879; lean_object* x_880; lean_object* x_881; lean_object* x_882; lean_object* x_883; lean_object* x_884; lean_object* x_885; lean_object* x_886; lean_object* x_887; lean_object* x_888; lean_object* x_889; lean_object* x_890; lean_object* x_891; lean_object* x_892; size_t x_893; size_t x_894; lean_object* x_895; lean_object* x_896; lean_object* x_897; lean_object* x_898; lean_object* x_899; lean_object* x_900; lean_object* x_901; lean_object* x_902; lean_object* x_903; lean_object* x_904; lean_object* x_905; lean_object* x_906; lean_object* x_907; lean_object* x_908; lean_object* x_909; lean_object* x_910; lean_object* x_911; lean_object* x_912; lean_object* x_913; lean_object* x_914; lean_object* x_915; lean_object* x_916; lean_object* x_917; lean_object* x_918; lean_object* x_919; lean_object* x_920; lean_object* x_921; lean_object* x_922; lean_object* x_923; lean_object* x_924; lean_object* x_925; lean_object* x_926; lean_object* x_927; lean_object* x_928; lean_object* x_929; lean_object* x_930; lean_object* x_931; lean_object* x_932; lean_object* x_933; lean_object* x_934; lean_object* x_935; lean_object* x_936; lean_object* x_937; lean_object* x_938; lean_object* x_939; lean_object* x_940; lean_object* x_941; lean_object* x_942; lean_object* x_943; lean_object* x_944; lean_object* x_945; lean_object* x_946; lean_object* x_947; lean_object* x_948; lean_object* x_949; lean_object* x_950; lean_object* x_951; lean_object* x_952; lean_object* x_953; lean_object* x_954; lean_object* x_955; lean_object* x_956; lean_object* x_957; lean_object* x_958; lean_object* x_959; lean_object* x_960; lean_object* x_961; lean_object* x_962; lean_object* x_963; lean_object* x_964; lean_object* x_965; lean_object* x_966; lean_object* x_967; lean_object* x_968; lean_object* x_969; lean_object* x_970; lean_object* x_971; lean_object* x_972; lean_object* x_973; lean_object* x_974; lean_object* x_975; lean_object* x_976; lean_object* x_977; lean_object* x_978; lean_object* x_979; lean_object* x_980; lean_object* x_981; lean_object* x_982; lean_object* x_983; lean_object* x_984; lean_object* x_985; lean_object* x_986; lean_object* x_987; lean_object* x_988; lean_object* x_989; lean_object* x_990; lean_object* x_991; lean_object* x_992; lean_object* x_993; lean_object* x_994; lean_object* x_995; lean_object* x_996; lean_object* x_997; lean_object* x_998; lean_object* x_999; lean_object* x_1000; lean_object* x_1001; lean_object* x_1002; lean_object* x_1003; lean_object* x_1004; lean_object* x_1005; lean_object* x_1006; lean_object* x_1007; lean_object* x_1008; lean_object* x_1009; lean_object* x_1010; lean_object* x_1011; lean_object* x_1012; lean_object* x_1013; lean_object* x_1014; lean_object* x_1015; lean_object* x_1016; lean_object* x_1017; lean_object* x_1018; lean_object* x_1019; lean_object* x_1020; lean_object* x_1021; lean_object* x_1022; lean_object* x_1023; lean_object* x_1024; lean_object* x_1025; lean_object* x_1026; +x_873 = lean_ctor_get(x_691, 0); +x_874 = lean_ctor_get(x_691, 1); +lean_inc(x_874); +lean_inc(x_873); +lean_dec(x_691); +x_875 = l_Array_empty___closed__1; +x_876 = lean_array_push(x_875, x_44); +x_877 = l_myMacro____x40_Init_Notation___hyg_376____closed__8; +lean_inc(x_876); +x_878 = lean_array_push(x_876, x_877); +x_879 = l_Nat_repr(x_11); +x_880 = l_Lean_numLitKind; +x_881 = l_Lean_instInhabitedSourceInfo___closed__1; +x_882 = l_Lean_Syntax_mkLit(x_880, x_879, x_881); +x_883 = lean_array_push(x_878, x_882); +x_884 = l_Lean_Parser_Command_parserKindPrio___elambda__1___closed__2; +x_885 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_885, 0, x_884); +lean_ctor_set(x_885, 1, x_883); +x_886 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3404____closed__9; +x_887 = lean_array_push(x_886, x_885); +x_888 = l_Lean_myMacro____x40_Init_Notation___hyg_12778____closed__11; +x_889 = lean_array_push(x_887, x_888); +x_890 = l_Lean_nullKind___closed__2; +x_891 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_891, 0, x_890); +lean_ctor_set(x_891, 1, x_889); +x_892 = lean_array_get_size(x_30); +x_893 = lean_usize_of_nat(x_892); +lean_dec(x_892); +x_894 = 0; +x_895 = x_30; +x_896 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_2962____spec__3(x_893, x_894, x_895); +x_897 = x_896; +x_898 = l_Array_appendCore___rarg(x_875, x_897); +lean_dec(x_897); +x_899 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_899, 0, x_890); +lean_ctor_set(x_899, 1, x_898); +x_900 = l_Lean_Elab_Term_mkTermElabAttributeUnsafe___closed__7; +lean_inc(x_689); +lean_inc(x_873); +x_901 = l_Lean_addMacroScope(x_873, x_900, x_689); +x_902 = lean_box(0); +x_903 = l_Lean_Elab_Command_expandElab___closed__31; +x_904 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_904, 0, x_881); +lean_ctor_set(x_904, 1, x_903); +lean_ctor_set(x_904, 2, x_901); +lean_ctor_set(x_904, 3, x_902); +x_905 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__2; +x_906 = lean_array_push(x_905, x_904); +x_907 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_907, 0, x_890); +lean_ctor_set(x_907, 1, x_876); +x_908 = lean_array_push(x_906, x_907); +x_909 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__15; x_910 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_910, 0, x_780); -lean_ctor_set(x_910, 1, x_909); -x_911 = l_Lean_Elab_Term_expandFunBinders_loop___closed__10; -x_912 = lean_array_push(x_911, x_910); -x_913 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; -x_914 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_914, 0, x_913); -lean_ctor_set(x_914, 1, x_912); -x_915 = lean_array_push(x_884, x_914); -x_916 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; +lean_ctor_set(x_910, 0, x_909); +lean_ctor_set(x_910, 1, x_908); +x_911 = lean_array_push(x_875, x_910); +x_912 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_912, 0, x_890); +lean_ctor_set(x_912, 1, x_911); +x_913 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__13; +x_914 = lean_array_push(x_913, x_912); +x_915 = lean_array_push(x_914, x_888); +x_916 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__10; x_917 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_917, 0, x_916); lean_ctor_set(x_917, 1, x_915); -x_918 = lean_array_push(x_874, x_917); -x_919 = l_myMacro____x40_Init_Notation___hyg_10790____closed__15; -x_920 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_920, 0, x_919); -lean_ctor_set(x_920, 1, x_918); -x_921 = l_myMacro____x40_Init_Notation___hyg_10790____closed__13; -x_922 = lean_array_push(x_921, x_920); -x_923 = l_myMacro____x40_Init_Notation___hyg_10790____closed__11; -x_924 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_924, 0, x_923); -lean_ctor_set(x_924, 1, x_922); -x_925 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15698____closed__5; -x_926 = lean_array_push(x_925, x_924); -x_927 = lean_array_push(x_926, x_831); -x_928 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__46; -x_929 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_929, 0, x_928); -lean_ctor_set(x_929, 1, x_927); -x_930 = lean_array_push(x_863, x_929); -x_931 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__21; -x_932 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_932, 0, x_931); -lean_ctor_set(x_932, 1, x_930); -x_933 = lean_array_push(x_838, x_932); -x_934 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__5; -x_935 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_935, 0, x_934); -lean_ctor_set(x_935, 1, x_933); -x_936 = lean_array_push(x_808, x_935); +x_918 = lean_array_push(x_875, x_917); +x_919 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_919, 0, x_890); +lean_ctor_set(x_919, 1, x_918); +x_920 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__8; +x_921 = lean_array_push(x_920, x_919); +x_922 = l_myMacro____x40_Init_Notation___hyg_11918____closed__22; +x_923 = lean_array_push(x_921, x_922); +x_924 = lean_array_push(x_923, x_922); +x_925 = lean_array_push(x_924, x_922); +x_926 = lean_array_push(x_925, x_922); +x_927 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__7; +x_928 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_928, 0, x_927); +lean_ctor_set(x_928, 1, x_926); +x_929 = lean_array_push(x_875, x_928); +x_930 = l_Lean_Elab_Command_expandElab___closed__8; +lean_inc(x_689); +lean_inc(x_873); +x_931 = l_Lean_addMacroScope(x_873, x_930, x_689); +x_932 = l_Lean_Elab_Command_expandElab___closed__7; +x_933 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_933, 0, x_881); +lean_ctor_set(x_933, 1, x_932); +lean_ctor_set(x_933, 2, x_931); +lean_ctor_set(x_933, 3, x_902); +x_934 = lean_array_push(x_875, x_933); +x_935 = lean_array_push(x_934, x_922); +x_936 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__25; x_937 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_937, 0, x_780); -lean_ctor_set(x_937, 1, x_936); -x_938 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_938, 0, x_937); -lean_ctor_set(x_938, 1, x_777); -return x_938; +lean_ctor_set(x_937, 0, x_936); +lean_ctor_set(x_937, 1, x_935); +x_938 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__23; +x_939 = lean_array_push(x_938, x_937); +x_940 = l_Lean_Elab_Term_mkTermElabAttributeUnsafe___closed__9; +lean_inc(x_689); +lean_inc(x_873); +x_941 = l_Lean_addMacroScope(x_873, x_940, x_689); +x_942 = l_Lean_Elab_Command_expandElab___closed__34; +x_943 = l_Lean_Elab_Command_expandElab___closed__36; +x_944 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_944, 0, x_881); +lean_ctor_set(x_944, 1, x_942); +lean_ctor_set(x_944, 2, x_941); +lean_ctor_set(x_944, 3, x_943); +x_945 = l_myMacro____x40_Init_Notation___hyg_11918____closed__11; +x_946 = lean_array_push(x_945, x_944); +x_947 = l_Lean_expandExplicitBindersAux_loop___closed__8; +x_948 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_948, 0, x_947); +lean_ctor_set(x_948, 1, x_946); +x_949 = lean_array_push(x_875, x_948); +x_950 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_950, 0, x_890); +lean_ctor_set(x_950, 1, x_949); +x_951 = lean_array_push(x_920, x_950); +x_952 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__27; +x_953 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_953, 0, x_952); +lean_ctor_set(x_953, 1, x_951); +x_954 = lean_array_push(x_939, x_953); +x_955 = l_stx___x3c_x7c_x3e_____closed__8; +lean_inc(x_689); +lean_inc(x_873); +x_956 = l_Lean_addMacroScope(x_873, x_955, x_689); +x_957 = l_Lean_Elab_Command_expandElab___closed__38; +x_958 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_958, 0, x_881); +lean_ctor_set(x_958, 1, x_957); +lean_ctor_set(x_958, 2, x_956); +lean_ctor_set(x_958, 3, x_902); +lean_inc(x_958); +x_959 = lean_array_push(x_875, x_958); +x_960 = l_myMacro____x40_Init_Notation___hyg_11918____closed__17; +x_961 = lean_array_push(x_959, x_960); +x_962 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_962, 0, x_890); +lean_ctor_set(x_962, 1, x_961); +x_963 = lean_array_push(x_875, x_962); +x_964 = l_myMacro____x40_Init_Notation___hyg_10790____closed__17; +x_965 = lean_array_push(x_963, x_964); +x_966 = lean_array_push(x_920, x_958); +x_967 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; +x_968 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_968, 0, x_967); +lean_ctor_set(x_968, 1, x_966); +x_969 = lean_array_push(x_875, x_968); +x_970 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_970, 0, x_890); +lean_ctor_set(x_970, 1, x_969); +x_971 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_972 = lean_array_push(x_971, x_970); +x_973 = lean_array_push(x_972, x_922); +x_974 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; +x_975 = lean_array_push(x_973, x_974); +x_976 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__22; +x_977 = lean_array_push(x_976, x_43); +x_978 = l_myMacro____x40_Init_Notation___hyg_49____closed__16; +x_979 = lean_array_push(x_977, x_978); +x_980 = l_Lean_Parser_Term_quot___elambda__1___closed__1; +x_981 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_981, 0, x_980); +lean_ctor_set(x_981, 1, x_979); +x_982 = lean_array_push(x_875, x_981); +x_983 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_983, 0, x_890); +lean_ctor_set(x_983, 1, x_982); +x_984 = lean_array_push(x_875, x_983); +x_985 = lean_array_push(x_984, x_964); +x_986 = lean_array_push(x_985, x_22); +x_987 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +x_988 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_988, 0, x_987); +lean_ctor_set(x_988, 1, x_986); +x_989 = lean_array_push(x_875, x_988); +x_990 = l_Lean_myMacro____x40_Init_Notation___hyg_12778____closed__3; +x_991 = lean_array_push(x_989, x_990); +x_992 = l_Lean_Elab_Command_expandElab___closed__19; +x_993 = l_Lean_addMacroScope(x_873, x_992, x_689); +x_994 = l_Lean_Elab_Command_expandElab___closed__18; +x_995 = l_Lean_Elab_Command_expandElab___closed__22; +x_996 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_996, 0, x_881); +lean_ctor_set(x_996, 1, x_994); +lean_ctor_set(x_996, 2, x_993); +lean_ctor_set(x_996, 3, x_995); +x_997 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__23; +x_998 = lean_array_push(x_997, x_996); +x_999 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_999, 0, x_987); +lean_ctor_set(x_999, 1, x_998); +x_1000 = lean_array_push(x_991, x_999); +x_1001 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1001, 0, x_890); +lean_ctor_set(x_1001, 1, x_1000); +x_1002 = l_Lean_Elab_Term_expandFunBinders_loop___closed__10; +x_1003 = lean_array_push(x_1002, x_1001); +x_1004 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_1005 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1005, 0, x_1004); +lean_ctor_set(x_1005, 1, x_1003); +x_1006 = lean_array_push(x_975, x_1005); +x_1007 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; +x_1008 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1008, 0, x_1007); +lean_ctor_set(x_1008, 1, x_1006); +x_1009 = lean_array_push(x_965, x_1008); +x_1010 = l_myMacro____x40_Init_Notation___hyg_10790____closed__15; +x_1011 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1011, 0, x_1010); +lean_ctor_set(x_1011, 1, x_1009); +x_1012 = l_myMacro____x40_Init_Notation___hyg_10790____closed__13; +x_1013 = lean_array_push(x_1012, x_1011); +x_1014 = l_myMacro____x40_Init_Notation___hyg_10790____closed__11; +x_1015 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1015, 0, x_1014); +lean_ctor_set(x_1015, 1, x_1013); +x_1016 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15704____closed__5; +x_1017 = lean_array_push(x_1016, x_1015); +x_1018 = lean_array_push(x_1017, x_922); +x_1019 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__46; +x_1020 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1020, 0, x_1019); +lean_ctor_set(x_1020, 1, x_1018); +x_1021 = lean_array_push(x_954, x_1020); +x_1022 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__21; +x_1023 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1023, 0, x_1022); +lean_ctor_set(x_1023, 1, x_1021); +x_1024 = lean_array_push(x_929, x_1023); +x_1025 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__5; +x_1026 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1026, 0, x_1025); +lean_ctor_set(x_1026, 1, x_1024); +if (lean_obj_tag(x_8) == 0) +{ +lean_object* x_1027; lean_object* x_1028; lean_object* x_1029; lean_object* x_1030; lean_object* x_1031; lean_object* x_1032; lean_object* x_1033; lean_object* x_1034; lean_object* x_1035; lean_object* x_1036; lean_object* x_1037; lean_object* x_1038; +x_1027 = l_Lean_Elab_Command_expandMacro___closed__3; +x_1028 = lean_array_push(x_1027, x_891); +x_1029 = lean_array_push(x_1028, x_899); +x_1030 = l_myMacro____x40_Init_Notation___hyg_11918____closed__10; +x_1031 = lean_array_push(x_1029, x_1030); +x_1032 = lean_array_push(x_1031, x_18); +x_1033 = l_Lean_Parser_Command_syntax___elambda__1___closed__1; +x_1034 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1034, 0, x_1033); +lean_ctor_set(x_1034, 1, x_1032); +x_1035 = lean_array_push(x_875, x_1034); +x_1036 = lean_array_push(x_1035, x_1026); +x_1037 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1037, 0, x_890); +lean_ctor_set(x_1037, 1, x_1036); +x_1038 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1038, 0, x_1037); +lean_ctor_set(x_1038, 1, x_874); +return x_1038; +} +else +{ +lean_object* x_1039; lean_object* x_1040; lean_object* x_1041; lean_object* x_1042; lean_object* x_1043; lean_object* x_1044; lean_object* x_1045; lean_object* x_1046; lean_object* x_1047; lean_object* x_1048; lean_object* x_1049; lean_object* x_1050; lean_object* x_1051; lean_object* x_1052; lean_object* x_1053; lean_object* x_1054; lean_object* x_1055; +x_1039 = lean_ctor_get(x_8, 0); +lean_inc(x_1039); +lean_dec(x_8); +x_1040 = lean_array_push(x_875, x_1039); +x_1041 = l_Array_appendCore___rarg(x_875, x_1040); +lean_dec(x_1040); +x_1042 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1042, 0, x_890); +lean_ctor_set(x_1042, 1, x_1041); +x_1043 = l_Lean_Elab_Command_expandMacro___closed__1; +x_1044 = lean_array_push(x_1043, x_1042); +x_1045 = lean_array_push(x_1044, x_891); +x_1046 = lean_array_push(x_1045, x_899); +x_1047 = l_myMacro____x40_Init_Notation___hyg_11918____closed__10; +x_1048 = lean_array_push(x_1046, x_1047); +x_1049 = lean_array_push(x_1048, x_18); +x_1050 = l_Lean_Parser_Command_syntax___elambda__1___closed__1; +x_1051 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1051, 0, x_1050); +lean_ctor_set(x_1051, 1, x_1049); +x_1052 = lean_array_push(x_875, x_1051); +x_1053 = lean_array_push(x_1052, x_1026); +x_1054 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1054, 0, x_890); +lean_ctor_set(x_1054, 1, x_1053); +x_1055 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1055, 0, x_1054); +lean_ctor_set(x_1055, 1, x_874); +return x_1055; +} } } } else { -lean_object* x_939; uint8_t x_940; -x_939 = l_term___u2218_____closed__6; -x_940 = lean_name_eq(x_23, x_939); -if (x_940 == 0) +lean_object* x_1056; uint8_t x_1057; +x_1056 = l_term___u2218_____closed__6; +x_1057 = lean_name_eq(x_23, x_1056); +if (x_1057 == 0) { -lean_object* x_941; lean_object* x_942; lean_object* x_943; lean_object* x_944; lean_object* x_945; lean_object* x_946; +lean_object* x_1058; lean_object* x_1059; lean_object* x_1060; lean_object* x_1061; lean_object* x_1062; lean_object* x_1063; lean_dec(x_44); lean_dec(x_43); lean_dec(x_30); @@ -33212,654 +33811,728 @@ lean_dec(x_22); lean_dec(x_18); lean_dec(x_11); lean_dec(x_8); -x_941 = lean_alloc_ctor(4, 1, 0); -lean_ctor_set(x_941, 0, x_23); -x_942 = l_Lean_Elab_Command_expandElab___closed__40; -x_943 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_943, 0, x_942); -lean_ctor_set(x_943, 1, x_941); -x_944 = l_Lean_Elab_Command_expandElab___closed__42; -x_945 = lean_alloc_ctor(10, 2, 0); -lean_ctor_set(x_945, 0, x_943); -lean_ctor_set(x_945, 1, x_944); -x_946 = l_Lean_throwErrorAt___at_Lean_Elab_Command_elabCommand___spec__7___rarg(x_20, x_945, x_3, x_4, x_39); +x_1058 = lean_alloc_ctor(4, 1, 0); +lean_ctor_set(x_1058, 0, x_23); +x_1059 = l_Lean_Elab_Command_expandElab___closed__40; +x_1060 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_1060, 0, x_1059); +lean_ctor_set(x_1060, 1, x_1058); +x_1061 = l_Lean_Elab_Command_expandElab___closed__42; +x_1062 = lean_alloc_ctor(10, 2, 0); +lean_ctor_set(x_1062, 0, x_1060); +lean_ctor_set(x_1062, 1, x_1061); +x_1063 = l_Lean_throwErrorAt___at_Lean_Elab_Command_elabCommand___spec__7___rarg(x_20, x_1062, x_3, x_4, x_39); lean_dec(x_20); -return x_946; +return x_1063; } else { -lean_object* x_947; lean_object* x_948; lean_object* x_949; lean_object* x_950; lean_object* x_951; uint8_t x_952; +lean_object* x_1064; lean_object* x_1065; lean_object* x_1066; lean_object* x_1067; lean_object* x_1068; uint8_t x_1069; lean_dec(x_23); -x_947 = l_Lean_Syntax_getArg(x_20, x_6); +x_1064 = l_Lean_Syntax_getArg(x_20, x_6); lean_dec(x_20); -x_948 = l_Lean_Elab_Command_getCurrMacroScope(x_3, x_4, x_39); +x_1065 = l_Lean_Elab_Command_getCurrMacroScope(x_3, x_4, x_39); lean_dec(x_3); -x_949 = lean_ctor_get(x_948, 0); -lean_inc(x_949); -x_950 = lean_ctor_get(x_948, 1); -lean_inc(x_950); -lean_dec(x_948); -x_951 = l_Lean_Elab_Command_getMainModule___rarg(x_4, x_950); -x_952 = !lean_is_exclusive(x_951); -if (x_952 == 0) +x_1066 = lean_ctor_get(x_1065, 0); +lean_inc(x_1066); +x_1067 = lean_ctor_get(x_1065, 1); +lean_inc(x_1067); +lean_dec(x_1065); +x_1068 = l_Lean_Elab_Command_getMainModule___rarg(x_4, x_1067); +x_1069 = !lean_is_exclusive(x_1068); +if (x_1069 == 0) { -lean_object* x_953; lean_object* x_954; lean_object* x_955; lean_object* x_956; lean_object* x_957; lean_object* x_958; lean_object* x_959; lean_object* x_960; lean_object* x_961; lean_object* x_962; lean_object* x_963; lean_object* x_964; lean_object* x_965; lean_object* x_966; lean_object* x_967; lean_object* x_968; lean_object* x_969; lean_object* x_970; lean_object* x_971; lean_object* x_972; lean_object* x_973; lean_object* x_974; lean_object* x_975; lean_object* x_976; lean_object* x_977; lean_object* x_978; lean_object* x_979; lean_object* x_980; lean_object* x_981; lean_object* x_982; lean_object* x_983; lean_object* x_984; lean_object* x_985; lean_object* x_986; lean_object* x_987; lean_object* x_988; lean_object* x_989; lean_object* x_990; lean_object* x_991; lean_object* x_992; lean_object* x_993; lean_object* x_994; lean_object* x_995; lean_object* x_996; lean_object* x_997; lean_object* x_998; lean_object* x_999; lean_object* x_1000; lean_object* x_1001; lean_object* x_1002; lean_object* x_1003; lean_object* x_1004; lean_object* x_1005; lean_object* x_1006; lean_object* x_1007; lean_object* x_1008; lean_object* x_1009; lean_object* x_1010; lean_object* x_1011; lean_object* x_1012; lean_object* x_1013; lean_object* x_1014; lean_object* x_1015; lean_object* x_1016; lean_object* x_1017; lean_object* x_1018; lean_object* x_1019; lean_object* x_1020; lean_object* x_1021; lean_object* x_1022; lean_object* x_1023; lean_object* x_1024; lean_object* x_1025; lean_object* x_1026; lean_object* x_1027; lean_object* x_1028; lean_object* x_1029; lean_object* x_1030; lean_object* x_1031; lean_object* x_1032; lean_object* x_1033; lean_object* x_1034; lean_object* x_1035; lean_object* x_1036; lean_object* x_1037; lean_object* x_1038; lean_object* x_1039; lean_object* x_1040; lean_object* x_1041; lean_object* x_1042; lean_object* x_1043; lean_object* x_1044; lean_object* x_1045; lean_object* x_1046; lean_object* x_1047; lean_object* x_1048; lean_object* x_1049; lean_object* x_1050; lean_object* x_1051; lean_object* x_1052; lean_object* x_1053; lean_object* x_1054; lean_object* x_1055; lean_object* x_1056; lean_object* x_1057; lean_object* x_1058; lean_object* x_1059; lean_object* x_1060; lean_object* x_1061; lean_object* x_1062; lean_object* x_1063; lean_object* x_1064; lean_object* x_1065; lean_object* x_1066; lean_object* x_1067; lean_object* x_1068; lean_object* x_1069; lean_object* x_1070; lean_object* x_1071; lean_object* x_1072; lean_object* x_1073; lean_object* x_1074; lean_object* x_1075; lean_object* x_1076; lean_object* x_1077; lean_object* x_1078; lean_object* x_1079; lean_object* x_1080; lean_object* x_1081; lean_object* x_1082; lean_object* x_1083; lean_object* x_1084; lean_object* x_1085; lean_object* x_1086; lean_object* x_1087; lean_object* x_1088; lean_object* x_1089; lean_object* x_1090; lean_object* x_1091; lean_object* x_1092; lean_object* x_1093; lean_object* x_1094; lean_object* x_1095; lean_object* x_1096; lean_object* x_1097; lean_object* x_1098; lean_object* x_1099; lean_object* x_1100; lean_object* x_1101; lean_object* x_1102; lean_object* x_1103; lean_object* x_1104; lean_object* x_1105; lean_object* x_1106; lean_object* x_1107; lean_object* x_1108; lean_object* x_1109; lean_object* x_1110; lean_object* x_1111; lean_object* x_1112; lean_object* x_1113; lean_object* x_1114; lean_object* x_1115; lean_object* x_1116; lean_object* x_1117; lean_object* x_1118; lean_object* x_1119; lean_object* x_1120; lean_object* x_1121; lean_object* x_1122; lean_object* x_1123; lean_object* x_1124; lean_object* x_1125; lean_object* x_1126; lean_object* x_1127; lean_object* x_1128; lean_object* x_1129; lean_object* x_1130; lean_object* x_1131; lean_object* x_1132; lean_object* x_1133; lean_object* x_1134; lean_object* x_1135; lean_object* x_1136; -x_953 = lean_ctor_get(x_951, 0); -x_954 = l_Array_empty___closed__1; -x_955 = l_Array_appendCore___rarg(x_954, x_8); -lean_dec(x_8); -x_956 = l_Lean_nullKind___closed__2; -x_957 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_957, 0, x_956); -lean_ctor_set(x_957, 1, x_955); -x_958 = l_Lean_Elab_Command_expandMacro___closed__1; -x_959 = lean_array_push(x_958, x_957); -x_960 = lean_array_push(x_954, x_44); -x_961 = l_myMacro____x40_Init_Notation___hyg_376____closed__8; -lean_inc(x_960); -x_962 = lean_array_push(x_960, x_961); -x_963 = l_Nat_repr(x_11); -x_964 = l_Lean_numLitKind; -x_965 = l_Lean_instInhabitedSourceInfo___closed__1; -x_966 = l_Lean_Syntax_mkLit(x_964, x_963, x_965); -x_967 = lean_array_push(x_962, x_966); -x_968 = l_Lean_Parser_Command_parserKindPrio___elambda__1___closed__2; -x_969 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_969, 0, x_968); -lean_ctor_set(x_969, 1, x_967); -x_970 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3404____closed__9; -x_971 = lean_array_push(x_970, x_969); -x_972 = l_Lean_myMacro____x40_Init_Notation___hyg_12778____closed__11; -x_973 = lean_array_push(x_971, x_972); -x_974 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_974, 0, x_956); -lean_ctor_set(x_974, 1, x_973); -x_975 = lean_array_push(x_959, x_974); -x_976 = l_Array_appendCore___rarg(x_954, x_30); -lean_dec(x_30); -x_977 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_977, 0, x_956); -lean_ctor_set(x_977, 1, x_976); -x_978 = lean_array_push(x_975, x_977); -x_979 = l_myMacro____x40_Init_Notation___hyg_11918____closed__10; -x_980 = lean_array_push(x_978, x_979); -x_981 = lean_array_push(x_980, x_18); -x_982 = l_Lean_Parser_Command_syntax___elambda__1___closed__1; -x_983 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_983, 0, x_982); -lean_ctor_set(x_983, 1, x_981); -x_984 = lean_array_push(x_954, x_983); -x_985 = l_Lean_Elab_Term_mkTermElabAttributeUnsafe___closed__7; -lean_inc(x_949); -lean_inc(x_953); -x_986 = l_Lean_addMacroScope(x_953, x_985, x_949); -x_987 = lean_box(0); -x_988 = l_Lean_Elab_Command_expandElab___closed__31; -x_989 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_989, 0, x_965); -lean_ctor_set(x_989, 1, x_988); -lean_ctor_set(x_989, 2, x_986); -lean_ctor_set(x_989, 3, x_987); -x_990 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__2; -x_991 = lean_array_push(x_990, x_989); -x_992 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_992, 0, x_956); -lean_ctor_set(x_992, 1, x_960); -x_993 = lean_array_push(x_991, x_992); -x_994 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__15; -x_995 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_995, 0, x_994); -lean_ctor_set(x_995, 1, x_993); -x_996 = lean_array_push(x_954, x_995); -x_997 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_997, 0, x_956); -lean_ctor_set(x_997, 1, x_996); -x_998 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__13; -x_999 = lean_array_push(x_998, x_997); -x_1000 = lean_array_push(x_999, x_972); -x_1001 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__10; -x_1002 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1002, 0, x_1001); -lean_ctor_set(x_1002, 1, x_1000); -x_1003 = lean_array_push(x_954, x_1002); -x_1004 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1004, 0, x_956); -lean_ctor_set(x_1004, 1, x_1003); -x_1005 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__8; -x_1006 = lean_array_push(x_1005, x_1004); -x_1007 = l_myMacro____x40_Init_Notation___hyg_11918____closed__22; -x_1008 = lean_array_push(x_1006, x_1007); -x_1009 = lean_array_push(x_1008, x_1007); -x_1010 = lean_array_push(x_1009, x_1007); -x_1011 = lean_array_push(x_1010, x_1007); -x_1012 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__7; -x_1013 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1013, 0, x_1012); -lean_ctor_set(x_1013, 1, x_1011); -x_1014 = lean_array_push(x_954, x_1013); -x_1015 = l_Lean_Elab_Command_expandElab___closed__8; -lean_inc(x_949); -lean_inc(x_953); -x_1016 = l_Lean_addMacroScope(x_953, x_1015, x_949); -x_1017 = l_Lean_Elab_Command_expandElab___closed__7; -x_1018 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1018, 0, x_965); -lean_ctor_set(x_1018, 1, x_1017); -lean_ctor_set(x_1018, 2, x_1016); -lean_ctor_set(x_1018, 3, x_987); -x_1019 = lean_array_push(x_954, x_1018); -x_1020 = lean_array_push(x_1019, x_1007); -x_1021 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__25; -x_1022 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1022, 0, x_1021); -lean_ctor_set(x_1022, 1, x_1020); -x_1023 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__23; -x_1024 = lean_array_push(x_1023, x_1022); -x_1025 = l_Lean_Elab_Term_mkTermElabAttributeUnsafe___closed__9; -lean_inc(x_949); -lean_inc(x_953); -x_1026 = l_Lean_addMacroScope(x_953, x_1025, x_949); -x_1027 = l_Lean_Elab_Command_expandElab___closed__34; -x_1028 = l_Lean_Elab_Command_expandElab___closed__36; -x_1029 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1029, 0, x_965); -lean_ctor_set(x_1029, 1, x_1027); -lean_ctor_set(x_1029, 2, x_1026); -lean_ctor_set(x_1029, 3, x_1028); -x_1030 = l_myMacro____x40_Init_Notation___hyg_11918____closed__11; -x_1031 = lean_array_push(x_1030, x_1029); -x_1032 = l_Lean_expandExplicitBindersAux_loop___closed__8; -x_1033 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1033, 0, x_1032); -lean_ctor_set(x_1033, 1, x_1031); -x_1034 = lean_array_push(x_954, x_1033); -x_1035 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1035, 0, x_956); -lean_ctor_set(x_1035, 1, x_1034); -x_1036 = lean_array_push(x_1005, x_1035); -x_1037 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__27; -x_1038 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1038, 0, x_1037); -lean_ctor_set(x_1038, 1, x_1036); -x_1039 = lean_array_push(x_1024, x_1038); -x_1040 = l_stx___x3c_x7c_x3e_____closed__8; -lean_inc(x_949); -lean_inc(x_953); -x_1041 = l_Lean_addMacroScope(x_953, x_1040, x_949); -x_1042 = l_Lean_Elab_Command_expandElab___closed__38; -x_1043 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1043, 0, x_965); -lean_ctor_set(x_1043, 1, x_1042); -lean_ctor_set(x_1043, 2, x_1041); -lean_ctor_set(x_1043, 3, x_987); -lean_inc(x_1043); -x_1044 = lean_array_push(x_954, x_1043); -x_1045 = l_Lean_Elab_Command_expandElab___closed__46; -lean_inc(x_949); -lean_inc(x_953); -x_1046 = l_Lean_addMacroScope(x_953, x_1045, x_949); -x_1047 = l_Lean_Elab_Command_expandElab___closed__45; -x_1048 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1048, 0, x_965); -lean_ctor_set(x_1048, 1, x_1047); -lean_ctor_set(x_1048, 2, x_1046); -lean_ctor_set(x_1048, 3, x_987); -lean_inc(x_1048); -x_1049 = lean_array_push(x_1044, x_1048); -x_1050 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1050, 0, x_956); -lean_ctor_set(x_1050, 1, x_1049); -x_1051 = lean_array_push(x_954, x_1050); -x_1052 = l_myMacro____x40_Init_Notation___hyg_10790____closed__17; -x_1053 = lean_array_push(x_1051, x_1052); -x_1054 = lean_array_push(x_1005, x_1043); -x_1055 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; -x_1056 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1056, 0, x_1055); -lean_ctor_set(x_1056, 1, x_1054); -x_1057 = lean_array_push(x_954, x_1056); -x_1058 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1058, 0, x_956); -lean_ctor_set(x_1058, 1, x_1057); -x_1059 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; -x_1060 = lean_array_push(x_1059, x_1058); -x_1061 = lean_array_push(x_1060, x_1007); -x_1062 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; -x_1063 = lean_array_push(x_1061, x_1062); -x_1064 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__22; -x_1065 = lean_array_push(x_1064, x_43); -x_1066 = l_myMacro____x40_Init_Notation___hyg_49____closed__16; -x_1067 = lean_array_push(x_1065, x_1066); -x_1068 = l_Lean_Parser_Term_quot___elambda__1___closed__1; -x_1069 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1069, 0, x_1068); -lean_ctor_set(x_1069, 1, x_1067); -x_1070 = lean_array_push(x_954, x_1069); -x_1071 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1071, 0, x_956); -lean_ctor_set(x_1071, 1, x_1070); -x_1072 = lean_array_push(x_954, x_1071); -x_1073 = lean_array_push(x_1072, x_1052); -x_1074 = l_Lean_Elab_Command_expandElab___closed__51; -lean_inc(x_949); -lean_inc(x_953); -x_1075 = l_Lean_addMacroScope(x_953, x_1074, x_949); -x_1076 = l_Lean_Elab_Command_expandElab___closed__49; -x_1077 = l_Lean_Elab_Command_expandElab___closed__53; -x_1078 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1078, 0, x_965); -lean_ctor_set(x_1078, 1, x_1076); -lean_ctor_set(x_1078, 2, x_1075); -lean_ctor_set(x_1078, 3, x_1077); -x_1079 = lean_array_push(x_954, x_1078); -x_1080 = lean_array_push(x_954, x_1048); -x_1081 = lean_array_push(x_954, x_947); -x_1082 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1082, 0, x_956); -lean_ctor_set(x_1082, 1, x_1081); -x_1083 = lean_array_push(x_954, x_1082); -x_1084 = lean_array_push(x_1083, x_1052); -x_1085 = lean_array_push(x_1084, x_22); -x_1086 = l_myMacro____x40_Init_Notation___hyg_10790____closed__15; +lean_object* x_1070; lean_object* x_1071; lean_object* x_1072; lean_object* x_1073; lean_object* x_1074; lean_object* x_1075; lean_object* x_1076; lean_object* x_1077; lean_object* x_1078; lean_object* x_1079; lean_object* x_1080; lean_object* x_1081; lean_object* x_1082; lean_object* x_1083; lean_object* x_1084; lean_object* x_1085; lean_object* x_1086; lean_object* x_1087; lean_object* x_1088; size_t x_1089; size_t x_1090; lean_object* x_1091; lean_object* x_1092; lean_object* x_1093; lean_object* x_1094; lean_object* x_1095; lean_object* x_1096; lean_object* x_1097; lean_object* x_1098; lean_object* x_1099; lean_object* x_1100; lean_object* x_1101; lean_object* x_1102; lean_object* x_1103; lean_object* x_1104; lean_object* x_1105; lean_object* x_1106; lean_object* x_1107; lean_object* x_1108; lean_object* x_1109; lean_object* x_1110; lean_object* x_1111; lean_object* x_1112; lean_object* x_1113; lean_object* x_1114; lean_object* x_1115; lean_object* x_1116; lean_object* x_1117; lean_object* x_1118; lean_object* x_1119; lean_object* x_1120; lean_object* x_1121; lean_object* x_1122; lean_object* x_1123; lean_object* x_1124; lean_object* x_1125; lean_object* x_1126; lean_object* x_1127; lean_object* x_1128; lean_object* x_1129; lean_object* x_1130; lean_object* x_1131; lean_object* x_1132; lean_object* x_1133; lean_object* x_1134; lean_object* x_1135; lean_object* x_1136; lean_object* x_1137; lean_object* x_1138; lean_object* x_1139; lean_object* x_1140; lean_object* x_1141; lean_object* x_1142; lean_object* x_1143; lean_object* x_1144; lean_object* x_1145; lean_object* x_1146; lean_object* x_1147; lean_object* x_1148; lean_object* x_1149; lean_object* x_1150; lean_object* x_1151; lean_object* x_1152; lean_object* x_1153; lean_object* x_1154; lean_object* x_1155; lean_object* x_1156; lean_object* x_1157; lean_object* x_1158; lean_object* x_1159; lean_object* x_1160; lean_object* x_1161; lean_object* x_1162; lean_object* x_1163; lean_object* x_1164; lean_object* x_1165; lean_object* x_1166; lean_object* x_1167; lean_object* x_1168; lean_object* x_1169; lean_object* x_1170; lean_object* x_1171; lean_object* x_1172; lean_object* x_1173; lean_object* x_1174; lean_object* x_1175; lean_object* x_1176; lean_object* x_1177; lean_object* x_1178; lean_object* x_1179; lean_object* x_1180; lean_object* x_1181; lean_object* x_1182; lean_object* x_1183; lean_object* x_1184; lean_object* x_1185; lean_object* x_1186; lean_object* x_1187; lean_object* x_1188; lean_object* x_1189; lean_object* x_1190; lean_object* x_1191; lean_object* x_1192; lean_object* x_1193; lean_object* x_1194; lean_object* x_1195; lean_object* x_1196; lean_object* x_1197; lean_object* x_1198; lean_object* x_1199; lean_object* x_1200; lean_object* x_1201; lean_object* x_1202; lean_object* x_1203; lean_object* x_1204; lean_object* x_1205; lean_object* x_1206; lean_object* x_1207; lean_object* x_1208; lean_object* x_1209; lean_object* x_1210; lean_object* x_1211; lean_object* x_1212; lean_object* x_1213; lean_object* x_1214; lean_object* x_1215; lean_object* x_1216; lean_object* x_1217; lean_object* x_1218; lean_object* x_1219; lean_object* x_1220; lean_object* x_1221; lean_object* x_1222; lean_object* x_1223; lean_object* x_1224; lean_object* x_1225; lean_object* x_1226; lean_object* x_1227; lean_object* x_1228; lean_object* x_1229; lean_object* x_1230; lean_object* x_1231; lean_object* x_1232; lean_object* x_1233; lean_object* x_1234; lean_object* x_1235; lean_object* x_1236; lean_object* x_1237; lean_object* x_1238; lean_object* x_1239; lean_object* x_1240; lean_object* x_1241; lean_object* x_1242; lean_object* x_1243; lean_object* x_1244; lean_object* x_1245; +x_1070 = lean_ctor_get(x_1068, 0); +x_1071 = l_Array_empty___closed__1; +x_1072 = lean_array_push(x_1071, x_44); +x_1073 = l_myMacro____x40_Init_Notation___hyg_376____closed__8; +lean_inc(x_1072); +x_1074 = lean_array_push(x_1072, x_1073); +x_1075 = l_Nat_repr(x_11); +x_1076 = l_Lean_numLitKind; +x_1077 = l_Lean_instInhabitedSourceInfo___closed__1; +x_1078 = l_Lean_Syntax_mkLit(x_1076, x_1075, x_1077); +x_1079 = lean_array_push(x_1074, x_1078); +x_1080 = l_Lean_Parser_Command_parserKindPrio___elambda__1___closed__2; +x_1081 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1081, 0, x_1080); +lean_ctor_set(x_1081, 1, x_1079); +x_1082 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3404____closed__9; +x_1083 = lean_array_push(x_1082, x_1081); +x_1084 = l_Lean_myMacro____x40_Init_Notation___hyg_12778____closed__11; +x_1085 = lean_array_push(x_1083, x_1084); +x_1086 = l_Lean_nullKind___closed__2; x_1087 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1087, 0, x_1086); lean_ctor_set(x_1087, 1, x_1085); -x_1088 = l_myMacro____x40_Init_Notation___hyg_10790____closed__13; -x_1089 = lean_array_push(x_1088, x_1087); -x_1090 = l_myMacro____x40_Init_Notation___hyg_10790____closed__11; -x_1091 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1091, 0, x_1090); -lean_ctor_set(x_1091, 1, x_1089); -x_1092 = lean_array_push(x_1080, x_1091); -x_1093 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1093, 0, x_956); -lean_ctor_set(x_1093, 1, x_1092); -x_1094 = lean_array_push(x_1079, x_1093); -x_1095 = l_myMacro____x40_Init_Notation___hyg_1625____closed__4; -x_1096 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1096, 0, x_1095); -lean_ctor_set(x_1096, 1, x_1094); -x_1097 = lean_array_push(x_1073, x_1096); -x_1098 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; -x_1099 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1099, 0, x_1098); -lean_ctor_set(x_1099, 1, x_1097); -x_1100 = lean_array_push(x_954, x_1099); -x_1101 = l_Lean_myMacro____x40_Init_Notation___hyg_12778____closed__3; -x_1102 = lean_array_push(x_1100, x_1101); -x_1103 = l_Lean_Elab_Command_expandElab___closed__19; -x_1104 = l_Lean_addMacroScope(x_953, x_1103, x_949); -x_1105 = l_Lean_Elab_Command_expandElab___closed__18; -x_1106 = l_Lean_Elab_Command_expandElab___closed__22; -x_1107 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1107, 0, x_965); -lean_ctor_set(x_1107, 1, x_1105); -lean_ctor_set(x_1107, 2, x_1104); -lean_ctor_set(x_1107, 3, x_1106); -x_1108 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__23; -x_1109 = lean_array_push(x_1108, x_1107); -x_1110 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1110, 0, x_1098); -lean_ctor_set(x_1110, 1, x_1109); -x_1111 = lean_array_push(x_1102, x_1110); -x_1112 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1112, 0, x_956); -lean_ctor_set(x_1112, 1, x_1111); -x_1113 = l_Lean_Elab_Term_expandFunBinders_loop___closed__10; -x_1114 = lean_array_push(x_1113, x_1112); -x_1115 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; -x_1116 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1116, 0, x_1115); -lean_ctor_set(x_1116, 1, x_1114); -x_1117 = lean_array_push(x_1063, x_1116); -x_1118 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; -x_1119 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1119, 0, x_1118); -lean_ctor_set(x_1119, 1, x_1117); -x_1120 = lean_array_push(x_1053, x_1119); -x_1121 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1121, 0, x_1086); -lean_ctor_set(x_1121, 1, x_1120); -x_1122 = lean_array_push(x_1088, x_1121); -x_1123 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1123, 0, x_1090); -lean_ctor_set(x_1123, 1, x_1122); -x_1124 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15698____closed__5; -x_1125 = lean_array_push(x_1124, x_1123); -x_1126 = lean_array_push(x_1125, x_1007); -x_1127 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__46; -x_1128 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1128, 0, x_1127); -lean_ctor_set(x_1128, 1, x_1126); -x_1129 = lean_array_push(x_1039, x_1128); -x_1130 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__21; -x_1131 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1131, 0, x_1130); -lean_ctor_set(x_1131, 1, x_1129); -x_1132 = lean_array_push(x_1014, x_1131); -x_1133 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__5; -x_1134 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1134, 0, x_1133); -lean_ctor_set(x_1134, 1, x_1132); -x_1135 = lean_array_push(x_984, x_1134); -x_1136 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1136, 0, x_956); -lean_ctor_set(x_1136, 1, x_1135); -lean_ctor_set(x_951, 0, x_1136); -return x_951; -} -else -{ -lean_object* x_1137; lean_object* x_1138; lean_object* x_1139; lean_object* x_1140; lean_object* x_1141; lean_object* x_1142; lean_object* x_1143; lean_object* x_1144; lean_object* x_1145; lean_object* x_1146; lean_object* x_1147; lean_object* x_1148; lean_object* x_1149; lean_object* x_1150; lean_object* x_1151; lean_object* x_1152; lean_object* x_1153; lean_object* x_1154; lean_object* x_1155; lean_object* x_1156; lean_object* x_1157; lean_object* x_1158; lean_object* x_1159; lean_object* x_1160; lean_object* x_1161; lean_object* x_1162; lean_object* x_1163; lean_object* x_1164; lean_object* x_1165; lean_object* x_1166; lean_object* x_1167; lean_object* x_1168; lean_object* x_1169; lean_object* x_1170; lean_object* x_1171; lean_object* x_1172; lean_object* x_1173; lean_object* x_1174; lean_object* x_1175; lean_object* x_1176; lean_object* x_1177; lean_object* x_1178; lean_object* x_1179; lean_object* x_1180; lean_object* x_1181; lean_object* x_1182; lean_object* x_1183; lean_object* x_1184; lean_object* x_1185; lean_object* x_1186; lean_object* x_1187; lean_object* x_1188; lean_object* x_1189; lean_object* x_1190; lean_object* x_1191; lean_object* x_1192; lean_object* x_1193; lean_object* x_1194; lean_object* x_1195; lean_object* x_1196; lean_object* x_1197; lean_object* x_1198; lean_object* x_1199; lean_object* x_1200; lean_object* x_1201; lean_object* x_1202; lean_object* x_1203; lean_object* x_1204; lean_object* x_1205; lean_object* x_1206; lean_object* x_1207; lean_object* x_1208; lean_object* x_1209; lean_object* x_1210; lean_object* x_1211; lean_object* x_1212; lean_object* x_1213; lean_object* x_1214; lean_object* x_1215; lean_object* x_1216; lean_object* x_1217; lean_object* x_1218; lean_object* x_1219; lean_object* x_1220; lean_object* x_1221; lean_object* x_1222; lean_object* x_1223; lean_object* x_1224; lean_object* x_1225; lean_object* x_1226; lean_object* x_1227; lean_object* x_1228; lean_object* x_1229; lean_object* x_1230; lean_object* x_1231; lean_object* x_1232; lean_object* x_1233; lean_object* x_1234; lean_object* x_1235; lean_object* x_1236; lean_object* x_1237; lean_object* x_1238; lean_object* x_1239; lean_object* x_1240; lean_object* x_1241; lean_object* x_1242; lean_object* x_1243; lean_object* x_1244; lean_object* x_1245; lean_object* x_1246; lean_object* x_1247; lean_object* x_1248; lean_object* x_1249; lean_object* x_1250; lean_object* x_1251; lean_object* x_1252; lean_object* x_1253; lean_object* x_1254; lean_object* x_1255; lean_object* x_1256; lean_object* x_1257; lean_object* x_1258; lean_object* x_1259; lean_object* x_1260; lean_object* x_1261; lean_object* x_1262; lean_object* x_1263; lean_object* x_1264; lean_object* x_1265; lean_object* x_1266; lean_object* x_1267; lean_object* x_1268; lean_object* x_1269; lean_object* x_1270; lean_object* x_1271; lean_object* x_1272; lean_object* x_1273; lean_object* x_1274; lean_object* x_1275; lean_object* x_1276; lean_object* x_1277; lean_object* x_1278; lean_object* x_1279; lean_object* x_1280; lean_object* x_1281; lean_object* x_1282; lean_object* x_1283; lean_object* x_1284; lean_object* x_1285; lean_object* x_1286; lean_object* x_1287; lean_object* x_1288; lean_object* x_1289; lean_object* x_1290; lean_object* x_1291; lean_object* x_1292; lean_object* x_1293; lean_object* x_1294; lean_object* x_1295; lean_object* x_1296; lean_object* x_1297; lean_object* x_1298; lean_object* x_1299; lean_object* x_1300; lean_object* x_1301; lean_object* x_1302; lean_object* x_1303; 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; lean_object* x_1317; lean_object* x_1318; lean_object* x_1319; lean_object* x_1320; lean_object* x_1321; lean_object* x_1322; -x_1137 = lean_ctor_get(x_951, 0); -x_1138 = lean_ctor_get(x_951, 1); -lean_inc(x_1138); -lean_inc(x_1137); -lean_dec(x_951); -x_1139 = l_Array_empty___closed__1; -x_1140 = l_Array_appendCore___rarg(x_1139, x_8); -lean_dec(x_8); -x_1141 = l_Lean_nullKind___closed__2; -x_1142 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1142, 0, x_1141); -lean_ctor_set(x_1142, 1, x_1140); -x_1143 = l_Lean_Elab_Command_expandMacro___closed__1; -x_1144 = lean_array_push(x_1143, x_1142); -x_1145 = lean_array_push(x_1139, x_44); -x_1146 = l_myMacro____x40_Init_Notation___hyg_376____closed__8; -lean_inc(x_1145); -x_1147 = lean_array_push(x_1145, x_1146); -x_1148 = l_Nat_repr(x_11); -x_1149 = l_Lean_numLitKind; -x_1150 = l_Lean_instInhabitedSourceInfo___closed__1; -x_1151 = l_Lean_Syntax_mkLit(x_1149, x_1148, x_1150); -x_1152 = lean_array_push(x_1147, x_1151); -x_1153 = l_Lean_Parser_Command_parserKindPrio___elambda__1___closed__2; -x_1154 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1154, 0, x_1153); -lean_ctor_set(x_1154, 1, x_1152); -x_1155 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3404____closed__9; -x_1156 = lean_array_push(x_1155, x_1154); -x_1157 = l_Lean_myMacro____x40_Init_Notation___hyg_12778____closed__11; -x_1158 = lean_array_push(x_1156, x_1157); -x_1159 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1159, 0, x_1141); +x_1088 = lean_array_get_size(x_30); +x_1089 = lean_usize_of_nat(x_1088); +lean_dec(x_1088); +x_1090 = 0; +x_1091 = x_30; +x_1092 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_2962____spec__3(x_1089, x_1090, x_1091); +x_1093 = x_1092; +x_1094 = l_Array_appendCore___rarg(x_1071, x_1093); +lean_dec(x_1093); +x_1095 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1095, 0, x_1086); +lean_ctor_set(x_1095, 1, x_1094); +x_1096 = l_Lean_Elab_Term_mkTermElabAttributeUnsafe___closed__7; +lean_inc(x_1066); +lean_inc(x_1070); +x_1097 = l_Lean_addMacroScope(x_1070, x_1096, x_1066); +x_1098 = lean_box(0); +x_1099 = l_Lean_Elab_Command_expandElab___closed__31; +x_1100 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1100, 0, x_1077); +lean_ctor_set(x_1100, 1, x_1099); +lean_ctor_set(x_1100, 2, x_1097); +lean_ctor_set(x_1100, 3, x_1098); +x_1101 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__2; +x_1102 = lean_array_push(x_1101, x_1100); +x_1103 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1103, 0, x_1086); +lean_ctor_set(x_1103, 1, x_1072); +x_1104 = lean_array_push(x_1102, x_1103); +x_1105 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__15; +x_1106 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1106, 0, x_1105); +lean_ctor_set(x_1106, 1, x_1104); +x_1107 = lean_array_push(x_1071, x_1106); +x_1108 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1108, 0, x_1086); +lean_ctor_set(x_1108, 1, x_1107); +x_1109 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__13; +x_1110 = lean_array_push(x_1109, x_1108); +x_1111 = lean_array_push(x_1110, x_1084); +x_1112 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__10; +x_1113 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1113, 0, x_1112); +lean_ctor_set(x_1113, 1, x_1111); +x_1114 = lean_array_push(x_1071, x_1113); +x_1115 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1115, 0, x_1086); +lean_ctor_set(x_1115, 1, x_1114); +x_1116 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__8; +x_1117 = lean_array_push(x_1116, x_1115); +x_1118 = l_myMacro____x40_Init_Notation___hyg_11918____closed__22; +x_1119 = lean_array_push(x_1117, x_1118); +x_1120 = lean_array_push(x_1119, x_1118); +x_1121 = lean_array_push(x_1120, x_1118); +x_1122 = lean_array_push(x_1121, x_1118); +x_1123 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__7; +x_1124 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1124, 0, x_1123); +lean_ctor_set(x_1124, 1, x_1122); +x_1125 = lean_array_push(x_1071, x_1124); +x_1126 = l_Lean_Elab_Command_expandElab___closed__8; +lean_inc(x_1066); +lean_inc(x_1070); +x_1127 = l_Lean_addMacroScope(x_1070, x_1126, x_1066); +x_1128 = l_Lean_Elab_Command_expandElab___closed__7; +x_1129 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1129, 0, x_1077); +lean_ctor_set(x_1129, 1, x_1128); +lean_ctor_set(x_1129, 2, x_1127); +lean_ctor_set(x_1129, 3, x_1098); +x_1130 = lean_array_push(x_1071, x_1129); +x_1131 = lean_array_push(x_1130, x_1118); +x_1132 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__25; +x_1133 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1133, 0, x_1132); +lean_ctor_set(x_1133, 1, x_1131); +x_1134 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__23; +x_1135 = lean_array_push(x_1134, x_1133); +x_1136 = l_Lean_Elab_Term_mkTermElabAttributeUnsafe___closed__9; +lean_inc(x_1066); +lean_inc(x_1070); +x_1137 = l_Lean_addMacroScope(x_1070, x_1136, x_1066); +x_1138 = l_Lean_Elab_Command_expandElab___closed__34; +x_1139 = l_Lean_Elab_Command_expandElab___closed__36; +x_1140 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1140, 0, x_1077); +lean_ctor_set(x_1140, 1, x_1138); +lean_ctor_set(x_1140, 2, x_1137); +lean_ctor_set(x_1140, 3, x_1139); +x_1141 = l_myMacro____x40_Init_Notation___hyg_11918____closed__11; +x_1142 = lean_array_push(x_1141, x_1140); +x_1143 = l_Lean_expandExplicitBindersAux_loop___closed__8; +x_1144 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1144, 0, x_1143); +lean_ctor_set(x_1144, 1, x_1142); +x_1145 = lean_array_push(x_1071, x_1144); +x_1146 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1146, 0, x_1086); +lean_ctor_set(x_1146, 1, x_1145); +x_1147 = lean_array_push(x_1116, x_1146); +x_1148 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__27; +x_1149 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1149, 0, x_1148); +lean_ctor_set(x_1149, 1, x_1147); +x_1150 = lean_array_push(x_1135, x_1149); +x_1151 = l_stx___x3c_x7c_x3e_____closed__8; +lean_inc(x_1066); +lean_inc(x_1070); +x_1152 = l_Lean_addMacroScope(x_1070, x_1151, x_1066); +x_1153 = l_Lean_Elab_Command_expandElab___closed__38; +x_1154 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1154, 0, x_1077); +lean_ctor_set(x_1154, 1, x_1153); +lean_ctor_set(x_1154, 2, x_1152); +lean_ctor_set(x_1154, 3, x_1098); +lean_inc(x_1154); +x_1155 = lean_array_push(x_1071, x_1154); +x_1156 = l_Lean_Elab_Command_expandElab___closed__46; +lean_inc(x_1066); +lean_inc(x_1070); +x_1157 = l_Lean_addMacroScope(x_1070, x_1156, x_1066); +x_1158 = l_Lean_Elab_Command_expandElab___closed__45; +x_1159 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1159, 0, x_1077); lean_ctor_set(x_1159, 1, x_1158); -x_1160 = lean_array_push(x_1144, x_1159); -x_1161 = l_Array_appendCore___rarg(x_1139, x_30); -lean_dec(x_30); -x_1162 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1162, 0, x_1141); -lean_ctor_set(x_1162, 1, x_1161); -x_1163 = lean_array_push(x_1160, x_1162); -x_1164 = l_myMacro____x40_Init_Notation___hyg_11918____closed__10; -x_1165 = lean_array_push(x_1163, x_1164); -x_1166 = lean_array_push(x_1165, x_18); -x_1167 = l_Lean_Parser_Command_syntax___elambda__1___closed__1; -x_1168 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1168, 0, x_1167); -lean_ctor_set(x_1168, 1, x_1166); -x_1169 = lean_array_push(x_1139, x_1168); -x_1170 = l_Lean_Elab_Term_mkTermElabAttributeUnsafe___closed__7; -lean_inc(x_949); -lean_inc(x_1137); -x_1171 = l_Lean_addMacroScope(x_1137, x_1170, x_949); -x_1172 = lean_box(0); -x_1173 = l_Lean_Elab_Command_expandElab___closed__31; -x_1174 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1174, 0, x_1150); -lean_ctor_set(x_1174, 1, x_1173); -lean_ctor_set(x_1174, 2, x_1171); -lean_ctor_set(x_1174, 3, x_1172); -x_1175 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__2; -x_1176 = lean_array_push(x_1175, x_1174); -x_1177 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1177, 0, x_1141); -lean_ctor_set(x_1177, 1, x_1145); +lean_ctor_set(x_1159, 2, x_1157); +lean_ctor_set(x_1159, 3, x_1098); +lean_inc(x_1159); +x_1160 = lean_array_push(x_1155, x_1159); +x_1161 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1161, 0, x_1086); +lean_ctor_set(x_1161, 1, x_1160); +x_1162 = lean_array_push(x_1071, x_1161); +x_1163 = l_myMacro____x40_Init_Notation___hyg_10790____closed__17; +x_1164 = lean_array_push(x_1162, x_1163); +x_1165 = lean_array_push(x_1116, x_1154); +x_1166 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; +x_1167 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1167, 0, x_1166); +lean_ctor_set(x_1167, 1, x_1165); +x_1168 = lean_array_push(x_1071, x_1167); +x_1169 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1169, 0, x_1086); +lean_ctor_set(x_1169, 1, x_1168); +x_1170 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_1171 = lean_array_push(x_1170, x_1169); +x_1172 = lean_array_push(x_1171, x_1118); +x_1173 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; +x_1174 = lean_array_push(x_1172, x_1173); +x_1175 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__22; +x_1176 = lean_array_push(x_1175, x_43); +x_1177 = l_myMacro____x40_Init_Notation___hyg_49____closed__16; x_1178 = lean_array_push(x_1176, x_1177); -x_1179 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__15; +x_1179 = l_Lean_Parser_Term_quot___elambda__1___closed__1; x_1180 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1180, 0, x_1179); lean_ctor_set(x_1180, 1, x_1178); -x_1181 = lean_array_push(x_1139, x_1180); +x_1181 = lean_array_push(x_1071, x_1180); x_1182 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1182, 0, x_1141); +lean_ctor_set(x_1182, 0, x_1086); lean_ctor_set(x_1182, 1, x_1181); -x_1183 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__13; -x_1184 = lean_array_push(x_1183, x_1182); -x_1185 = lean_array_push(x_1184, x_1157); -x_1186 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__10; -x_1187 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1187, 0, x_1186); -lean_ctor_set(x_1187, 1, x_1185); -x_1188 = lean_array_push(x_1139, x_1187); -x_1189 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1189, 0, x_1141); -lean_ctor_set(x_1189, 1, x_1188); -x_1190 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__8; -x_1191 = lean_array_push(x_1190, x_1189); -x_1192 = l_myMacro____x40_Init_Notation___hyg_11918____closed__22; -x_1193 = lean_array_push(x_1191, x_1192); -x_1194 = lean_array_push(x_1193, x_1192); -x_1195 = lean_array_push(x_1194, x_1192); -x_1196 = lean_array_push(x_1195, x_1192); -x_1197 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__7; +x_1183 = lean_array_push(x_1071, x_1182); +x_1184 = lean_array_push(x_1183, x_1163); +x_1185 = l_Lean_Elab_Command_expandElab___closed__51; +lean_inc(x_1066); +lean_inc(x_1070); +x_1186 = l_Lean_addMacroScope(x_1070, x_1185, x_1066); +x_1187 = l_Lean_Elab_Command_expandElab___closed__49; +x_1188 = l_Lean_Elab_Command_expandElab___closed__53; +x_1189 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1189, 0, x_1077); +lean_ctor_set(x_1189, 1, x_1187); +lean_ctor_set(x_1189, 2, x_1186); +lean_ctor_set(x_1189, 3, x_1188); +x_1190 = lean_array_push(x_1071, x_1189); +x_1191 = lean_array_push(x_1071, x_1159); +x_1192 = lean_array_push(x_1071, x_1064); +x_1193 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1193, 0, x_1086); +lean_ctor_set(x_1193, 1, x_1192); +x_1194 = lean_array_push(x_1071, x_1193); +x_1195 = lean_array_push(x_1194, x_1163); +x_1196 = lean_array_push(x_1195, x_22); +x_1197 = l_myMacro____x40_Init_Notation___hyg_10790____closed__15; x_1198 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1198, 0, x_1197); lean_ctor_set(x_1198, 1, x_1196); -x_1199 = lean_array_push(x_1139, x_1198); -x_1200 = l_Lean_Elab_Command_expandElab___closed__8; -lean_inc(x_949); -lean_inc(x_1137); -x_1201 = l_Lean_addMacroScope(x_1137, x_1200, x_949); -x_1202 = l_Lean_Elab_Command_expandElab___closed__7; -x_1203 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1203, 0, x_1150); -lean_ctor_set(x_1203, 1, x_1202); -lean_ctor_set(x_1203, 2, x_1201); -lean_ctor_set(x_1203, 3, x_1172); -x_1204 = lean_array_push(x_1139, x_1203); -x_1205 = lean_array_push(x_1204, x_1192); -x_1206 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__25; +x_1199 = l_myMacro____x40_Init_Notation___hyg_10790____closed__13; +x_1200 = lean_array_push(x_1199, x_1198); +x_1201 = l_myMacro____x40_Init_Notation___hyg_10790____closed__11; +x_1202 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1202, 0, x_1201); +lean_ctor_set(x_1202, 1, x_1200); +x_1203 = lean_array_push(x_1191, x_1202); +x_1204 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1204, 0, x_1086); +lean_ctor_set(x_1204, 1, x_1203); +x_1205 = lean_array_push(x_1190, x_1204); +x_1206 = l_myMacro____x40_Init_Notation___hyg_1625____closed__4; x_1207 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_1207, 0, x_1206); lean_ctor_set(x_1207, 1, x_1205); -x_1208 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__23; -x_1209 = lean_array_push(x_1208, x_1207); -x_1210 = l_Lean_Elab_Term_mkTermElabAttributeUnsafe___closed__9; -lean_inc(x_949); -lean_inc(x_1137); -x_1211 = l_Lean_addMacroScope(x_1137, x_1210, x_949); -x_1212 = l_Lean_Elab_Command_expandElab___closed__34; -x_1213 = l_Lean_Elab_Command_expandElab___closed__36; -x_1214 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1214, 0, x_1150); -lean_ctor_set(x_1214, 1, x_1212); -lean_ctor_set(x_1214, 2, x_1211); -lean_ctor_set(x_1214, 3, x_1213); -x_1215 = l_myMacro____x40_Init_Notation___hyg_11918____closed__11; -x_1216 = lean_array_push(x_1215, x_1214); -x_1217 = l_Lean_expandExplicitBindersAux_loop___closed__8; -x_1218 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1218, 0, x_1217); +x_1208 = lean_array_push(x_1184, x_1207); +x_1209 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +x_1210 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1210, 0, x_1209); +lean_ctor_set(x_1210, 1, x_1208); +x_1211 = lean_array_push(x_1071, x_1210); +x_1212 = l_Lean_myMacro____x40_Init_Notation___hyg_12778____closed__3; +x_1213 = lean_array_push(x_1211, x_1212); +x_1214 = l_Lean_Elab_Command_expandElab___closed__19; +x_1215 = l_Lean_addMacroScope(x_1070, x_1214, x_1066); +x_1216 = l_Lean_Elab_Command_expandElab___closed__18; +x_1217 = l_Lean_Elab_Command_expandElab___closed__22; +x_1218 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1218, 0, x_1077); lean_ctor_set(x_1218, 1, x_1216); -x_1219 = lean_array_push(x_1139, x_1218); -x_1220 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1220, 0, x_1141); -lean_ctor_set(x_1220, 1, x_1219); -x_1221 = lean_array_push(x_1190, x_1220); -x_1222 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__27; +lean_ctor_set(x_1218, 2, x_1215); +lean_ctor_set(x_1218, 3, x_1217); +x_1219 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__23; +x_1220 = lean_array_push(x_1219, x_1218); +x_1221 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1221, 0, x_1209); +lean_ctor_set(x_1221, 1, x_1220); +x_1222 = lean_array_push(x_1213, x_1221); x_1223 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1223, 0, x_1222); -lean_ctor_set(x_1223, 1, x_1221); -x_1224 = lean_array_push(x_1209, x_1223); -x_1225 = l_stx___x3c_x7c_x3e_____closed__8; -lean_inc(x_949); -lean_inc(x_1137); -x_1226 = l_Lean_addMacroScope(x_1137, x_1225, x_949); -x_1227 = l_Lean_Elab_Command_expandElab___closed__38; -x_1228 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1228, 0, x_1150); -lean_ctor_set(x_1228, 1, x_1227); -lean_ctor_set(x_1228, 2, x_1226); -lean_ctor_set(x_1228, 3, x_1172); -lean_inc(x_1228); -x_1229 = lean_array_push(x_1139, x_1228); -x_1230 = l_Lean_Elab_Command_expandElab___closed__46; -lean_inc(x_949); -lean_inc(x_1137); -x_1231 = l_Lean_addMacroScope(x_1137, x_1230, x_949); -x_1232 = l_Lean_Elab_Command_expandElab___closed__45; -x_1233 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1233, 0, x_1150); -lean_ctor_set(x_1233, 1, x_1232); -lean_ctor_set(x_1233, 2, x_1231); -lean_ctor_set(x_1233, 3, x_1172); -lean_inc(x_1233); -x_1234 = lean_array_push(x_1229, x_1233); -x_1235 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1235, 0, x_1141); -lean_ctor_set(x_1235, 1, x_1234); -x_1236 = lean_array_push(x_1139, x_1235); -x_1237 = l_myMacro____x40_Init_Notation___hyg_10790____closed__17; -x_1238 = lean_array_push(x_1236, x_1237); -x_1239 = lean_array_push(x_1190, x_1228); -x_1240 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; -x_1241 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1241, 0, x_1240); -lean_ctor_set(x_1241, 1, x_1239); -x_1242 = lean_array_push(x_1139, x_1241); -x_1243 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1243, 0, x_1141); -lean_ctor_set(x_1243, 1, x_1242); -x_1244 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; -x_1245 = lean_array_push(x_1244, x_1243); -x_1246 = lean_array_push(x_1245, x_1192); -x_1247 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; -x_1248 = lean_array_push(x_1246, x_1247); -x_1249 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__22; -x_1250 = lean_array_push(x_1249, x_43); -x_1251 = l_myMacro____x40_Init_Notation___hyg_49____closed__16; -x_1252 = lean_array_push(x_1250, x_1251); -x_1253 = l_Lean_Parser_Term_quot___elambda__1___closed__1; -x_1254 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1254, 0, x_1253); -lean_ctor_set(x_1254, 1, x_1252); -x_1255 = lean_array_push(x_1139, x_1254); +lean_ctor_set(x_1223, 0, x_1086); +lean_ctor_set(x_1223, 1, x_1222); +x_1224 = l_Lean_Elab_Term_expandFunBinders_loop___closed__10; +x_1225 = lean_array_push(x_1224, x_1223); +x_1226 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_1227 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1227, 0, x_1226); +lean_ctor_set(x_1227, 1, x_1225); +x_1228 = lean_array_push(x_1174, x_1227); +x_1229 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; +x_1230 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1230, 0, x_1229); +lean_ctor_set(x_1230, 1, x_1228); +x_1231 = lean_array_push(x_1164, x_1230); +x_1232 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1232, 0, x_1197); +lean_ctor_set(x_1232, 1, x_1231); +x_1233 = lean_array_push(x_1199, x_1232); +x_1234 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1234, 0, x_1201); +lean_ctor_set(x_1234, 1, x_1233); +x_1235 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15704____closed__5; +x_1236 = lean_array_push(x_1235, x_1234); +x_1237 = lean_array_push(x_1236, x_1118); +x_1238 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__46; +x_1239 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1239, 0, x_1238); +lean_ctor_set(x_1239, 1, x_1237); +x_1240 = lean_array_push(x_1150, x_1239); +x_1241 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__21; +x_1242 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1242, 0, x_1241); +lean_ctor_set(x_1242, 1, x_1240); +x_1243 = lean_array_push(x_1125, x_1242); +x_1244 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__5; +x_1245 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1245, 0, x_1244); +lean_ctor_set(x_1245, 1, x_1243); +if (lean_obj_tag(x_8) == 0) +{ +lean_object* x_1246; lean_object* x_1247; lean_object* x_1248; lean_object* x_1249; lean_object* x_1250; lean_object* x_1251; lean_object* x_1252; lean_object* x_1253; lean_object* x_1254; lean_object* x_1255; lean_object* x_1256; +x_1246 = l_Lean_Elab_Command_expandMacro___closed__3; +x_1247 = lean_array_push(x_1246, x_1087); +x_1248 = lean_array_push(x_1247, x_1095); +x_1249 = l_myMacro____x40_Init_Notation___hyg_11918____closed__10; +x_1250 = lean_array_push(x_1248, x_1249); +x_1251 = lean_array_push(x_1250, x_18); +x_1252 = l_Lean_Parser_Command_syntax___elambda__1___closed__1; +x_1253 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1253, 0, x_1252); +lean_ctor_set(x_1253, 1, x_1251); +x_1254 = lean_array_push(x_1071, x_1253); +x_1255 = lean_array_push(x_1254, x_1245); x_1256 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1256, 0, x_1141); +lean_ctor_set(x_1256, 0, x_1086); lean_ctor_set(x_1256, 1, x_1255); -x_1257 = lean_array_push(x_1139, x_1256); -x_1258 = lean_array_push(x_1257, x_1237); -x_1259 = l_Lean_Elab_Command_expandElab___closed__51; -lean_inc(x_949); -lean_inc(x_1137); -x_1260 = l_Lean_addMacroScope(x_1137, x_1259, x_949); -x_1261 = l_Lean_Elab_Command_expandElab___closed__49; -x_1262 = l_Lean_Elab_Command_expandElab___closed__53; -x_1263 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1263, 0, x_1150); -lean_ctor_set(x_1263, 1, x_1261); -lean_ctor_set(x_1263, 2, x_1260); -lean_ctor_set(x_1263, 3, x_1262); -x_1264 = lean_array_push(x_1139, x_1263); -x_1265 = lean_array_push(x_1139, x_1233); -x_1266 = lean_array_push(x_1139, x_947); -x_1267 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1267, 0, x_1141); -lean_ctor_set(x_1267, 1, x_1266); -x_1268 = lean_array_push(x_1139, x_1267); -x_1269 = lean_array_push(x_1268, x_1237); -x_1270 = lean_array_push(x_1269, x_22); -x_1271 = l_myMacro____x40_Init_Notation___hyg_10790____closed__15; +lean_ctor_set(x_1068, 0, x_1256); +return x_1068; +} +else +{ +lean_object* x_1257; lean_object* x_1258; lean_object* x_1259; lean_object* x_1260; lean_object* x_1261; lean_object* x_1262; lean_object* x_1263; lean_object* x_1264; lean_object* x_1265; lean_object* x_1266; lean_object* x_1267; lean_object* x_1268; lean_object* x_1269; lean_object* x_1270; lean_object* x_1271; lean_object* x_1272; +x_1257 = lean_ctor_get(x_8, 0); +lean_inc(x_1257); +lean_dec(x_8); +x_1258 = lean_array_push(x_1071, x_1257); +x_1259 = l_Array_appendCore___rarg(x_1071, x_1258); +lean_dec(x_1258); +x_1260 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1260, 0, x_1086); +lean_ctor_set(x_1260, 1, x_1259); +x_1261 = l_Lean_Elab_Command_expandMacro___closed__1; +x_1262 = lean_array_push(x_1261, x_1260); +x_1263 = lean_array_push(x_1262, x_1087); +x_1264 = lean_array_push(x_1263, x_1095); +x_1265 = l_myMacro____x40_Init_Notation___hyg_11918____closed__10; +x_1266 = lean_array_push(x_1264, x_1265); +x_1267 = lean_array_push(x_1266, x_18); +x_1268 = l_Lean_Parser_Command_syntax___elambda__1___closed__1; +x_1269 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1269, 0, x_1268); +lean_ctor_set(x_1269, 1, x_1267); +x_1270 = lean_array_push(x_1071, x_1269); +x_1271 = lean_array_push(x_1270, x_1245); x_1272 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1272, 0, x_1271); -lean_ctor_set(x_1272, 1, x_1270); -x_1273 = l_myMacro____x40_Init_Notation___hyg_10790____closed__13; -x_1274 = lean_array_push(x_1273, x_1272); -x_1275 = l_myMacro____x40_Init_Notation___hyg_10790____closed__11; -x_1276 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1276, 0, x_1275); -lean_ctor_set(x_1276, 1, x_1274); -x_1277 = lean_array_push(x_1265, x_1276); -x_1278 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1278, 0, x_1141); -lean_ctor_set(x_1278, 1, x_1277); -x_1279 = lean_array_push(x_1264, x_1278); -x_1280 = l_myMacro____x40_Init_Notation___hyg_1625____closed__4; -x_1281 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1281, 0, x_1280); -lean_ctor_set(x_1281, 1, x_1279); -x_1282 = lean_array_push(x_1258, x_1281); -x_1283 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; -x_1284 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1284, 0, x_1283); -lean_ctor_set(x_1284, 1, x_1282); -x_1285 = lean_array_push(x_1139, x_1284); -x_1286 = l_Lean_myMacro____x40_Init_Notation___hyg_12778____closed__3; -x_1287 = lean_array_push(x_1285, x_1286); -x_1288 = l_Lean_Elab_Command_expandElab___closed__19; -x_1289 = l_Lean_addMacroScope(x_1137, x_1288, x_949); -x_1290 = l_Lean_Elab_Command_expandElab___closed__18; -x_1291 = l_Lean_Elab_Command_expandElab___closed__22; -x_1292 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1292, 0, x_1150); -lean_ctor_set(x_1292, 1, x_1290); -lean_ctor_set(x_1292, 2, x_1289); -lean_ctor_set(x_1292, 3, x_1291); -x_1293 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__23; -x_1294 = lean_array_push(x_1293, x_1292); -x_1295 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1295, 0, x_1283); -lean_ctor_set(x_1295, 1, x_1294); -x_1296 = lean_array_push(x_1287, x_1295); -x_1297 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1297, 0, x_1141); -lean_ctor_set(x_1297, 1, x_1296); -x_1298 = l_Lean_Elab_Term_expandFunBinders_loop___closed__10; -x_1299 = lean_array_push(x_1298, x_1297); -x_1300 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; -x_1301 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1301, 0, x_1300); -lean_ctor_set(x_1301, 1, x_1299); -x_1302 = lean_array_push(x_1248, x_1301); -x_1303 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; -x_1304 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1304, 0, x_1303); -lean_ctor_set(x_1304, 1, x_1302); -x_1305 = lean_array_push(x_1238, x_1304); -x_1306 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1306, 0, x_1271); -lean_ctor_set(x_1306, 1, x_1305); -x_1307 = lean_array_push(x_1273, x_1306); -x_1308 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1308, 0, x_1275); -lean_ctor_set(x_1308, 1, x_1307); -x_1309 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15698____closed__5; -x_1310 = lean_array_push(x_1309, x_1308); -x_1311 = lean_array_push(x_1310, x_1192); -x_1312 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__46; -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_1224, x_1313); -x_1315 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__21; -x_1316 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1316, 0, x_1315); -lean_ctor_set(x_1316, 1, x_1314); -x_1317 = lean_array_push(x_1199, x_1316); -x_1318 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__5; +lean_ctor_set(x_1272, 0, x_1086); +lean_ctor_set(x_1272, 1, x_1271); +lean_ctor_set(x_1068, 0, x_1272); +return x_1068; +} +} +else +{ +lean_object* x_1273; lean_object* x_1274; lean_object* x_1275; lean_object* x_1276; lean_object* x_1277; lean_object* x_1278; lean_object* x_1279; lean_object* x_1280; lean_object* x_1281; lean_object* x_1282; lean_object* x_1283; lean_object* x_1284; lean_object* x_1285; lean_object* x_1286; lean_object* x_1287; lean_object* x_1288; lean_object* x_1289; lean_object* x_1290; lean_object* x_1291; lean_object* x_1292; size_t x_1293; size_t x_1294; lean_object* x_1295; lean_object* x_1296; lean_object* x_1297; lean_object* x_1298; lean_object* x_1299; lean_object* x_1300; lean_object* x_1301; lean_object* x_1302; lean_object* x_1303; 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; 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; 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; 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; lean_object* x_1427; lean_object* x_1428; lean_object* x_1429; lean_object* x_1430; lean_object* x_1431; lean_object* x_1432; lean_object* x_1433; 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_1273 = lean_ctor_get(x_1068, 0); +x_1274 = lean_ctor_get(x_1068, 1); +lean_inc(x_1274); +lean_inc(x_1273); +lean_dec(x_1068); +x_1275 = l_Array_empty___closed__1; +x_1276 = lean_array_push(x_1275, x_44); +x_1277 = l_myMacro____x40_Init_Notation___hyg_376____closed__8; +lean_inc(x_1276); +x_1278 = lean_array_push(x_1276, x_1277); +x_1279 = l_Nat_repr(x_11); +x_1280 = l_Lean_numLitKind; +x_1281 = l_Lean_instInhabitedSourceInfo___closed__1; +x_1282 = l_Lean_Syntax_mkLit(x_1280, x_1279, x_1281); +x_1283 = lean_array_push(x_1278, x_1282); +x_1284 = l_Lean_Parser_Command_parserKindPrio___elambda__1___closed__2; +x_1285 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1285, 0, x_1284); +lean_ctor_set(x_1285, 1, x_1283); +x_1286 = l_myMacro____x40_Init_Data_Array_Basic___hyg_3404____closed__9; +x_1287 = lean_array_push(x_1286, x_1285); +x_1288 = l_Lean_myMacro____x40_Init_Notation___hyg_12778____closed__11; +x_1289 = lean_array_push(x_1287, x_1288); +x_1290 = l_Lean_nullKind___closed__2; +x_1291 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1291, 0, x_1290); +lean_ctor_set(x_1291, 1, x_1289); +x_1292 = lean_array_get_size(x_30); +x_1293 = lean_usize_of_nat(x_1292); +lean_dec(x_1292); +x_1294 = 0; +x_1295 = x_30; +x_1296 = l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_2962____spec__3(x_1293, x_1294, x_1295); +x_1297 = x_1296; +x_1298 = l_Array_appendCore___rarg(x_1275, x_1297); +lean_dec(x_1297); +x_1299 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1299, 0, x_1290); +lean_ctor_set(x_1299, 1, x_1298); +x_1300 = l_Lean_Elab_Term_mkTermElabAttributeUnsafe___closed__7; +lean_inc(x_1066); +lean_inc(x_1273); +x_1301 = l_Lean_addMacroScope(x_1273, x_1300, x_1066); +x_1302 = lean_box(0); +x_1303 = l_Lean_Elab_Command_expandElab___closed__31; +x_1304 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1304, 0, x_1281); +lean_ctor_set(x_1304, 1, x_1303); +lean_ctor_set(x_1304, 2, x_1301); +lean_ctor_set(x_1304, 3, x_1302); +x_1305 = l_Lean_Elab_Command_expandMixfix___lambda__1___closed__2; +x_1306 = lean_array_push(x_1305, x_1304); +x_1307 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1307, 0, x_1290); +lean_ctor_set(x_1307, 1, x_1276); +x_1308 = lean_array_push(x_1306, x_1307); +x_1309 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__15; +x_1310 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1310, 0, x_1309); +lean_ctor_set(x_1310, 1, x_1308); +x_1311 = lean_array_push(x_1275, x_1310); +x_1312 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1312, 0, x_1290); +lean_ctor_set(x_1312, 1, x_1311); +x_1313 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__13; +x_1314 = lean_array_push(x_1313, x_1312); +x_1315 = lean_array_push(x_1314, x_1288); +x_1316 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__10; +x_1317 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1317, 0, x_1316); +lean_ctor_set(x_1317, 1, x_1315); +x_1318 = lean_array_push(x_1275, x_1317); x_1319 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1319, 0, x_1318); -lean_ctor_set(x_1319, 1, x_1317); -x_1320 = lean_array_push(x_1169, x_1319); -x_1321 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1321, 0, x_1141); -lean_ctor_set(x_1321, 1, x_1320); -x_1322 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_1322, 0, x_1321); -lean_ctor_set(x_1322, 1, x_1138); -return x_1322; +lean_ctor_set(x_1319, 0, x_1290); +lean_ctor_set(x_1319, 1, x_1318); +x_1320 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__8; +x_1321 = lean_array_push(x_1320, x_1319); +x_1322 = l_myMacro____x40_Init_Notation___hyg_11918____closed__22; +x_1323 = lean_array_push(x_1321, x_1322); +x_1324 = lean_array_push(x_1323, x_1322); +x_1325 = lean_array_push(x_1324, x_1322); +x_1326 = lean_array_push(x_1325, x_1322); +x_1327 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__7; +x_1328 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1328, 0, x_1327); +lean_ctor_set(x_1328, 1, x_1326); +x_1329 = lean_array_push(x_1275, x_1328); +x_1330 = l_Lean_Elab_Command_expandElab___closed__8; +lean_inc(x_1066); +lean_inc(x_1273); +x_1331 = l_Lean_addMacroScope(x_1273, x_1330, x_1066); +x_1332 = l_Lean_Elab_Command_expandElab___closed__7; +x_1333 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1333, 0, x_1281); +lean_ctor_set(x_1333, 1, x_1332); +lean_ctor_set(x_1333, 2, x_1331); +lean_ctor_set(x_1333, 3, x_1302); +x_1334 = lean_array_push(x_1275, x_1333); +x_1335 = lean_array_push(x_1334, x_1322); +x_1336 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__25; +x_1337 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1337, 0, x_1336); +lean_ctor_set(x_1337, 1, x_1335); +x_1338 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__23; +x_1339 = lean_array_push(x_1338, x_1337); +x_1340 = l_Lean_Elab_Term_mkTermElabAttributeUnsafe___closed__9; +lean_inc(x_1066); +lean_inc(x_1273); +x_1341 = l_Lean_addMacroScope(x_1273, x_1340, x_1066); +x_1342 = l_Lean_Elab_Command_expandElab___closed__34; +x_1343 = l_Lean_Elab_Command_expandElab___closed__36; +x_1344 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1344, 0, x_1281); +lean_ctor_set(x_1344, 1, x_1342); +lean_ctor_set(x_1344, 2, x_1341); +lean_ctor_set(x_1344, 3, x_1343); +x_1345 = l_myMacro____x40_Init_Notation___hyg_11918____closed__11; +x_1346 = lean_array_push(x_1345, x_1344); +x_1347 = l_Lean_expandExplicitBindersAux_loop___closed__8; +x_1348 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1348, 0, x_1347); +lean_ctor_set(x_1348, 1, x_1346); +x_1349 = lean_array_push(x_1275, x_1348); +x_1350 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1350, 0, x_1290); +lean_ctor_set(x_1350, 1, x_1349); +x_1351 = lean_array_push(x_1320, x_1350); +x_1352 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__27; +x_1353 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1353, 0, x_1352); +lean_ctor_set(x_1353, 1, x_1351); +x_1354 = lean_array_push(x_1339, x_1353); +x_1355 = l_stx___x3c_x7c_x3e_____closed__8; +lean_inc(x_1066); +lean_inc(x_1273); +x_1356 = l_Lean_addMacroScope(x_1273, x_1355, x_1066); +x_1357 = l_Lean_Elab_Command_expandElab___closed__38; +x_1358 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1358, 0, x_1281); +lean_ctor_set(x_1358, 1, x_1357); +lean_ctor_set(x_1358, 2, x_1356); +lean_ctor_set(x_1358, 3, x_1302); +lean_inc(x_1358); +x_1359 = lean_array_push(x_1275, x_1358); +x_1360 = l_Lean_Elab_Command_expandElab___closed__46; +lean_inc(x_1066); +lean_inc(x_1273); +x_1361 = l_Lean_addMacroScope(x_1273, x_1360, x_1066); +x_1362 = l_Lean_Elab_Command_expandElab___closed__45; +x_1363 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1363, 0, x_1281); +lean_ctor_set(x_1363, 1, x_1362); +lean_ctor_set(x_1363, 2, x_1361); +lean_ctor_set(x_1363, 3, x_1302); +lean_inc(x_1363); +x_1364 = lean_array_push(x_1359, x_1363); +x_1365 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1365, 0, x_1290); +lean_ctor_set(x_1365, 1, x_1364); +x_1366 = lean_array_push(x_1275, x_1365); +x_1367 = l_myMacro____x40_Init_Notation___hyg_10790____closed__17; +x_1368 = lean_array_push(x_1366, x_1367); +x_1369 = lean_array_push(x_1320, x_1358); +x_1370 = l_Lean_Elab_Term_expandFunBinders_loop___closed__4; +x_1371 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1371, 0, x_1370); +lean_ctor_set(x_1371, 1, x_1369); +x_1372 = lean_array_push(x_1275, x_1371); +x_1373 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1373, 0, x_1290); +lean_ctor_set(x_1373, 1, x_1372); +x_1374 = l_Lean_Elab_Term_expandFunBinders_loop___closed__3; +x_1375 = lean_array_push(x_1374, x_1373); +x_1376 = lean_array_push(x_1375, x_1322); +x_1377 = l_Lean_Elab_Term_expandFunBinders_loop___closed__6; +x_1378 = lean_array_push(x_1376, x_1377); +x_1379 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__22; +x_1380 = lean_array_push(x_1379, x_43); +x_1381 = l_myMacro____x40_Init_Notation___hyg_49____closed__16; +x_1382 = lean_array_push(x_1380, x_1381); +x_1383 = l_Lean_Parser_Term_quot___elambda__1___closed__1; +x_1384 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1384, 0, x_1383); +lean_ctor_set(x_1384, 1, x_1382); +x_1385 = lean_array_push(x_1275, x_1384); +x_1386 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1386, 0, x_1290); +lean_ctor_set(x_1386, 1, x_1385); +x_1387 = lean_array_push(x_1275, x_1386); +x_1388 = lean_array_push(x_1387, x_1367); +x_1389 = l_Lean_Elab_Command_expandElab___closed__51; +lean_inc(x_1066); +lean_inc(x_1273); +x_1390 = l_Lean_addMacroScope(x_1273, x_1389, x_1066); +x_1391 = l_Lean_Elab_Command_expandElab___closed__49; +x_1392 = l_Lean_Elab_Command_expandElab___closed__53; +x_1393 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1393, 0, x_1281); +lean_ctor_set(x_1393, 1, x_1391); +lean_ctor_set(x_1393, 2, x_1390); +lean_ctor_set(x_1393, 3, x_1392); +x_1394 = lean_array_push(x_1275, x_1393); +x_1395 = lean_array_push(x_1275, x_1363); +x_1396 = lean_array_push(x_1275, x_1064); +x_1397 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1397, 0, x_1290); +lean_ctor_set(x_1397, 1, x_1396); +x_1398 = lean_array_push(x_1275, x_1397); +x_1399 = lean_array_push(x_1398, x_1367); +x_1400 = lean_array_push(x_1399, x_22); +x_1401 = l_myMacro____x40_Init_Notation___hyg_10790____closed__15; +x_1402 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1402, 0, x_1401); +lean_ctor_set(x_1402, 1, x_1400); +x_1403 = l_myMacro____x40_Init_Notation___hyg_10790____closed__13; +x_1404 = lean_array_push(x_1403, x_1402); +x_1405 = l_myMacro____x40_Init_Notation___hyg_10790____closed__11; +x_1406 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1406, 0, x_1405); +lean_ctor_set(x_1406, 1, x_1404); +x_1407 = lean_array_push(x_1395, x_1406); +x_1408 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1408, 0, x_1290); +lean_ctor_set(x_1408, 1, x_1407); +x_1409 = lean_array_push(x_1394, 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_1388, x_1411); +x_1413 = l_Lean_Elab_Term_expandFunBinders_loop___closed__11; +x_1414 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1414, 0, x_1413); +lean_ctor_set(x_1414, 1, x_1412); +x_1415 = lean_array_push(x_1275, x_1414); +x_1416 = l_Lean_myMacro____x40_Init_Notation___hyg_12778____closed__3; +x_1417 = lean_array_push(x_1415, x_1416); +x_1418 = l_Lean_Elab_Command_expandElab___closed__19; +x_1419 = l_Lean_addMacroScope(x_1273, x_1418, x_1066); +x_1420 = l_Lean_Elab_Command_expandElab___closed__18; +x_1421 = l_Lean_Elab_Command_expandElab___closed__22; +x_1422 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1422, 0, x_1281); +lean_ctor_set(x_1422, 1, x_1420); +lean_ctor_set(x_1422, 2, x_1419); +lean_ctor_set(x_1422, 3, x_1421); +x_1423 = l_Lean_Elab_Command_mkSimpleDelab_go___closed__23; +x_1424 = lean_array_push(x_1423, x_1422); +x_1425 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1425, 0, x_1413); +lean_ctor_set(x_1425, 1, x_1424); +x_1426 = lean_array_push(x_1417, x_1425); +x_1427 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1427, 0, x_1290); +lean_ctor_set(x_1427, 1, x_1426); +x_1428 = l_Lean_Elab_Term_expandFunBinders_loop___closed__10; +x_1429 = lean_array_push(x_1428, x_1427); +x_1430 = l_Lean_Elab_Term_expandFunBinders_loop___closed__7; +x_1431 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1431, 0, x_1430); +lean_ctor_set(x_1431, 1, x_1429); +x_1432 = lean_array_push(x_1378, x_1431); +x_1433 = l_Lean_Elab_Term_expandFunBinders_loop___closed__1; +x_1434 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1434, 0, x_1433); +lean_ctor_set(x_1434, 1, x_1432); +x_1435 = lean_array_push(x_1368, x_1434); +x_1436 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1436, 0, x_1401); +lean_ctor_set(x_1436, 1, x_1435); +x_1437 = lean_array_push(x_1403, x_1436); +x_1438 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1438, 0, x_1405); +lean_ctor_set(x_1438, 1, x_1437); +x_1439 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15704____closed__5; +x_1440 = lean_array_push(x_1439, x_1438); +x_1441 = lean_array_push(x_1440, x_1322); +x_1442 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__46; +x_1443 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1443, 0, x_1442); +lean_ctor_set(x_1443, 1, x_1441); +x_1444 = lean_array_push(x_1354, x_1443); +x_1445 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__21; +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_1329, x_1446); +x_1448 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1127____closed__5; +x_1449 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1449, 0, x_1448); +lean_ctor_set(x_1449, 1, x_1447); +if (lean_obj_tag(x_8) == 0) +{ +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; +x_1450 = l_Lean_Elab_Command_expandMacro___closed__3; +x_1451 = lean_array_push(x_1450, x_1291); +x_1452 = lean_array_push(x_1451, x_1299); +x_1453 = l_myMacro____x40_Init_Notation___hyg_11918____closed__10; +x_1454 = lean_array_push(x_1452, x_1453); +x_1455 = lean_array_push(x_1454, x_18); +x_1456 = l_Lean_Parser_Command_syntax___elambda__1___closed__1; +x_1457 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1457, 0, x_1456); +lean_ctor_set(x_1457, 1, x_1455); +x_1458 = lean_array_push(x_1275, x_1457); +x_1459 = lean_array_push(x_1458, x_1449); +x_1460 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1460, 0, x_1290); +lean_ctor_set(x_1460, 1, x_1459); +x_1461 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1461, 0, x_1460); +lean_ctor_set(x_1461, 1, x_1274); +return x_1461; +} +else +{ +lean_object* x_1462; lean_object* x_1463; lean_object* x_1464; lean_object* x_1465; lean_object* x_1466; lean_object* x_1467; lean_object* x_1468; lean_object* x_1469; lean_object* x_1470; lean_object* x_1471; lean_object* x_1472; lean_object* x_1473; lean_object* x_1474; lean_object* x_1475; lean_object* x_1476; lean_object* x_1477; lean_object* x_1478; +x_1462 = lean_ctor_get(x_8, 0); +lean_inc(x_1462); +lean_dec(x_8); +x_1463 = lean_array_push(x_1275, x_1462); +x_1464 = l_Array_appendCore___rarg(x_1275, x_1463); +lean_dec(x_1463); +x_1465 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1465, 0, x_1290); +lean_ctor_set(x_1465, 1, x_1464); +x_1466 = l_Lean_Elab_Command_expandMacro___closed__1; +x_1467 = lean_array_push(x_1466, x_1465); +x_1468 = lean_array_push(x_1467, x_1291); +x_1469 = lean_array_push(x_1468, x_1299); +x_1470 = l_myMacro____x40_Init_Notation___hyg_11918____closed__10; +x_1471 = lean_array_push(x_1469, x_1470); +x_1472 = lean_array_push(x_1471, x_18); +x_1473 = l_Lean_Parser_Command_syntax___elambda__1___closed__1; +x_1474 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1474, 0, x_1473); +lean_ctor_set(x_1474, 1, x_1472); +x_1475 = lean_array_push(x_1275, x_1474); +x_1476 = lean_array_push(x_1475, x_1449); +x_1477 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1477, 0, x_1290); +lean_ctor_set(x_1477, 1, x_1476); +x_1478 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1478, 0, x_1477); +lean_ctor_set(x_1478, 1, x_1274); +return x_1478; +} } } } @@ -34595,6 +35268,8 @@ l_Lean_Elab_Command_expandMacro___closed__1 = _init_l_Lean_Elab_Command_expandMa 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(); lean_mark_persistent(l_Lean_Elab_Command_expandMacro___closed__2); +l_Lean_Elab_Command_expandMacro___closed__3 = _init_l_Lean_Elab_Command_expandMacro___closed__3(); +lean_mark_persistent(l_Lean_Elab_Command_expandMacro___closed__3); l_Lean_Elab_Command_expandMacro___boxed__const__1 = _init_l_Lean_Elab_Command_expandMacro___boxed__const__1(); lean_mark_persistent(l_Lean_Elab_Command_expandMacro___boxed__const__1); l_Lean_Elab_Command_elabMacro___closed__1 = _init_l_Lean_Elab_Command_elabMacro___closed__1(); @@ -34604,9 +35279,9 @@ lean_mark_persistent(l___regBuiltin_Lean_Elab_Command_elabMacro___closed__1); res = l___regBuiltin_Lean_Elab_Command_elabMacro(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_17724____closed__1 = _init_l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_17724____closed__1(); -lean_mark_persistent(l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_17724____closed__1); -res = l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_17724_(lean_io_mk_world()); +l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_17791____closed__1 = _init_l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_17791____closed__1(); +lean_mark_persistent(l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_17791____closed__1); +res = l_Lean_Elab_Command_initFn____x40_Lean_Elab_Syntax___hyg_17791_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); l_Lean_Elab_Command_withExpectedType___closed__1 = _init_l_Lean_Elab_Command_withExpectedType___closed__1(); diff --git a/stage0/stdlib/Lean/Elab/Tactic/Basic.c b/stage0/stdlib/Lean/Elab/Tactic/Basic.c index 6f4f4745eb..3e6555aa15 100644 --- a/stage0/stdlib/Lean/Elab/Tactic/Basic.c +++ b/stage0/stdlib/Lean/Elab/Tactic/Basic.c @@ -179,6 +179,7 @@ lean_object* l_Lean_Elab_Tactic_tryCatch___rarg(lean_object*, lean_object*, lean lean_object* l___regBuiltin_Lean_Elab_Tactic_evalClear(lean_object*); lean_object* l_Lean_Elab_Tactic_evalFailIfSuccess___closed__3; lean_object* l___regBuiltin_Lean_Elab_Tactic_evalIntros___closed__1; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13713____closed__3; lean_object* l_Lean_Meta_intro(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_tagUntaggedGoals___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___regBuiltin_Lean_Elab_Tactic_evalAssumption(lean_object*); @@ -422,6 +423,7 @@ lean_object* l_Lean_Elab_Tactic_focus___rarg___lambda__1___boxed(lean_object*, l lean_object* l_Lean_Elab_Tactic_tagUntaggedGoals_match__2(lean_object*); lean_object* l_List_filterAuxM___at_Lean_Elab_Tactic_pruneSolvedGoals___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* l_Lean_Elab_Tactic_evalFailIfSuccess(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_Tactic_myMacro____x40_Init_Notation___hyg_13713____closed__2; lean_object* l_Lean_Elab_Tactic_evalIntros_match__1(lean_object*); lean_object* l_Lean_Meta_isExprMVarAssigned(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_TacticM_run___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -452,7 +454,6 @@ lean_object* l_Lean_Meta_inferType(lean_object*, lean_object*, lean_object*, lea lean_object* l___private_Lean_Elab_Tactic_Basic_0__Lean_Elab_Tactic_getIntrosSize___boxed(lean_object*); lean_object* l___regBuiltin_Lean_Elab_Tactic_evalTacticSeqBracketed___closed__1; lean_object* l_Lean_Elab_Tactic_evalAssumption___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, 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_Std_HashMapImp_find_x3f___at_Lean_Elab_Tactic_evalTactic___spec__5(lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_liftTermElabM___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_Tactic_liftMetaTacticAux(lean_object*); @@ -495,7 +496,6 @@ lean_object* l_Lean_indentD(lean_object*); extern lean_object* l_Lean_Elab_unsupportedSyntaxExceptionId; lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_evalTactic___spec__10___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Elab_Tactic_Basic_0__Lean_Elab_Tactic_evalTacticUsing_loop_match__1___rarg(lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13707____closed__2; lean_object* l_Lean_Elab_Tactic_BacktrackableState_restore___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_evalSubst___closed__1; lean_object* l_Lean_Elab_Tactic_evalIntros(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -8401,7 +8401,7 @@ _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_2 = l_Lean_Elab_Tactic_tacticElabAttribute; -x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13707____closed__2; +x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13713____closed__2; x_4 = l___regBuiltin_Lean_Elab_Tactic_evalSeq1___closed__1; x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; @@ -8939,7 +8939,7 @@ _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_2 = l_Lean_Elab_Tactic_tacticElabAttribute; -x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13707____closed__3; +x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13713____closed__3; x_4 = l___regBuiltin_Lean_Elab_Tactic_evalTacticSeq___closed__1; x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; @@ -10211,7 +10211,7 @@ x_42 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_42, 0, x_29); lean_ctor_set(x_42, 1, x_41); x_43 = lean_array_push(x_27, x_42); -x_44 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13707____closed__2; +x_44 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13713____closed__2; x_45 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_45, 0, x_44); lean_ctor_set(x_45, 1, x_43); @@ -10412,7 +10412,7 @@ x_137 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_137, 0, x_66); lean_ctor_set(x_137, 1, x_136); x_138 = lean_array_push(x_91, x_137); -x_139 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13707____closed__2; +x_139 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13713____closed__2; x_140 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_140, 0, x_139); lean_ctor_set(x_140, 1, x_138); @@ -14105,7 +14105,7 @@ x_15 = l_Lean_Syntax_getArg(x_1, x_14); x_16 = lean_unsigned_to_nat(3u); x_17 = l_Lean_Syntax_getArg(x_1, x_16); lean_dec(x_1); -x_18 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13707____closed__3; +x_18 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13713____closed__3; lean_inc(x_17); x_19 = l_Lean_Syntax_isOfKind(x_17, x_18); if (x_19 == 0) diff --git a/stage0/stdlib/Lean/Meta/AppBuilder.c b/stage0/stdlib/Lean/Meta/AppBuilder.c index cbdf0e27ef..ea35f39a44 100644 --- a/stage0/stdlib/Lean/Meta/AppBuilder.c +++ b/stage0/stdlib/Lean/Meta/AppBuilder.c @@ -269,7 +269,7 @@ lean_object* l___private_Lean_Meta_AppBuilder_0__Lean_Meta_mkCongrFunImp___close size_t lean_usize_of_nat(lean_object*); lean_object* l_Lean_Meta_mkAppM___rarg(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MessageData_arrayExpr_toMessageData(lean_object*, lean_object*, lean_object*); -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14019____closed__1; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14025____closed__1; lean_object* l_Lean_Meta_mkHEqRefl___rarg(lean_object*, lean_object*); lean_object* l___private_Lean_Meta_AppBuilder_0__Lean_Meta_mkEqOfHEqImp___lambda__1___closed__1; lean_object* l_Lean_Meta_mkAppOptM___at_Lean_Meta_mkDecideProof___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -10908,7 +10908,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_mkDecIsTrue___closed__2; -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14019____closed__1; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14025____closed__1; x_3 = lean_name_mk_string(x_1, x_2); return x_3; } diff --git a/stage0/stdlib/Lean/Parser/Term.c b/stage0/stdlib/Lean/Parser/Term.c index 057882574f..7a9298d961 100644 --- a/stage0/stdlib/Lean/Parser/Term.c +++ b/stage0/stdlib/Lean/Parser/Term.c @@ -27,6 +27,7 @@ extern lean_object* l_myMacro____x40_Init_Notation___hyg_10790____closed__11; lean_object* l_Lean_Parser_Term_scoped___closed__2; lean_object* l_Lean_Parser_Term_explicitUniv___closed__7; lean_object* l_Lean_Parser_Term_basicFun_formatter___closed__3; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14154____closed__2; lean_object* l_Lean_Parser_Term_attrInstance_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_nativeDecide___elambda__1___closed__9; lean_object* l_Lean_Parser_Term_sufficesDecl_formatter___closed__1; @@ -1097,6 +1098,7 @@ lean_object* l_Lean_Parser_Term_prop___elambda__1___closed__9; lean_object* l_Lean_Parser_Term_typeSpec_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___regBuiltin_Lean_Parser_Tactic_quot_formatter___closed__1; lean_object* l_Lean_Parser_Term_structInst_parenthesizer___closed__8; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13713____closed__3; lean_object* l_Lean_Parser_Tactic_tacticSeq1Indented___elambda__1___closed__17; lean_object* l_Lean_Parser_Term_ensureTypeOf___elambda__1___closed__9; lean_object* l_Lean_Parser_Term_whereDecls___closed__1; @@ -1710,6 +1712,7 @@ lean_object* l_Lean_Parser_Term_tparser_x21___elambda__1(lean_object*, lean_obje lean_object* l_Lean_Parser_Term_paren_parenthesizer___closed__10; lean_object* l_Lean_Parser_Term_scoped; extern lean_object* l_myMacro____x40_Init_Notation___hyg_11918____closed__7; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15704____closed__3; lean_object* l_Lean_Parser_Term_parser_x21_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_fun___elambda__1(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_fromTerm___elambda__1___closed__8; @@ -1882,7 +1885,6 @@ lean_object* l_Lean_Parser_Term_letrec_parenthesizer___closed__4; lean_object* l_Lean_Parser_Term_namedArgument; lean_object* l_Lean_Parser_Term_binderTactic___elambda__1___closed__8; lean_object* l_Lean_Parser_Term_dbgTrace___elambda__1___closed__7; -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15698____closed__3; lean_object* l_Lean_Parser_Term_structInst_parenthesizer___closed__4; lean_object* l_Lean_Parser_Term_implicitBinder(uint8_t); lean_object* l_Lean_Parser_Term_tparser_x21___elambda__1___closed__7; @@ -1929,7 +1931,6 @@ lean_object* l_Lean_Parser_parserOfStack(lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_let_x2a___closed__5; lean_object* l___regBuiltin_Lean_Parser_Term_anonymousCtor_formatter___closed__1; extern lean_object* l_Lean_Parser_Tactic_suffices___closed__1; -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14019____closed__2; lean_object* l_Lean_Parser_Term_letDecl___closed__9; extern lean_object* l_Lean_Parser_Level_ident___closed__1; lean_object* l_Lean_Parser_Tactic_tacticSeq1Indented___elambda__1___closed__21; @@ -2002,6 +2003,7 @@ lean_object* l_Lean_Parser_Term_doubleQuotedName; lean_object* l___regBuiltin_Lean_Parser_Term_prop_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_borrowed_formatter___closed__1; lean_object* l_Lean_Parser_Term_typeOf___elambda__1___closed__6; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14025____closed__2; lean_object* l_Lean_Parser_Term_structInst___elambda__1___closed__2; lean_object* l_Lean_Parser_Term_simpleBinder_formatter___closed__1; lean_object* l_Lean_Parser_Term_dbgTrace_formatter___closed__4; @@ -2185,10 +2187,10 @@ lean_object* l_Lean_Parser_Term_attrInstance; lean_object* l_Lean_Parser_Tactic_tacticSeqBracketed___elambda__1___closed__3; lean_object* l___regBuiltin_Lean_Parser_Term_show_formatter___closed__1; lean_object* l_Lean_Parser_Term_stateRefT___elambda__1___closed__11; -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14019____closed__1; lean_object* l_Lean_Parser_Term_dynamicQuot_parenthesizer___closed__2; lean_object* l_Lean_Parser_Term_explicitUniv___elambda__1___closed__9; lean_object* l_Lean_Parser_Level_quot___closed__7; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14025____closed__1; lean_object* l___regBuiltinParser_Lean_Parser_Term_fun(lean_object*); lean_object* l_Lean_Parser_Term_haveAssign___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_funImplicitBinder___closed__3; @@ -2832,6 +2834,7 @@ lean_object* l_Lean_Parser_Term_structInstLVal___closed__8; lean_object* l_Lean_Parser_Term_letIdDecl___closed__3; lean_object* l_Lean_Parser_Term_explicit_formatter___closed__2; extern lean_object* l_myMacro____x40_Init_Notation___hyg_1625____closed__4; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13713____closed__2; lean_object* l_Lean_Parser_Term_attrKind_parenthesizer___closed__3; lean_object* l_Lean_Parser_Term_match___closed__8; lean_object* l_Lean_Parser_Term_forall___closed__8; @@ -2978,7 +2981,6 @@ lean_object* l_Lean_Parser_Term_emptyC___closed__5; lean_object* l___regBuiltin_Lean_Parser_Term_have_formatter(lean_object*); lean_object* l_Lean_Parser_Term_funSimpleBinder___closed__1; lean_object* l_Lean_Parser_Term_unreachable_parenthesizer___closed__1; -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13707____closed__3; lean_object* l_Lean_Parser_Term_panic_formatter___closed__1; lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3590____closed__26; lean_object* l_Lean_Parser_Term_attrInstance_formatter___closed__1; @@ -3205,7 +3207,6 @@ lean_object* l_Lean_Parser_Term_parenSpecial_parenthesizer___closed__2; lean_object* l_Lean_Parser_Term_match_formatter___closed__10; 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; @@ -3220,7 +3221,6 @@ lean_object* l_Lean_Parser_Term_explicitUniv_formatter___closed__4; lean_object* l_Lean_Parser_Term_nomatch___elambda__1___closed__10; lean_object* l_Lean_Parser_Term_assert_formatter___closed__6; lean_object* l___regBuiltinParser_Lean_Parser_Term_arrow(lean_object*); -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13707____closed__2; lean_object* l_Lean_Parser_Term_paren_parenthesizer___closed__6; lean_object* l_Lean_Parser_Term_basicFun___closed__9; lean_object* l___regBuiltinParser_Lean_Parser_Term_namedPattern(lean_object*); @@ -3369,6 +3369,7 @@ lean_object* l_Lean_Parser_Term_letrec___elambda__1___closed__5; lean_object* l_Lean_Parser_Term_matchDiscr_parenthesizer___closed__6; lean_object* l_Lean_Parser_Term_panic_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_syntheticHole_parenthesizer___closed__2; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15704____closed__4; lean_object* l_Lean_Parser_Term_structInst___elambda__1___closed__7; lean_object* l___regBuiltin_Lean_Parser_Term_arrayRef_parenthesizer___closed__1; lean_object* l_Lean_Parser_Term_byTactic_parenthesizer___closed__4; @@ -3555,7 +3556,6 @@ lean_object* l_Lean_Parser_initFn____x40_Lean_Parser_Term___hyg_3590____closed__ lean_object* l___regBuiltin_Lean_Parser_Term_type_parenthesizer(lean_object*); lean_object* l_Lean_Parser_Term_matchAltsWhereDecls___closed__5; lean_object* l_Lean_Parser_Term_letDecl___closed__3; -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14148____closed__2; lean_object* l_Lean_Parser_Term_whereDecls___elambda__1___closed__8; lean_object* l_Lean_Parser_Term_doubleQuotedName___elambda__1___closed__9; lean_object* l_Lean_Parser_Term_letrec_formatter___closed__1; @@ -3584,6 +3584,7 @@ lean_object* l_Lean_Parser_Term_nomatch___elambda__1___closed__7; extern lean_object* l_Lean_Parser_Level_paren___elambda__1___closed__4; lean_object* l_Lean_Parser_Term_namedPattern___elambda__1___closed__1; lean_object* l_Lean_Parser_Term_attrInstance_parenthesizer___closed__6; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14154____closed__1; 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*); @@ -3718,7 +3719,6 @@ lean_object* l_Lean_Parser_termParser_parenthesizer(lean_object*, lean_object*, lean_object* l_Lean_Parser_Term_letIdLhs_parenthesizer___closed__2; lean_object* l_Lean_Parser_Term_attributes_formatter___closed__3; lean_object* l_Lean_Parser_Term_letEqnsDecl___closed__4; -extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14148____closed__1; lean_object* l_Lean_Parser_Term_simpleBinderWithoutType_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_whereDecls_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_prop___elambda__1(lean_object*, lean_object*); @@ -4504,7 +4504,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = l_Lean_Parser_Tactic_case___closed__9; -x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13707____closed__3; +x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13713____closed__3; x_3 = l_Lean_Parser_Tactic_tacticSeq___closed__3; x_4 = 0; x_5 = l_Lean_Parser_nodeWithAntiquot(x_1, x_2, x_3, x_4); @@ -4591,7 +4591,7 @@ lean_inc(x_5); x_6 = lean_array_get_size(x_5); lean_dec(x_5); x_7 = lean_apply_2(x_4, x_1, x_2); -x_8 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13707____closed__2; +x_8 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13713____closed__2; x_9 = l_Lean_Parser_ParserState_mkNode(x_7, x_8, x_6); return x_9; } @@ -4603,7 +4603,7 @@ lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; x_1 = l_Lean_Parser_Tactic_seq1___elambda__1___closed__6; x_2 = lean_ctor_get(x_1, 0); lean_inc(x_2); -x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13707____closed__2; +x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13713____closed__2; x_4 = l_Lean_Parser_nodeInfo(x_3, x_2); return x_4; } @@ -5218,7 +5218,7 @@ _start: { lean_object* x_6; lean_object* x_7; lean_object* x_8; uint8_t x_9; lean_object* x_10; x_6 = l_Lean_Parser_Tactic_case___closed__9; -x_7 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13707____closed__3; +x_7 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13713____closed__3; x_8 = l_Lean_Parser_Tactic_tacticSeq_formatter___closed__3; x_9 = 0; x_10 = l_Lean_Parser_nodeWithAntiquot_formatter(x_6, x_7, x_8, x_9, x_1, x_2, x_3, x_4, x_5); @@ -5548,7 +5548,7 @@ lean_object* l_Lean_Parser_Tactic_tacticSeq_parenthesizer(lean_object* x_1, lean _start: { lean_object* x_6; lean_object* x_7; uint8_t x_8; lean_object* x_9; -x_6 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13707____closed__3; +x_6 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13713____closed__3; x_7 = l_Lean_Parser_Tactic_tacticSeq_parenthesizer___closed__3; x_8 = 0; x_9 = l_Lean_Parser_nodeWithAntiquot_parenthesizer___rarg(x_6, x_7, x_8, x_1, x_2, x_3, x_4, x_5); @@ -8195,7 +8195,7 @@ static lean_object* _init_l_Lean_Parser_Term_sorry___elambda__1___closed__1() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14148____closed__2; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14154____closed__2; x_2 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; @@ -8205,7 +8205,7 @@ static lean_object* _init_l_Lean_Parser_Term_sorry___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_Tactic_myMacro____x40_Init_Notation___hyg_14148____closed__1; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14154____closed__1; x_2 = l_Lean_Parser_Term_sorry___elambda__1___closed__1; x_3 = 1; x_4 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3); @@ -8216,7 +8216,7 @@ static lean_object* _init_l_Lean_Parser_Term_sorry___elambda__1___closed__3() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14148____closed__1; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14154____closed__1; x_2 = l_String_trim(x_1); return x_2; } @@ -8235,7 +8235,7 @@ static lean_object* _init_l_Lean_Parser_Term_sorry___elambda__1___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14148____closed__2; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14154____closed__2; x_2 = l_Lean_Parser_Term_sorry___elambda__1___closed__4; x_3 = lean_alloc_closure((void*)(l_Lean_Parser_nodeFn), 4, 2); lean_closure_set(x_3, 0, x_1); @@ -8281,7 +8281,7 @@ static lean_object* _init_l_Lean_Parser_Term_sorry___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14148____closed__2; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14154____closed__2; x_2 = l_Lean_Parser_Term_sorry___closed__1; x_3 = l_Lean_Parser_nodeInfo(x_1, x_2); return x_3; @@ -8342,7 +8342,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_Tactic_myMacro____x40_Init_Notation___hyg_14148____closed__2; +x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14154____closed__2; x_4 = 1; x_5 = l_Lean_Parser_Term_sorry; x_6 = lean_unsigned_to_nat(0u); @@ -8354,7 +8354,7 @@ static lean_object* _init_l_Lean_Parser_Term_sorry_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_Tactic_myMacro____x40_Init_Notation___hyg_14148____closed__1; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14154____closed__1; x_2 = l_Lean_Parser_Term_sorry___elambda__1___closed__1; x_3 = 1; x_4 = lean_box(x_3); @@ -8369,7 +8369,7 @@ static lean_object* _init_l_Lean_Parser_Term_sorry_formatter___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14148____closed__1; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14154____closed__1; 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; @@ -8379,7 +8379,7 @@ static lean_object* _init_l_Lean_Parser_Term_sorry_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_Tactic_myMacro____x40_Init_Notation___hyg_14148____closed__2; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14154____closed__2; x_2 = lean_unsigned_to_nat(1024u); x_3 = l_Lean_Parser_Term_sorry_formatter___closed__2; x_4 = lean_alloc_closure((void*)(l_Lean_Parser_leadingNode_formatter___boxed), 8, 3); @@ -8412,7 +8412,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_Tactic_myMacro____x40_Init_Notation___hyg_14148____closed__2; +x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14154____closed__2; x_4 = l___regBuiltin_Lean_Parser_Term_sorry_formatter___closed__1; x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; @@ -8435,7 +8435,7 @@ static lean_object* _init_l_Lean_Parser_Term_sorry_parenthesizer___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14148____closed__2; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14154____closed__2; x_2 = lean_unsigned_to_nat(1024u); x_3 = l_Lean_Parser_antiquotNestedExpr_parenthesizer___closed__3; x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer___boxed), 8, 3); @@ -8468,7 +8468,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_Tactic_myMacro____x40_Init_Notation___hyg_14148____closed__2; +x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14154____closed__2; x_4 = l___regBuiltin_Lean_Parser_Term_sorry_parenthesizer___closed__1; x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; @@ -11478,7 +11478,7 @@ static lean_object* _init_l_Lean_Parser_Term_haveAssign___elambda__1___closed__1 _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15698____closed__4; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15704____closed__4; x_2 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; @@ -11488,7 +11488,7 @@ static lean_object* _init_l_Lean_Parser_Term_haveAssign___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_Tactic_myMacro____x40_Init_Notation___hyg_15698____closed__3; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15704____closed__3; x_2 = l_Lean_Parser_Term_haveAssign___elambda__1___closed__1; x_3 = 1; x_4 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3); @@ -11530,7 +11530,7 @@ static lean_object* _init_l_Lean_Parser_Term_haveAssign___elambda__1___closed__6 _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15698____closed__4; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15704____closed__4; x_2 = l_Lean_Parser_Term_haveAssign___elambda__1___closed__5; x_3 = lean_alloc_closure((void*)(l_Lean_Parser_nodeFn), 4, 2); lean_closure_set(x_3, 0, x_1); @@ -11588,7 +11588,7 @@ static lean_object* _init_l_Lean_Parser_Term_haveAssign___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15698____closed__4; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15704____closed__4; x_2 = l_Lean_Parser_Term_haveAssign___closed__2; x_3 = l_Lean_Parser_nodeInfo(x_1, x_2); return x_3; @@ -12286,7 +12286,7 @@ static lean_object* _init_l_Lean_Parser_Term_haveAssign_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_Tactic_myMacro____x40_Init_Notation___hyg_15698____closed__3; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15704____closed__3; x_2 = l_Lean_Parser_Term_haveAssign___elambda__1___closed__1; x_3 = 1; x_4 = lean_box(x_3); @@ -12323,7 +12323,7 @@ static lean_object* _init_l_Lean_Parser_Term_haveAssign_formatter___closed__4() _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15698____closed__4; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15704____closed__4; x_2 = lean_unsigned_to_nat(1024u); x_3 = l_Lean_Parser_Term_haveAssign_formatter___closed__3; x_4 = lean_alloc_closure((void*)(l_Lean_Parser_leadingNode_formatter___boxed), 8, 3); @@ -12658,7 +12658,7 @@ static lean_object* _init_l_Lean_Parser_Term_haveAssign_parenthesizer___closed__ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15698____closed__4; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_15704____closed__4; x_2 = lean_unsigned_to_nat(1024u); x_3 = l_Lean_Parser_Term_typeAscription_parenthesizer___closed__2; x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer___boxed), 8, 3); @@ -33738,7 +33738,7 @@ static lean_object* _init_l_Lean_Parser_Term_decide___elambda__1___closed__1() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14019____closed__2; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14025____closed__2; x_2 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; @@ -33748,7 +33748,7 @@ static lean_object* _init_l_Lean_Parser_Term_decide___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_Tactic_myMacro____x40_Init_Notation___hyg_14019____closed__1; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14025____closed__1; x_2 = l_Lean_Parser_Term_decide___elambda__1___closed__1; x_3 = 1; x_4 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3); @@ -33778,7 +33778,7 @@ static lean_object* _init_l_Lean_Parser_Term_decide___elambda__1___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14019____closed__2; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14025____closed__2; x_2 = l_Lean_Parser_Term_decide___elambda__1___closed__4; x_3 = lean_alloc_closure((void*)(l_Lean_Parser_nodeFn), 4, 2); lean_closure_set(x_3, 0, x_1); @@ -33824,7 +33824,7 @@ static lean_object* _init_l_Lean_Parser_Term_decide___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14019____closed__2; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14025____closed__2; x_2 = l_Lean_Parser_Term_decide___closed__1; x_3 = l_Lean_Parser_nodeInfo(x_1, x_2); return x_3; @@ -33885,7 +33885,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_Tactic_myMacro____x40_Init_Notation___hyg_14019____closed__2; +x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14025____closed__2; x_4 = 1; x_5 = l_Lean_Parser_Term_decide; x_6 = lean_unsigned_to_nat(0u); @@ -33897,7 +33897,7 @@ static lean_object* _init_l_Lean_Parser_Term_decide_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_Tactic_myMacro____x40_Init_Notation___hyg_14019____closed__1; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14025____closed__1; x_2 = l_Lean_Parser_Term_decide___elambda__1___closed__1; x_3 = 1; x_4 = lean_box(x_3); @@ -33922,7 +33922,7 @@ static lean_object* _init_l_Lean_Parser_Term_decide_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_Tactic_myMacro____x40_Init_Notation___hyg_14019____closed__2; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14025____closed__2; x_2 = lean_unsigned_to_nat(1024u); x_3 = l_Lean_Parser_Term_decide_formatter___closed__2; x_4 = lean_alloc_closure((void*)(l_Lean_Parser_leadingNode_formatter___boxed), 8, 3); @@ -33955,7 +33955,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_Tactic_myMacro____x40_Init_Notation___hyg_14019____closed__2; +x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14025____closed__2; x_4 = l___regBuiltin_Lean_Parser_Term_decide_formatter___closed__1; x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; @@ -33978,7 +33978,7 @@ static lean_object* _init_l_Lean_Parser_Term_decide_parenthesizer___closed__2() _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14019____closed__2; +x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14025____closed__2; x_2 = lean_unsigned_to_nat(1024u); x_3 = l_Lean_Parser_antiquotNestedExpr_parenthesizer___closed__3; x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer___boxed), 8, 3); @@ -34011,7 +34011,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_Tactic_myMacro____x40_Init_Notation___hyg_14019____closed__2; +x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_14025____closed__2; x_4 = l___regBuiltin_Lean_Parser_Term_decide_parenthesizer___closed__1; x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1); return x_5; @@ -43297,7 +43297,7 @@ lean_object* l_Lean_Parser_Tactic_seq1_formatter(lean_object* x_1, lean_object* _start: { lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_6 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13707____closed__2; +x_6 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13713____closed__2; x_7 = l_Lean_Parser_Tactic_seq1_formatter___closed__2; 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; @@ -43424,7 +43424,7 @@ lean_object* l_Lean_Parser_Tactic_seq1_parenthesizer(lean_object* x_1, lean_obje _start: { lean_object* x_6; lean_object* x_7; lean_object* x_8; -x_6 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13707____closed__2; +x_6 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13713____closed__2; x_7 = l_Lean_Parser_Tactic_seq1_parenthesizer___closed__1; 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; diff --git a/stage0/stdlib/Lean/Parser/Transform.c b/stage0/stdlib/Lean/Parser/Transform.c new file mode 100644 index 0000000000..eb07c55dd8 --- /dev/null +++ b/stage0/stdlib/Lean/Parser/Transform.c @@ -0,0 +1,1586 @@ +// Lean compiler output +// Module: Lean.Parser.Transform +// Imports: Init Lean.Parser.Basic +#include +#if defined(__clang__) +#pragma clang diagnostic ignored "-Wunused-parameter" +#pragma clang diagnostic ignored "-Wunused-label" +#elif defined(__GNUC__) && !defined(__CLANG__) +#pragma GCC diagnostic ignored "-Wunused-parameter" +#pragma GCC diagnostic ignored "-Wunused-label" +#pragma GCC diagnostic ignored "-Wunused-but-set-variable" +#endif +#ifdef __cplusplus +extern "C" { +#endif +lean_object* lean_array_set(lean_object*, lean_object*, lean_object*); +lean_object* l_Std_Range_forIn_loop___at_Lean_Syntax_manyToSepBy___spec__1(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_10790____closed__8; +lean_object* lean_array_push(lean_object*, lean_object*); +lean_object* lean_array_get_size(lean_object*); +lean_object* lean_string_append(lean_object*, lean_object*); +lean_object* l_Lean_Syntax_setTailInfo(lean_object*, lean_object*); +lean_object* lean_string_utf8_extract(lean_object*, lean_object*, lean_object*); +lean_object* lean_string_utf8_byte_size(lean_object*); +lean_object* lean_nat_add(lean_object*, lean_object*); +extern lean_object* l_myMacro____x40_Init_Notation___hyg_49____closed__15; +lean_object* l_Lean_Syntax_removeParen_match__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Syntax_manyToSepBy_match__1(lean_object*); +uint8_t lean_nat_dec_eq(lean_object*, lean_object*); +lean_object* lean_nat_sub(lean_object*, lean_object*); +lean_object* lean_array_get(lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_instInhabitedSourceInfo___closed__1; +lean_object* l_Std_Range_forIn_loop___at_Lean_Syntax_manyToSepBy___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +extern lean_object* l_Lean_instInhabitedSyntax; +lean_object* l_Lean_Syntax_manyToSepBy(lean_object*, lean_object*); +lean_object* l_Lean_Syntax_getNumArgs(lean_object*); +uint8_t lean_nat_dec_le(lean_object*, lean_object*); +lean_object* l_Lean_Syntax_manyToSepBy_match__2(lean_object*); +extern lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Environment_displayStats___spec__8___closed__3; +lean_object* l_Lean_Syntax_removeParen(lean_object*); +uint8_t l_Lean_Syntax_isNone(lean_object*); +lean_object* l_Lean_Syntax_getTailInfo(lean_object*); +lean_object* l_Lean_Syntax_manyToSepBy_match__1___rarg(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Syntax_getArg(lean_object*, lean_object*); +extern lean_object* l_Lean_mkOptionalNode___closed__2; +lean_object* l_Lean_Syntax_removeParen_match__1(lean_object*); +lean_object* l_Array_back___at_Lean_Syntax_Traverser_up___spec__2(lean_object*); +lean_object* l_Lean_Syntax_manyToSepBy_match__2___rarg(lean_object*, lean_object*, lean_object*); +uint8_t lean_string_dec_eq(lean_object*, lean_object*); +lean_object* l_Lean_Syntax_manyToSepBy_match__1___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_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_ctor_get(x_1, 0); +lean_inc(x_6); +lean_dec(x_1); +x_7 = lean_apply_1(x_2, x_6); +return x_7; +} +} +} +lean_object* l_Lean_Syntax_manyToSepBy_match__1(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l_Lean_Syntax_manyToSepBy_match__1___rarg), 3, 0); +return x_2; +} +} +lean_object* l_Lean_Syntax_manyToSepBy_match__2___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; 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_Lean_Syntax_manyToSepBy_match__2(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l_Lean_Syntax_manyToSepBy_match__2___rarg), 3, 0); +return x_2; +} +} +lean_object* l_Std_Range_forIn_loop___at_Lean_Syntax_manyToSepBy___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +_start: +{ +lean_object* x_7; uint8_t x_8; +x_7 = lean_ctor_get(x_3, 1); +x_8 = lean_nat_dec_le(x_7, x_5); +if (x_8 == 0) +{ +lean_object* x_9; uint8_t x_10; +x_9 = lean_unsigned_to_nat(0u); +x_10 = lean_nat_dec_eq(x_4, x_9); +if (x_10 == 0) +{ +lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; +x_11 = lean_unsigned_to_nat(1u); +x_12 = lean_nat_sub(x_4, x_11); +lean_dec(x_4); +x_13 = l_Lean_instInhabitedSyntax; +x_14 = lean_array_get(x_13, x_2, x_5); +x_15 = l_Array_back___at_Lean_Syntax_Traverser_up___spec__2(x_6); +x_16 = l_Lean_Syntax_getTailInfo(x_15); +if (lean_obj_tag(x_16) == 0) +{ +lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; +lean_dec(x_15); +x_17 = l_Lean_instInhabitedSourceInfo___closed__1; +lean_inc(x_1); +x_18 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_18, 0, x_17); +lean_ctor_set(x_18, 1, x_1); +x_19 = lean_array_push(x_6, x_18); +x_20 = lean_array_push(x_19, x_14); +x_21 = lean_ctor_get(x_3, 2); +x_22 = lean_nat_add(x_5, x_21); +lean_dec(x_5); +x_4 = x_12; +x_5 = x_22; +x_6 = x_20; +goto _start; +} +else +{ +lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; +x_24 = lean_ctor_get(x_16, 0); +lean_inc(x_24); +lean_dec(x_16); +x_25 = lean_array_get_size(x_6); +x_26 = lean_nat_sub(x_25, x_11); +lean_dec(x_25); +x_27 = lean_array_set(x_6, x_26, x_15); +lean_dec(x_26); +lean_inc(x_1); +x_28 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_28, 0, x_24); +lean_ctor_set(x_28, 1, x_1); +x_29 = lean_array_push(x_27, x_28); +x_30 = lean_array_push(x_29, x_14); +x_31 = lean_ctor_get(x_3, 2); +x_32 = lean_nat_add(x_5, x_31); +lean_dec(x_5); +x_4 = x_12; +x_5 = x_32; +x_6 = x_30; +goto _start; +} +} +else +{ +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +return x_6; +} +} +else +{ +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_1); +return x_6; +} +} +} +lean_object* l_Lean_Syntax_manyToSepBy(lean_object* x_1, lean_object* x_2) { +_start: +{ +if (lean_obj_tag(x_1) == 1) +{ +lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; uint8_t x_7; +x_3 = lean_ctor_get(x_1, 0); +lean_inc(x_3); +x_4 = lean_ctor_get(x_1, 1); +lean_inc(x_4); +x_5 = lean_array_get_size(x_4); +x_6 = lean_unsigned_to_nat(0u); +x_7 = lean_nat_dec_eq(x_5, x_6); +if (x_7 == 0) +{ +uint8_t x_8; +x_8 = !lean_is_exclusive(x_1); +if (x_8 == 0) +{ +lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; +x_9 = lean_ctor_get(x_1, 1); +lean_dec(x_9); +x_10 = lean_ctor_get(x_1, 0); +lean_dec(x_10); +x_11 = l_Lean_instInhabitedSyntax; +x_12 = lean_array_get(x_11, x_4, x_6); +x_13 = l_Lean_mkOptionalNode___closed__2; +x_14 = lean_array_push(x_13, x_12); +x_15 = lean_unsigned_to_nat(1u); +lean_inc(x_5); +x_16 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_16, 0, x_15); +lean_ctor_set(x_16, 1, x_5); +lean_ctor_set(x_16, 2, x_15); +x_17 = l_Std_Range_forIn_loop___at_Lean_Syntax_manyToSepBy___spec__1(x_2, x_4, x_16, x_5, x_15, x_14); +lean_dec(x_16); +lean_dec(x_4); +lean_ctor_set(x_1, 1, x_17); +return x_1; +} +else +{ +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_dec(x_1); +x_18 = l_Lean_instInhabitedSyntax; +x_19 = lean_array_get(x_18, x_4, x_6); +x_20 = l_Lean_mkOptionalNode___closed__2; +x_21 = lean_array_push(x_20, x_19); +x_22 = lean_unsigned_to_nat(1u); +lean_inc(x_5); +x_23 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_23, 0, x_22); +lean_ctor_set(x_23, 1, x_5); +lean_ctor_set(x_23, 2, x_22); +x_24 = l_Std_Range_forIn_loop___at_Lean_Syntax_manyToSepBy___spec__1(x_2, x_4, x_23, x_5, x_22, x_21); +lean_dec(x_23); +lean_dec(x_4); +x_25 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_25, 0, x_3); +lean_ctor_set(x_25, 1, x_24); +return x_25; +} +} +else +{ +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +return x_1; +} +} +else +{ +lean_dec(x_2); +return x_1; +} +} +} +lean_object* l_Std_Range_forIn_loop___at_Lean_Syntax_manyToSepBy___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +_start: +{ +lean_object* x_7; +x_7 = l_Std_Range_forIn_loop___at_Lean_Syntax_manyToSepBy___spec__1(x_1, x_2, x_3, x_4, x_5, x_6); +lean_dec(x_3); +lean_dec(x_2); +return x_7; +} +} +lean_object* l_Lean_Syntax_removeParen_match__1___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +_start: +{ +if (lean_obj_tag(x_1) == 2) +{ +lean_object* x_5; lean_object* x_6; +x_5 = lean_ctor_get(x_1, 0); +lean_inc(x_5); +x_6 = lean_ctor_get(x_5, 0); +lean_inc(x_6); +if (lean_obj_tag(x_6) == 0) +{ +lean_object* x_7; +x_7 = lean_ctor_get(x_5, 1); +lean_inc(x_7); +if (lean_obj_tag(x_7) == 0) +{ +lean_object* x_8; +x_8 = lean_ctor_get(x_5, 2); +lean_inc(x_8); +if (lean_obj_tag(x_8) == 0) +{ +uint8_t x_9; +lean_dec(x_3); +x_9 = !lean_is_exclusive(x_5); +if (x_9 == 0) +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; uint8_t x_13; +x_10 = lean_ctor_get(x_5, 2); +lean_dec(x_10); +x_11 = lean_ctor_get(x_5, 1); +lean_dec(x_11); +x_12 = lean_ctor_get(x_5, 0); +lean_dec(x_12); +x_13 = !lean_is_exclusive(x_1); +if (x_13 == 0) +{ +lean_object* x_14; lean_object* x_15; +x_14 = lean_ctor_get(x_1, 0); +lean_dec(x_14); +lean_ctor_set(x_5, 0, x_8); +x_15 = lean_apply_2(x_4, x_1, x_2); +return x_15; +} +else +{ +lean_object* x_16; lean_object* x_17; lean_object* x_18; +x_16 = lean_ctor_get(x_1, 1); +lean_inc(x_16); +lean_dec(x_1); +lean_ctor_set(x_5, 0, x_8); +x_17 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_17, 0, x_5); +lean_ctor_set(x_17, 1, x_16); +x_18 = lean_apply_2(x_4, x_17, x_2); +return x_18; +} +} +else +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; +lean_dec(x_5); +x_19 = lean_ctor_get(x_1, 1); +lean_inc(x_19); +if (lean_is_exclusive(x_1)) { + lean_ctor_release(x_1, 0); + lean_ctor_release(x_1, 1); + x_20 = x_1; +} else { + lean_dec_ref(x_1); + x_20 = lean_box(0); +} +x_21 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_21, 0, x_8); +lean_ctor_set(x_21, 1, x_7); +lean_ctor_set(x_21, 2, x_8); +if (lean_is_scalar(x_20)) { + x_22 = lean_alloc_ctor(2, 2, 0); +} else { + x_22 = x_20; +} +lean_ctor_set(x_22, 0, x_21); +lean_ctor_set(x_22, 1, x_19); +x_23 = lean_apply_2(x_4, x_22, x_2); +return x_23; +} +} +else +{ +lean_object* x_24; lean_object* x_25; lean_object* x_26; uint8_t x_27; +x_24 = lean_ctor_get(x_1, 1); +lean_inc(x_24); +x_25 = lean_ctor_get(x_8, 0); +lean_inc(x_25); +x_26 = l_myMacro____x40_Init_Notation___hyg_49____closed__15; +x_27 = lean_string_dec_eq(x_24, x_26); +lean_dec(x_24); +if (x_27 == 0) +{ +lean_object* x_28; +lean_dec(x_25); +lean_dec(x_8); +lean_dec(x_5); +lean_dec(x_3); +x_28 = lean_apply_2(x_4, x_1, x_2); +return x_28; +} +else +{ +uint8_t x_29; +x_29 = !lean_is_exclusive(x_1); +if (x_29 == 0) +{ +lean_object* x_30; lean_object* x_31; +x_30 = lean_ctor_get(x_1, 1); +lean_dec(x_30); +x_31 = lean_ctor_get(x_1, 0); +lean_dec(x_31); +if (lean_obj_tag(x_2) == 0) +{ +lean_object* x_32; +lean_dec(x_25); +lean_dec(x_8); +lean_dec(x_3); +lean_ctor_set(x_1, 1, x_26); +x_32 = lean_apply_2(x_4, x_1, x_2); +return x_32; +} +else +{ +lean_object* x_33; lean_object* x_34; +x_33 = lean_ctor_get(x_2, 0); +lean_inc(x_33); +x_34 = lean_ctor_get(x_33, 0); +lean_inc(x_34); +if (lean_obj_tag(x_34) == 0) +{ +uint8_t x_35; +x_35 = !lean_is_exclusive(x_5); +if (x_35 == 0) +{ +lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; +x_36 = lean_ctor_get(x_5, 2); +lean_dec(x_36); +x_37 = lean_ctor_get(x_5, 1); +lean_dec(x_37); +x_38 = lean_ctor_get(x_5, 0); +lean_dec(x_38); +x_39 = lean_ctor_get(x_33, 1); +lean_inc(x_39); +if (lean_obj_tag(x_39) == 0) +{ +uint8_t x_40; +x_40 = !lean_is_exclusive(x_2); +if (x_40 == 0) +{ +lean_object* x_41; lean_object* x_42; +x_41 = lean_ctor_get(x_2, 0); +lean_dec(x_41); +x_42 = lean_ctor_get(x_33, 2); +lean_inc(x_42); +if (lean_obj_tag(x_42) == 0) +{ +uint8_t x_43; +lean_dec(x_25); +lean_dec(x_3); +x_43 = !lean_is_exclusive(x_33); +if (x_43 == 0) +{ +lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; +x_44 = lean_ctor_get(x_33, 2); +lean_dec(x_44); +x_45 = lean_ctor_get(x_33, 1); +lean_dec(x_45); +x_46 = lean_ctor_get(x_33, 0); +lean_dec(x_46); +lean_ctor_set(x_33, 2, x_8); +lean_ctor_set(x_33, 0, x_42); +lean_ctor_set(x_1, 1, x_26); +lean_ctor_set(x_1, 0, x_33); +lean_ctor_set(x_5, 2, x_42); +lean_ctor_set(x_5, 1, x_39); +lean_ctor_set(x_5, 0, x_42); +lean_ctor_set(x_2, 0, x_5); +x_47 = lean_apply_2(x_4, x_1, x_2); +return x_47; +} +else +{ +lean_object* x_48; lean_object* x_49; +lean_dec(x_33); +x_48 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_48, 0, x_42); +lean_ctor_set(x_48, 1, x_39); +lean_ctor_set(x_48, 2, x_8); +lean_ctor_set(x_1, 1, x_26); +lean_ctor_set(x_1, 0, x_48); +lean_ctor_set(x_5, 2, x_42); +lean_ctor_set(x_5, 1, x_39); +lean_ctor_set(x_5, 0, x_42); +lean_ctor_set(x_2, 0, x_5); +x_49 = lean_apply_2(x_4, x_1, x_2); +return x_49; +} +} +else +{ +lean_object* x_50; lean_object* x_51; +lean_free_object(x_2); +lean_free_object(x_5); +lean_free_object(x_1); +lean_dec(x_8); +lean_dec(x_4); +x_50 = lean_ctor_get(x_42, 0); +lean_inc(x_50); +lean_dec(x_42); +x_51 = lean_apply_3(x_3, x_25, x_33, x_50); +return x_51; +} +} +else +{ +lean_object* x_52; +lean_dec(x_2); +x_52 = lean_ctor_get(x_33, 2); +lean_inc(x_52); +if (lean_obj_tag(x_52) == 0) +{ +lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; +lean_dec(x_25); +lean_dec(x_3); +if (lean_is_exclusive(x_33)) { + lean_ctor_release(x_33, 0); + lean_ctor_release(x_33, 1); + lean_ctor_release(x_33, 2); + x_53 = x_33; +} else { + lean_dec_ref(x_33); + x_53 = lean_box(0); +} +if (lean_is_scalar(x_53)) { + x_54 = lean_alloc_ctor(0, 3, 0); +} else { + x_54 = x_53; +} +lean_ctor_set(x_54, 0, x_52); +lean_ctor_set(x_54, 1, x_39); +lean_ctor_set(x_54, 2, x_8); +lean_ctor_set(x_1, 1, x_26); +lean_ctor_set(x_1, 0, x_54); +lean_ctor_set(x_5, 2, x_52); +lean_ctor_set(x_5, 1, x_39); +lean_ctor_set(x_5, 0, x_52); +x_55 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_55, 0, x_5); +x_56 = lean_apply_2(x_4, x_1, x_55); +return x_56; +} +else +{ +lean_object* x_57; lean_object* x_58; +lean_free_object(x_5); +lean_free_object(x_1); +lean_dec(x_8); +lean_dec(x_4); +x_57 = lean_ctor_get(x_52, 0); +lean_inc(x_57); +lean_dec(x_52); +x_58 = lean_apply_3(x_3, x_25, x_33, x_57); +return x_58; +} +} +} +else +{ +uint8_t x_59; +lean_dec(x_39); +lean_free_object(x_5); +lean_dec(x_25); +lean_dec(x_3); +x_59 = !lean_is_exclusive(x_33); +if (x_59 == 0) +{ +lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; +x_60 = lean_ctor_get(x_33, 2); +lean_dec(x_60); +x_61 = lean_ctor_get(x_33, 1); +lean_dec(x_61); +x_62 = lean_ctor_get(x_33, 0); +lean_dec(x_62); +lean_ctor_set(x_33, 2, x_8); +lean_ctor_set(x_33, 1, x_7); +lean_ctor_set(x_1, 1, x_26); +lean_ctor_set(x_1, 0, x_33); +x_63 = lean_apply_2(x_4, x_1, x_2); +return x_63; +} +else +{ +lean_object* x_64; lean_object* x_65; +lean_dec(x_33); +x_64 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_64, 0, x_34); +lean_ctor_set(x_64, 1, x_7); +lean_ctor_set(x_64, 2, x_8); +lean_ctor_set(x_1, 1, x_26); +lean_ctor_set(x_1, 0, x_64); +x_65 = lean_apply_2(x_4, x_1, x_2); +return x_65; +} +} +} +else +{ +lean_object* x_66; +lean_dec(x_5); +x_66 = lean_ctor_get(x_33, 1); +lean_inc(x_66); +if (lean_obj_tag(x_66) == 0) +{ +lean_object* x_67; lean_object* x_68; +if (lean_is_exclusive(x_2)) { + lean_ctor_release(x_2, 0); + x_67 = x_2; +} else { + lean_dec_ref(x_2); + x_67 = lean_box(0); +} +x_68 = lean_ctor_get(x_33, 2); +lean_inc(x_68); +if (lean_obj_tag(x_68) == 0) +{ +lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; +lean_dec(x_25); +lean_dec(x_3); +if (lean_is_exclusive(x_33)) { + lean_ctor_release(x_33, 0); + lean_ctor_release(x_33, 1); + lean_ctor_release(x_33, 2); + x_69 = x_33; +} else { + lean_dec_ref(x_33); + x_69 = lean_box(0); +} +if (lean_is_scalar(x_69)) { + x_70 = lean_alloc_ctor(0, 3, 0); +} else { + x_70 = x_69; +} +lean_ctor_set(x_70, 0, x_68); +lean_ctor_set(x_70, 1, x_66); +lean_ctor_set(x_70, 2, x_8); +lean_ctor_set(x_1, 1, x_26); +lean_ctor_set(x_1, 0, x_70); +x_71 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_71, 0, x_68); +lean_ctor_set(x_71, 1, x_66); +lean_ctor_set(x_71, 2, x_68); +if (lean_is_scalar(x_67)) { + x_72 = lean_alloc_ctor(1, 1, 0); +} else { + x_72 = x_67; +} +lean_ctor_set(x_72, 0, x_71); +x_73 = lean_apply_2(x_4, x_1, x_72); +return x_73; +} +else +{ +lean_object* x_74; lean_object* x_75; +lean_dec(x_67); +lean_free_object(x_1); +lean_dec(x_8); +lean_dec(x_4); +x_74 = lean_ctor_get(x_68, 0); +lean_inc(x_74); +lean_dec(x_68); +x_75 = lean_apply_3(x_3, x_25, x_33, x_74); +return x_75; +} +} +else +{ +lean_object* x_76; lean_object* x_77; lean_object* x_78; +lean_dec(x_66); +lean_dec(x_25); +lean_dec(x_3); +if (lean_is_exclusive(x_33)) { + lean_ctor_release(x_33, 0); + lean_ctor_release(x_33, 1); + lean_ctor_release(x_33, 2); + x_76 = x_33; +} else { + lean_dec_ref(x_33); + x_76 = lean_box(0); +} +if (lean_is_scalar(x_76)) { + x_77 = lean_alloc_ctor(0, 3, 0); +} else { + x_77 = x_76; +} +lean_ctor_set(x_77, 0, x_34); +lean_ctor_set(x_77, 1, x_7); +lean_ctor_set(x_77, 2, x_8); +lean_ctor_set(x_1, 1, x_26); +lean_ctor_set(x_1, 0, x_77); +x_78 = lean_apply_2(x_4, x_1, x_2); +return x_78; +} +} +} +else +{ +lean_object* x_79; +lean_dec(x_34); +lean_dec(x_33); +lean_dec(x_25); +lean_dec(x_8); +lean_dec(x_3); +lean_ctor_set(x_1, 1, x_26); +x_79 = lean_apply_2(x_4, x_1, x_2); +return x_79; +} +} +} +else +{ +lean_dec(x_1); +if (lean_obj_tag(x_2) == 0) +{ +lean_object* x_80; lean_object* x_81; +lean_dec(x_25); +lean_dec(x_8); +lean_dec(x_3); +x_80 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_80, 0, x_5); +lean_ctor_set(x_80, 1, x_26); +x_81 = lean_apply_2(x_4, x_80, x_2); +return x_81; +} +else +{ +lean_object* x_82; lean_object* x_83; +x_82 = lean_ctor_get(x_2, 0); +lean_inc(x_82); +x_83 = lean_ctor_get(x_82, 0); +lean_inc(x_83); +if (lean_obj_tag(x_83) == 0) +{ +lean_object* x_84; lean_object* x_85; +if (lean_is_exclusive(x_5)) { + lean_ctor_release(x_5, 0); + lean_ctor_release(x_5, 1); + lean_ctor_release(x_5, 2); + x_84 = x_5; +} else { + lean_dec_ref(x_5); + x_84 = lean_box(0); +} +x_85 = lean_ctor_get(x_82, 1); +lean_inc(x_85); +if (lean_obj_tag(x_85) == 0) +{ +lean_object* x_86; lean_object* x_87; +if (lean_is_exclusive(x_2)) { + lean_ctor_release(x_2, 0); + x_86 = x_2; +} else { + lean_dec_ref(x_2); + x_86 = lean_box(0); +} +x_87 = lean_ctor_get(x_82, 2); +lean_inc(x_87); +if (lean_obj_tag(x_87) == 0) +{ +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_dec(x_25); +lean_dec(x_3); +if (lean_is_exclusive(x_82)) { + lean_ctor_release(x_82, 0); + lean_ctor_release(x_82, 1); + lean_ctor_release(x_82, 2); + x_88 = x_82; +} else { + lean_dec_ref(x_82); + x_88 = lean_box(0); +} +if (lean_is_scalar(x_88)) { + x_89 = lean_alloc_ctor(0, 3, 0); +} else { + x_89 = x_88; +} +lean_ctor_set(x_89, 0, x_87); +lean_ctor_set(x_89, 1, x_85); +lean_ctor_set(x_89, 2, x_8); +x_90 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_90, 0, x_89); +lean_ctor_set(x_90, 1, x_26); +if (lean_is_scalar(x_84)) { + x_91 = lean_alloc_ctor(0, 3, 0); +} else { + x_91 = x_84; +} +lean_ctor_set(x_91, 0, x_87); +lean_ctor_set(x_91, 1, x_85); +lean_ctor_set(x_91, 2, x_87); +if (lean_is_scalar(x_86)) { + x_92 = lean_alloc_ctor(1, 1, 0); +} else { + x_92 = x_86; +} +lean_ctor_set(x_92, 0, x_91); +x_93 = lean_apply_2(x_4, x_90, x_92); +return x_93; +} +else +{ +lean_object* x_94; lean_object* x_95; +lean_dec(x_86); +lean_dec(x_84); +lean_dec(x_8); +lean_dec(x_4); +x_94 = lean_ctor_get(x_87, 0); +lean_inc(x_94); +lean_dec(x_87); +x_95 = lean_apply_3(x_3, x_25, x_82, x_94); +return x_95; +} +} +else +{ +lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; +lean_dec(x_85); +lean_dec(x_84); +lean_dec(x_25); +lean_dec(x_3); +if (lean_is_exclusive(x_82)) { + lean_ctor_release(x_82, 0); + lean_ctor_release(x_82, 1); + lean_ctor_release(x_82, 2); + x_96 = x_82; +} else { + lean_dec_ref(x_82); + x_96 = lean_box(0); +} +if (lean_is_scalar(x_96)) { + x_97 = lean_alloc_ctor(0, 3, 0); +} else { + x_97 = x_96; +} +lean_ctor_set(x_97, 0, x_83); +lean_ctor_set(x_97, 1, x_7); +lean_ctor_set(x_97, 2, x_8); +x_98 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_98, 0, x_97); +lean_ctor_set(x_98, 1, x_26); +x_99 = lean_apply_2(x_4, x_98, x_2); +return x_99; +} +} +else +{ +lean_object* x_100; lean_object* x_101; +lean_dec(x_83); +lean_dec(x_82); +lean_dec(x_25); +lean_dec(x_8); +lean_dec(x_3); +x_100 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_100, 0, x_5); +lean_ctor_set(x_100, 1, x_26); +x_101 = lean_apply_2(x_4, x_100, x_2); +return x_101; +} +} +} +} +} +} +else +{ +lean_object* x_102; +lean_dec(x_7); +lean_dec(x_5); +lean_dec(x_3); +x_102 = lean_apply_2(x_4, x_1, x_2); +return x_102; +} +} +else +{ +lean_object* x_103; +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_3); +x_103 = lean_apply_2(x_4, x_1, x_2); +return x_103; +} +} +else +{ +lean_object* x_104; +lean_dec(x_3); +x_104 = lean_apply_2(x_4, x_1, x_2); +return x_104; +} +} +} +lean_object* l_Lean_Syntax_removeParen_match__1(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l_Lean_Syntax_removeParen_match__1___rarg), 4, 0); +return x_2; +} +} +lean_object* l_Lean_Syntax_removeParen(lean_object* x_1) { +_start: +{ +if (lean_obj_tag(x_1) == 1) +{ +lean_object* x_2; lean_object* x_3; lean_object* x_4; uint8_t x_5; +x_2 = lean_ctor_get(x_1, 0); +lean_inc(x_2); +x_3 = lean_ctor_get(x_1, 1); +lean_inc(x_3); +x_4 = l_myMacro____x40_Init_Notation___hyg_10790____closed__8; +x_5 = lean_name_eq(x_2, x_4); +if (x_5 == 0) +{ +lean_dec(x_3); +lean_dec(x_2); +return x_1; +} +else +{ +uint8_t x_6; +x_6 = !lean_is_exclusive(x_1); +if (x_6 == 0) +{ +lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; uint8_t x_14; +x_7 = lean_ctor_get(x_1, 1); +lean_dec(x_7); +x_8 = lean_ctor_get(x_1, 0); +lean_dec(x_8); +lean_inc(x_3); +x_9 = l_Lean_instInhabitedSyntax; +x_10 = lean_unsigned_to_nat(1u); +x_11 = lean_array_get(x_9, x_3, x_10); +x_12 = l_Lean_Syntax_getNumArgs(x_11); +x_13 = lean_unsigned_to_nat(2u); +x_14 = lean_nat_dec_eq(x_12, x_13); +lean_dec(x_12); +if (x_14 == 0) +{ +lean_dec(x_11); +lean_dec(x_3); +return x_1; +} +else +{ +lean_object* x_15; uint8_t x_16; +x_15 = l_Lean_Syntax_getArg(x_11, x_10); +x_16 = l_Lean_Syntax_isNone(x_15); +lean_dec(x_15); +if (x_16 == 0) +{ +lean_dec(x_11); +lean_dec(x_3); +return x_1; +} +else +{ +lean_object* x_17; lean_object* x_18; lean_object* x_19; +x_17 = lean_unsigned_to_nat(0u); +x_18 = l_Lean_Syntax_getArg(x_11, x_17); +lean_dec(x_11); +x_19 = lean_array_get(x_9, x_3, x_13); +lean_dec(x_3); +if (lean_obj_tag(x_19) == 2) +{ +lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; +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_Syntax_getTailInfo(x_18); +x_23 = lean_ctor_get(x_20, 0); +lean_inc(x_23); +if (lean_obj_tag(x_23) == 0) +{ +lean_object* x_24; +x_24 = lean_ctor_get(x_20, 1); +lean_inc(x_24); +if (lean_obj_tag(x_24) == 0) +{ +lean_object* x_25; +x_25 = lean_ctor_get(x_20, 2); +lean_inc(x_25); +lean_dec(x_20); +if (lean_obj_tag(x_25) == 0) +{ +lean_dec(x_22); +lean_dec(x_21); +lean_dec(x_18); +return x_1; +} +else +{ +lean_object* x_26; lean_object* x_27; uint8_t x_28; +x_26 = lean_ctor_get(x_25, 0); +lean_inc(x_26); +lean_dec(x_25); +x_27 = l_myMacro____x40_Init_Notation___hyg_49____closed__15; +x_28 = lean_string_dec_eq(x_21, x_27); +lean_dec(x_21); +if (x_28 == 0) +{ +lean_dec(x_26); +lean_dec(x_22); +lean_dec(x_18); +return x_1; +} +else +{ +if (lean_obj_tag(x_22) == 0) +{ +lean_dec(x_26); +lean_dec(x_18); +return x_1; +} +else +{ +lean_object* x_29; lean_object* x_30; +x_29 = lean_ctor_get(x_22, 0); +lean_inc(x_29); +lean_dec(x_22); +x_30 = lean_ctor_get(x_29, 0); +lean_inc(x_30); +if (lean_obj_tag(x_30) == 0) +{ +lean_object* x_31; +x_31 = lean_ctor_get(x_29, 1); +lean_inc(x_31); +if (lean_obj_tag(x_31) == 0) +{ +uint8_t x_32; +x_32 = !lean_is_exclusive(x_29); +if (x_32 == 0) +{ +lean_object* x_33; lean_object* x_34; lean_object* x_35; +x_33 = lean_ctor_get(x_29, 2); +x_34 = lean_ctor_get(x_29, 1); +lean_dec(x_34); +x_35 = lean_ctor_get(x_29, 0); +lean_dec(x_35); +if (lean_obj_tag(x_33) == 0) +{ +lean_free_object(x_29); +lean_dec(x_26); +lean_dec(x_18); +return x_1; +} +else +{ +uint8_t x_36; +lean_dec(x_1); +x_36 = !lean_is_exclusive(x_33); +if (x_36 == 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; lean_object* x_43; uint8_t x_44; +x_37 = lean_ctor_get(x_33, 0); +x_38 = lean_ctor_get(x_37, 0); +lean_inc(x_38); +x_39 = lean_ctor_get(x_37, 1); +lean_inc(x_39); +x_40 = lean_ctor_get(x_37, 2); +lean_inc(x_40); +lean_dec(x_37); +x_41 = lean_string_utf8_extract(x_38, x_39, x_40); +lean_dec(x_40); +lean_dec(x_39); +lean_dec(x_38); +x_42 = l_Array_foldlMUnsafe_fold___at_Lean_Environment_displayStats___spec__8___closed__3; +x_43 = lean_string_append(x_41, x_42); +x_44 = !lean_is_exclusive(x_26); +if (x_44 == 0) +{ +lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; +x_45 = lean_ctor_get(x_26, 0); +x_46 = lean_ctor_get(x_26, 1); +x_47 = lean_ctor_get(x_26, 2); +x_48 = lean_string_utf8_extract(x_45, x_46, x_47); +lean_dec(x_47); +lean_dec(x_46); +lean_dec(x_45); +x_49 = lean_string_append(x_43, x_48); +lean_dec(x_48); +x_50 = lean_string_utf8_byte_size(x_49); +lean_ctor_set(x_26, 2, x_50); +lean_ctor_set(x_26, 1, x_17); +lean_ctor_set(x_26, 0, x_49); +lean_ctor_set(x_33, 0, x_26); +x_51 = l_Lean_Syntax_setTailInfo(x_18, x_29); +return x_51; +} +else +{ +lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; +x_52 = lean_ctor_get(x_26, 0); +x_53 = lean_ctor_get(x_26, 1); +x_54 = lean_ctor_get(x_26, 2); +lean_inc(x_54); +lean_inc(x_53); +lean_inc(x_52); +lean_dec(x_26); +x_55 = lean_string_utf8_extract(x_52, x_53, x_54); +lean_dec(x_54); +lean_dec(x_53); +lean_dec(x_52); +x_56 = lean_string_append(x_43, x_55); +lean_dec(x_55); +x_57 = lean_string_utf8_byte_size(x_56); +x_58 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_58, 0, x_56); +lean_ctor_set(x_58, 1, x_17); +lean_ctor_set(x_58, 2, x_57); +lean_ctor_set(x_33, 0, x_58); +x_59 = l_Lean_Syntax_setTailInfo(x_18, x_29); +return x_59; +} +} +else +{ +lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_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_60 = lean_ctor_get(x_33, 0); +lean_inc(x_60); +lean_dec(x_33); +x_61 = lean_ctor_get(x_60, 0); +lean_inc(x_61); +x_62 = lean_ctor_get(x_60, 1); +lean_inc(x_62); +x_63 = lean_ctor_get(x_60, 2); +lean_inc(x_63); +lean_dec(x_60); +x_64 = lean_string_utf8_extract(x_61, x_62, x_63); +lean_dec(x_63); +lean_dec(x_62); +lean_dec(x_61); +x_65 = l_Array_foldlMUnsafe_fold___at_Lean_Environment_displayStats___spec__8___closed__3; +x_66 = lean_string_append(x_64, x_65); +x_67 = lean_ctor_get(x_26, 0); +lean_inc(x_67); +x_68 = lean_ctor_get(x_26, 1); +lean_inc(x_68); +x_69 = lean_ctor_get(x_26, 2); +lean_inc(x_69); +if (lean_is_exclusive(x_26)) { + lean_ctor_release(x_26, 0); + lean_ctor_release(x_26, 1); + lean_ctor_release(x_26, 2); + x_70 = x_26; +} else { + lean_dec_ref(x_26); + x_70 = lean_box(0); +} +x_71 = lean_string_utf8_extract(x_67, x_68, x_69); +lean_dec(x_69); +lean_dec(x_68); +lean_dec(x_67); +x_72 = lean_string_append(x_66, x_71); +lean_dec(x_71); +x_73 = lean_string_utf8_byte_size(x_72); +if (lean_is_scalar(x_70)) { + x_74 = lean_alloc_ctor(0, 3, 0); +} else { + x_74 = x_70; +} +lean_ctor_set(x_74, 0, x_72); +lean_ctor_set(x_74, 1, x_17); +lean_ctor_set(x_74, 2, x_73); +x_75 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_75, 0, x_74); +lean_ctor_set(x_29, 2, x_75); +x_76 = l_Lean_Syntax_setTailInfo(x_18, x_29); +return x_76; +} +} +} +else +{ +lean_object* x_77; +x_77 = lean_ctor_get(x_29, 2); +lean_inc(x_77); +lean_dec(x_29); +if (lean_obj_tag(x_77) == 0) +{ +lean_dec(x_26); +lean_dec(x_18); +return x_1; +} +else +{ +lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; +lean_dec(x_1); +x_78 = lean_ctor_get(x_77, 0); +lean_inc(x_78); +if (lean_is_exclusive(x_77)) { + lean_ctor_release(x_77, 0); + x_79 = x_77; +} else { + lean_dec_ref(x_77); + x_79 = lean_box(0); +} +x_80 = lean_ctor_get(x_78, 0); +lean_inc(x_80); +x_81 = lean_ctor_get(x_78, 1); +lean_inc(x_81); +x_82 = lean_ctor_get(x_78, 2); +lean_inc(x_82); +lean_dec(x_78); +x_83 = lean_string_utf8_extract(x_80, x_81, x_82); +lean_dec(x_82); +lean_dec(x_81); +lean_dec(x_80); +x_84 = l_Array_foldlMUnsafe_fold___at_Lean_Environment_displayStats___spec__8___closed__3; +x_85 = lean_string_append(x_83, x_84); +x_86 = lean_ctor_get(x_26, 0); +lean_inc(x_86); +x_87 = lean_ctor_get(x_26, 1); +lean_inc(x_87); +x_88 = lean_ctor_get(x_26, 2); +lean_inc(x_88); +if (lean_is_exclusive(x_26)) { + lean_ctor_release(x_26, 0); + lean_ctor_release(x_26, 1); + lean_ctor_release(x_26, 2); + x_89 = x_26; +} else { + lean_dec_ref(x_26); + x_89 = lean_box(0); +} +x_90 = lean_string_utf8_extract(x_86, x_87, x_88); +lean_dec(x_88); +lean_dec(x_87); +lean_dec(x_86); +x_91 = lean_string_append(x_85, x_90); +lean_dec(x_90); +x_92 = lean_string_utf8_byte_size(x_91); +if (lean_is_scalar(x_89)) { + x_93 = lean_alloc_ctor(0, 3, 0); +} else { + x_93 = x_89; +} +lean_ctor_set(x_93, 0, x_91); +lean_ctor_set(x_93, 1, x_17); +lean_ctor_set(x_93, 2, x_92); +if (lean_is_scalar(x_79)) { + x_94 = lean_alloc_ctor(1, 1, 0); +} else { + x_94 = x_79; +} +lean_ctor_set(x_94, 0, x_93); +x_95 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_95, 0, x_30); +lean_ctor_set(x_95, 1, x_31); +lean_ctor_set(x_95, 2, x_94); +x_96 = l_Lean_Syntax_setTailInfo(x_18, x_95); +return x_96; +} +} +} +else +{ +lean_dec(x_31); +lean_dec(x_29); +lean_dec(x_26); +lean_dec(x_18); +return x_1; +} +} +else +{ +lean_dec(x_30); +lean_dec(x_29); +lean_dec(x_26); +lean_dec(x_18); +return x_1; +} +} +} +} +} +else +{ +lean_dec(x_24); +lean_dec(x_22); +lean_dec(x_21); +lean_dec(x_20); +lean_dec(x_18); +return x_1; +} +} +else +{ +lean_dec(x_23); +lean_dec(x_22); +lean_dec(x_21); +lean_dec(x_20); +lean_dec(x_18); +return x_1; +} +} +else +{ +lean_dec(x_19); +lean_dec(x_18); +return x_1; +} +} +} +} +else +{ +lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; uint8_t x_103; +lean_dec(x_1); +lean_inc(x_3); +x_97 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_97, 0, x_2); +lean_ctor_set(x_97, 1, x_3); +x_98 = l_Lean_instInhabitedSyntax; +x_99 = lean_unsigned_to_nat(1u); +x_100 = lean_array_get(x_98, x_3, x_99); +x_101 = l_Lean_Syntax_getNumArgs(x_100); +x_102 = lean_unsigned_to_nat(2u); +x_103 = lean_nat_dec_eq(x_101, x_102); +lean_dec(x_101); +if (x_103 == 0) +{ +lean_dec(x_100); +lean_dec(x_3); +return x_97; +} +else +{ +lean_object* x_104; uint8_t x_105; +x_104 = l_Lean_Syntax_getArg(x_100, x_99); +x_105 = l_Lean_Syntax_isNone(x_104); +lean_dec(x_104); +if (x_105 == 0) +{ +lean_dec(x_100); +lean_dec(x_3); +return x_97; +} +else +{ +lean_object* x_106; lean_object* x_107; lean_object* x_108; +x_106 = lean_unsigned_to_nat(0u); +x_107 = l_Lean_Syntax_getArg(x_100, x_106); +lean_dec(x_100); +x_108 = lean_array_get(x_98, x_3, x_102); +lean_dec(x_3); +if (lean_obj_tag(x_108) == 2) +{ +lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; +x_109 = lean_ctor_get(x_108, 0); +lean_inc(x_109); +x_110 = lean_ctor_get(x_108, 1); +lean_inc(x_110); +lean_dec(x_108); +x_111 = l_Lean_Syntax_getTailInfo(x_107); +x_112 = lean_ctor_get(x_109, 0); +lean_inc(x_112); +if (lean_obj_tag(x_112) == 0) +{ +lean_object* x_113; +x_113 = lean_ctor_get(x_109, 1); +lean_inc(x_113); +if (lean_obj_tag(x_113) == 0) +{ +lean_object* x_114; +x_114 = lean_ctor_get(x_109, 2); +lean_inc(x_114); +lean_dec(x_109); +if (lean_obj_tag(x_114) == 0) +{ +lean_dec(x_111); +lean_dec(x_110); +lean_dec(x_107); +return x_97; +} +else +{ +lean_object* x_115; lean_object* x_116; uint8_t x_117; +x_115 = lean_ctor_get(x_114, 0); +lean_inc(x_115); +lean_dec(x_114); +x_116 = l_myMacro____x40_Init_Notation___hyg_49____closed__15; +x_117 = lean_string_dec_eq(x_110, x_116); +lean_dec(x_110); +if (x_117 == 0) +{ +lean_dec(x_115); +lean_dec(x_111); +lean_dec(x_107); +return x_97; +} +else +{ +if (lean_obj_tag(x_111) == 0) +{ +lean_dec(x_115); +lean_dec(x_107); +return x_97; +} +else +{ +lean_object* x_118; lean_object* x_119; +x_118 = lean_ctor_get(x_111, 0); +lean_inc(x_118); +lean_dec(x_111); +x_119 = lean_ctor_get(x_118, 0); +lean_inc(x_119); +if (lean_obj_tag(x_119) == 0) +{ +lean_object* x_120; +x_120 = lean_ctor_get(x_118, 1); +lean_inc(x_120); +if (lean_obj_tag(x_120) == 0) +{ +lean_object* x_121; lean_object* x_122; +x_121 = lean_ctor_get(x_118, 2); +lean_inc(x_121); +if (lean_is_exclusive(x_118)) { + lean_ctor_release(x_118, 0); + lean_ctor_release(x_118, 1); + lean_ctor_release(x_118, 2); + x_122 = x_118; +} else { + lean_dec_ref(x_118); + x_122 = lean_box(0); +} +if (lean_obj_tag(x_121) == 0) +{ +lean_dec(x_122); +lean_dec(x_115); +lean_dec(x_107); +return x_97; +} +else +{ +lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; 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_dec(x_97); +x_123 = lean_ctor_get(x_121, 0); +lean_inc(x_123); +if (lean_is_exclusive(x_121)) { + lean_ctor_release(x_121, 0); + x_124 = x_121; +} else { + lean_dec_ref(x_121); + x_124 = lean_box(0); +} +x_125 = lean_ctor_get(x_123, 0); +lean_inc(x_125); +x_126 = lean_ctor_get(x_123, 1); +lean_inc(x_126); +x_127 = lean_ctor_get(x_123, 2); +lean_inc(x_127); +lean_dec(x_123); +x_128 = lean_string_utf8_extract(x_125, x_126, x_127); +lean_dec(x_127); +lean_dec(x_126); +lean_dec(x_125); +x_129 = l_Array_foldlMUnsafe_fold___at_Lean_Environment_displayStats___spec__8___closed__3; +x_130 = lean_string_append(x_128, x_129); +x_131 = lean_ctor_get(x_115, 0); +lean_inc(x_131); +x_132 = lean_ctor_get(x_115, 1); +lean_inc(x_132); +x_133 = lean_ctor_get(x_115, 2); +lean_inc(x_133); +if (lean_is_exclusive(x_115)) { + lean_ctor_release(x_115, 0); + lean_ctor_release(x_115, 1); + lean_ctor_release(x_115, 2); + x_134 = x_115; +} else { + lean_dec_ref(x_115); + x_134 = lean_box(0); +} +x_135 = lean_string_utf8_extract(x_131, x_132, x_133); +lean_dec(x_133); +lean_dec(x_132); +lean_dec(x_131); +x_136 = lean_string_append(x_130, x_135); +lean_dec(x_135); +x_137 = lean_string_utf8_byte_size(x_136); +if (lean_is_scalar(x_134)) { + x_138 = lean_alloc_ctor(0, 3, 0); +} else { + x_138 = x_134; +} +lean_ctor_set(x_138, 0, x_136); +lean_ctor_set(x_138, 1, x_106); +lean_ctor_set(x_138, 2, x_137); +if (lean_is_scalar(x_124)) { + x_139 = lean_alloc_ctor(1, 1, 0); +} else { + x_139 = x_124; +} +lean_ctor_set(x_139, 0, x_138); +if (lean_is_scalar(x_122)) { + x_140 = lean_alloc_ctor(0, 3, 0); +} else { + x_140 = x_122; +} +lean_ctor_set(x_140, 0, x_119); +lean_ctor_set(x_140, 1, x_120); +lean_ctor_set(x_140, 2, x_139); +x_141 = l_Lean_Syntax_setTailInfo(x_107, x_140); +return x_141; +} +} +else +{ +lean_dec(x_120); +lean_dec(x_118); +lean_dec(x_115); +lean_dec(x_107); +return x_97; +} +} +else +{ +lean_dec(x_119); +lean_dec(x_118); +lean_dec(x_115); +lean_dec(x_107); +return x_97; +} +} +} +} +} +else +{ +lean_dec(x_113); +lean_dec(x_111); +lean_dec(x_110); +lean_dec(x_109); +lean_dec(x_107); +return x_97; +} +} +else +{ +lean_dec(x_112); +lean_dec(x_111); +lean_dec(x_110); +lean_dec(x_109); +lean_dec(x_107); +return x_97; +} +} +else +{ +lean_dec(x_108); +lean_dec(x_107); +return x_97; +} +} +} +} +} +} +else +{ +return x_1; +} +} +} +lean_object* initialize_Init(lean_object*); +lean_object* initialize_Lean_Parser_Basic(lean_object*); +static bool _G_initialized = false; +lean_object* initialize_Lean_Parser_Transform(lean_object* w) { +lean_object * res; +if (_G_initialized) return lean_io_result_mk_ok(lean_box(0)); +_G_initialized = true; +res = initialize_Init(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Parser_Basic(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)); +} +#ifdef __cplusplus +} +#endif diff --git a/stage0/stdlib/Lean/PrettyPrinter/Parenthesizer.c b/stage0/stdlib/Lean/PrettyPrinter/Parenthesizer.c index dede4dfe62..016951a5c8 100644 --- a/stage0/stdlib/Lean/PrettyPrinter/Parenthesizer.c +++ b/stage0/stdlib/Lean/PrettyPrinter/Parenthesizer.c @@ -190,6 +190,7 @@ lean_object* lean_pretty_printer_parenthesizer_interpret_parser_descr(lean_objec lean_object* l_Lean_PrettyPrinter_Parenthesizer_parserOfStack_parenthesizer___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_node_parenthesizer___closed__3; lean_object* l_Lean_PrettyPrinter_mkParenthesizerAttribute___lambda__1___closed__1; +extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13713____closed__3; lean_object* l_Lean_PrettyPrinter_parenthesize___closed__3; lean_object* l_Lean_PrettyPrinter_Parenthesizer_checkWsBefore_parenthesizer___rarg(lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_tactic_parenthesizer___lambda__2(lean_object*); @@ -445,7 +446,6 @@ lean_object* l_Lean_Syntax_MonadTraverser_goUp___at_Lean_PrettyPrinter_Parenthes lean_object* l_Lean_PrettyPrinter_Parenthesizer_trailingNode_parenthesizer___lambda__2___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_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; @@ -7673,7 +7673,7 @@ _start: lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; x_5 = l_Array_empty___closed__1; x_6 = lean_array_push(x_5, x_1); -x_7 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13707____closed__3; +x_7 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_13713____closed__3; x_8 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_8, 0, x_7); lean_ctor_set(x_8, 1, x_6); diff --git a/stage0/stdlib/Lean/Server/ServerBin.c b/stage0/stdlib/Lean/Server/ServerBin.c new file mode 100644 index 0000000000..edda8e79fa --- /dev/null +++ b/stage0/stdlib/Lean/Server/ServerBin.c @@ -0,0 +1,330 @@ +// Lean compiler output +// Module: Lean.Server.ServerBin +// Imports: Init Init.System.IO Lean.Server +#include +#if defined(__clang__) +#pragma clang diagnostic ignored "-Wunused-parameter" +#pragma clang diagnostic ignored "-Wunused-label" +#elif defined(__GNUC__) && !defined(__CLANG__) +#pragma GCC diagnostic ignored "-Wunused-parameter" +#pragma GCC diagnostic ignored "-Wunused-label" +#pragma GCC diagnostic ignored "-Wunused-but-set-variable" +#endif +#ifdef __cplusplus +extern "C" { +#endif +lean_object* lean_get_stdin(lean_object*); +lean_object* lean_io_error_to_string(lean_object*); +lean_object* _lean_main(lean_object*, lean_object*); +lean_object* lean_get_stderr(lean_object*); +lean_object* l_main___boxed__const__1; +lean_object* l_IO_getStdin___at_main___spec__1(lean_object*); +lean_object* lean_init_search_path(lean_object*, lean_object*); +lean_object* lean_get_stdout(lean_object*); +lean_object* l_IO_FS_Stream_putStrLn___at_Lean_Server_Test_runWithInputFile___spec__1(lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Server_initAndRunServer(lean_object*, lean_object*, lean_object*); +lean_object* l_IO_getStdin___at_main___spec__1(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_get_stdin(x_1); +return x_2; +} +} +static lean_object* _init_l_main___boxed__const__1() { +_start: +{ +uint32_t x_1; lean_object* x_2; +x_1 = 0; +x_2 = lean_box_uint32(x_1); +return x_2; +} +} +lean_object* _lean_main(lean_object* x_1, lean_object* x_2) { +_start: +{ +lean_object* x_3; +lean_dec(x_1); +x_3 = lean_get_stdin(x_2); +if (lean_obj_tag(x_3) == 0) +{ +lean_object* x_4; lean_object* x_5; lean_object* x_6; +x_4 = lean_ctor_get(x_3, 0); +lean_inc(x_4); +x_5 = lean_ctor_get(x_3, 1); +lean_inc(x_5); +lean_dec(x_3); +x_6 = lean_get_stdout(x_5); +if (lean_obj_tag(x_6) == 0) +{ +lean_object* x_7; lean_object* x_8; lean_object* x_9; +x_7 = lean_ctor_get(x_6, 0); +lean_inc(x_7); +x_8 = lean_ctor_get(x_6, 1); +lean_inc(x_8); +lean_dec(x_6); +x_9 = lean_get_stderr(x_8); +if (lean_obj_tag(x_9) == 0) +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; +x_10 = lean_ctor_get(x_9, 0); +lean_inc(x_10); +x_11 = lean_ctor_get(x_9, 1); +lean_inc(x_11); +lean_dec(x_9); +x_12 = lean_box(0); +x_13 = lean_init_search_path(x_12, x_11); +if (lean_obj_tag(x_13) == 0) +{ +lean_object* x_14; lean_object* x_15; +x_14 = lean_ctor_get(x_13, 1); +lean_inc(x_14); +lean_dec(x_13); +x_15 = l_Lean_Server_initAndRunServer(x_4, x_7, x_14); +if (lean_obj_tag(x_15) == 0) +{ +uint8_t x_16; +lean_dec(x_10); +x_16 = !lean_is_exclusive(x_15); +if (x_16 == 0) +{ +lean_object* x_17; lean_object* x_18; +x_17 = lean_ctor_get(x_15, 0); +lean_dec(x_17); +x_18 = l_main___boxed__const__1; +lean_ctor_set(x_15, 0, x_18); +return x_15; +} +else +{ +lean_object* x_19; lean_object* x_20; lean_object* x_21; +x_19 = lean_ctor_get(x_15, 1); +lean_inc(x_19); +lean_dec(x_15); +x_20 = l_main___boxed__const__1; +x_21 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_21, 0, x_20); +lean_ctor_set(x_21, 1, x_19); +return x_21; +} +} +else +{ +lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; +x_22 = lean_ctor_get(x_15, 0); +lean_inc(x_22); +x_23 = lean_ctor_get(x_15, 1); +lean_inc(x_23); +lean_dec(x_15); +x_24 = lean_io_error_to_string(x_22); +x_25 = l_IO_FS_Stream_putStrLn___at_Lean_Server_Test_runWithInputFile___spec__1(x_10, x_24, x_23); +if (lean_obj_tag(x_25) == 0) +{ +uint8_t x_26; +x_26 = !lean_is_exclusive(x_25); +if (x_26 == 0) +{ +lean_object* x_27; lean_object* x_28; +x_27 = lean_ctor_get(x_25, 0); +lean_dec(x_27); +x_28 = l_main___boxed__const__1; +lean_ctor_set(x_25, 0, x_28); +return x_25; +} +else +{ +lean_object* x_29; lean_object* x_30; lean_object* x_31; +x_29 = lean_ctor_get(x_25, 1); +lean_inc(x_29); +lean_dec(x_25); +x_30 = l_main___boxed__const__1; +x_31 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_31, 0, x_30); +lean_ctor_set(x_31, 1, x_29); +return x_31; +} +} +else +{ +uint8_t x_32; +x_32 = !lean_is_exclusive(x_25); +if (x_32 == 0) +{ +return x_25; +} +else +{ +lean_object* x_33; lean_object* x_34; lean_object* x_35; +x_33 = lean_ctor_get(x_25, 0); +x_34 = lean_ctor_get(x_25, 1); +lean_inc(x_34); +lean_inc(x_33); +lean_dec(x_25); +x_35 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_35, 0, x_33); +lean_ctor_set(x_35, 1, x_34); +return x_35; +} +} +} +} +else +{ +uint8_t x_36; +lean_dec(x_10); +lean_dec(x_7); +lean_dec(x_4); +x_36 = !lean_is_exclusive(x_13); +if (x_36 == 0) +{ +return x_13; +} +else +{ +lean_object* x_37; lean_object* x_38; lean_object* x_39; +x_37 = lean_ctor_get(x_13, 0); +x_38 = lean_ctor_get(x_13, 1); +lean_inc(x_38); +lean_inc(x_37); +lean_dec(x_13); +x_39 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_39, 0, x_37); +lean_ctor_set(x_39, 1, x_38); +return x_39; +} +} +} +else +{ +uint8_t x_40; +lean_dec(x_7); +lean_dec(x_4); +x_40 = !lean_is_exclusive(x_9); +if (x_40 == 0) +{ +return x_9; +} +else +{ +lean_object* x_41; lean_object* x_42; lean_object* x_43; +x_41 = lean_ctor_get(x_9, 0); +x_42 = lean_ctor_get(x_9, 1); +lean_inc(x_42); +lean_inc(x_41); +lean_dec(x_9); +x_43 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_43, 0, x_41); +lean_ctor_set(x_43, 1, x_42); +return x_43; +} +} +} +else +{ +uint8_t x_44; +lean_dec(x_4); +x_44 = !lean_is_exclusive(x_6); +if (x_44 == 0) +{ +return x_6; +} +else +{ +lean_object* x_45; lean_object* x_46; lean_object* x_47; +x_45 = lean_ctor_get(x_6, 0); +x_46 = lean_ctor_get(x_6, 1); +lean_inc(x_46); +lean_inc(x_45); +lean_dec(x_6); +x_47 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_47, 0, x_45); +lean_ctor_set(x_47, 1, x_46); +return x_47; +} +} +} +else +{ +uint8_t x_48; +x_48 = !lean_is_exclusive(x_3); +if (x_48 == 0) +{ +return x_3; +} +else +{ +lean_object* x_49; lean_object* x_50; lean_object* x_51; +x_49 = lean_ctor_get(x_3, 0); +x_50 = lean_ctor_get(x_3, 1); +lean_inc(x_50); +lean_inc(x_49); +lean_dec(x_3); +x_51 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_51, 0, x_49); +lean_ctor_set(x_51, 1, x_50); +return x_51; +} +} +} +} +lean_object* initialize_Init(lean_object*); +lean_object* initialize_Init_System_IO(lean_object*); +lean_object* initialize_Lean_Server(lean_object*); +static bool _G_initialized = false; +lean_object* initialize_Lean_Server_ServerBin(lean_object* w) { +lean_object * res; +if (_G_initialized) return lean_io_result_mk_ok(lean_box(0)); +_G_initialized = true; +res = initialize_Init(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Init_System_IO(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +res = initialize_Lean_Server(lean_io_mk_world()); +if (lean_io_result_is_error(res)) return res; +lean_dec_ref(res); +l_main___boxed__const__1 = _init_l_main___boxed__const__1(); +lean_mark_persistent(l_main___boxed__const__1); +return lean_io_result_mk_ok(lean_box(0)); +} +void lean_initialize(); + + #if defined(WIN32) || defined(_WIN32) + #include + #endif + + int main(int argc, char ** argv) { + #if defined(WIN32) || defined(_WIN32) + SetErrorMode(SEM_FAILCRITICALERRORS); + #endif + lean_object* in; lean_object* res; +lean_initialize(); +res = initialize_Lean_Server_ServerBin(lean_io_mk_world()); +lean_io_mark_end_initialization(); +if (lean_io_result_is_ok(res)) { +lean_dec_ref(res); +lean_init_task_manager(); +in = lean_box(0); +int i = argc; +while (i > 1) { + lean_object* n; + i--; + n = lean_alloc_ctor(1,2,0); lean_ctor_set(n, 0, lean_mk_string(argv[i])); lean_ctor_set(n, 1, in); + in = n; +} +res = _lean_main(in, lean_io_mk_world()); +} +if (lean_io_result_is_ok(res)) { + int ret = lean_unbox(lean_io_result_get_value(res)); + lean_dec_ref(res); + return ret; +} else { + lean_io_result_show_error(res); + lean_dec_ref(res); + return 1; +} +} +#ifdef __cplusplus +} +#endif