chore: update stage0
This commit is contained in:
parent
ad45c18503
commit
ad88a1f406
50 changed files with 6988 additions and 7344 deletions
7
stage0/src/Init/Notation.lean
generated
7
stage0/src/Init/Notation.lean
generated
|
|
@ -226,11 +226,10 @@ syntax (name := generalize) "generalize " atomic(ident " : ")? term:51 " = " ide
|
|||
syntax (name := paren) "(" tacticSeq ")" : tactic
|
||||
syntax (name := withReducible) "withReducible " tacticSeq : tactic
|
||||
syntax (name := withReducibleAndInstances) "withReducibleAndInstances " tacticSeq : tactic
|
||||
syntax (name := first) "first " "|"? sepBy1(tacticSeq, "|") : tactic
|
||||
syntax (name := firstNew) "firstNew " withPosition((group(colGe "|" tacticSeq))+) : tactic
|
||||
syntax (name := first) "first " withPosition((group(colGe "|" tacticSeq))+) : tactic
|
||||
syntax (name := rotateLeft) "rotateLeft" (num)? : tactic
|
||||
syntax (name := rotateRight) "rotateRight" (num)? : tactic
|
||||
macro "try " t:tacticSeq : tactic => `(first $t | skip)
|
||||
macro "try " t:tacticSeq : tactic => `(first | $t | skip)
|
||||
macro:1 x:tactic " <;> " y:tactic:0 : tactic => `(tactic| focus ($x:tactic; allGoals $y:tactic))
|
||||
|
||||
macro "rfl" : tactic => `(exact rfl)
|
||||
|
|
@ -309,7 +308,7 @@ syntax (name := existsIntro) "exists " term : tactic
|
|||
|
||||
syntax "repeat " tacticSeq : tactic
|
||||
macro_rules
|
||||
| `(tactic| repeat $seq) => `(tactic| first ($seq); repeat $seq | skip)
|
||||
| `(tactic| repeat $seq) => `(tactic| first | ($seq); repeat $seq | skip)
|
||||
|
||||
syntax "trivial" : tactic
|
||||
|
||||
|
|
|
|||
6
stage0/src/Init/NotationExtra.lean
generated
6
stage0/src/Init/NotationExtra.lean
generated
|
|
@ -177,9 +177,9 @@ macro_rules
|
|||
@ $ctor:ident $ctorArgs*)
|
||||
|
||||
/-
|
||||
Similar to `first`, but succeeds only if one the given tactics solves the curretn goal.
|
||||
Similar to `first`, but succeeds only if one the given tactics solves the current goal.
|
||||
-/
|
||||
syntax "solve " "|"? sepBy1(tacticSeq, "|") : tactic
|
||||
syntax (name := solve) "solve " withPosition((group(colGe "|" tacticSeq))+) : tactic
|
||||
|
||||
macro_rules
|
||||
| `(tactic| solve $[|]? $ts:tacticSeq|*) => `(tactic| focus first $[($ts); done]|*)
|
||||
| `(tactic| solve $[| $ts]* ) => `(tactic| focus first $[| ($ts); done]*)
|
||||
|
|
|
|||
17
stage0/src/Lean/Elab/Tactic/Basic.lean
generated
17
stage0/src/Lean/Elab/Tactic/Basic.lean
generated
|
|
@ -622,8 +622,7 @@ def withCaseRef [Monad m] [MonadRef m] (arrow body : Syntax) (x : m α) : m α :
|
|||
setGoals gs
|
||||
| _ => throwUnsupportedSyntax
|
||||
|
||||
-- syntax (name := firstNew) "firstNew " withPosition((colGe "|" tacticSeq)+) : tactic
|
||||
@[builtinTactic «firstNew»] partial def evalFirstNew : Tactic := fun stx => do
|
||||
@[builtinTactic «first»] partial def evalFirst : Tactic := fun stx => do
|
||||
let tacs := stx[1].getArgs
|
||||
if tacs.isEmpty then throwUnsupportedSyntax
|
||||
loop tacs 0
|
||||
|
|
@ -634,20 +633,6 @@ where
|
|||
else
|
||||
evalTactic tacs[i][1] <|> loop tacs (i+1)
|
||||
|
||||
@[builtinTactic «first»] partial def evalFirst : Tactic := fun stx => do
|
||||
if stx.getNumArgs == 2 then
|
||||
evalFirstNew stx
|
||||
else
|
||||
let tacs := stx[2].getSepArgs
|
||||
if tacs.isEmpty then throwUnsupportedSyntax
|
||||
loop tacs 0
|
||||
where
|
||||
loop (tacs : Array Syntax) (i : Nat) :=
|
||||
if i == tacs.size - 1 then
|
||||
evalTactic tacs[i]
|
||||
else
|
||||
evalTactic tacs[i] <|> loop tacs (i+1)
|
||||
|
||||
builtin_initialize registerTraceClass `Elab.tactic
|
||||
|
||||
end Lean.Elab.Tactic
|
||||
|
|
|
|||
|
|
@ -139,13 +139,17 @@ class eager_lambda_lifting_fn {
|
|||
ok = false;
|
||||
return false;
|
||||
} else {
|
||||
if (!collect_fvars_core(d.get_type(), collected, fvars))
|
||||
if (!collect_fvars_core(d.get_type(), collected, fvars)) {
|
||||
ok = false;
|
||||
return false;
|
||||
}
|
||||
if (m_closed_fvars.contains(fvar_name(x))) {
|
||||
/* If x only depends on global constants and other variables in m_closed_fvars.
|
||||
Then, we also collect the other variables at m_closed_fvars. */
|
||||
if (!collect_fvars_core(*d.get_value(), collected, fvars))
|
||||
if (!collect_fvars_core(*d.get_value(), collected, fvars)) {
|
||||
ok = false;
|
||||
return false;
|
||||
}
|
||||
}
|
||||
fvars.push_back(x);
|
||||
}
|
||||
|
|
|
|||
6
stage0/stdlib/Init/Classical.c
generated
6
stage0/stdlib/Init/Classical.c
generated
|
|
@ -36,6 +36,7 @@ lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at_myMacro____x40_Init_Notation_
|
|||
lean_object* l_Classical_myMacro____x40_Init_Classical___hyg_957____closed__5;
|
||||
lean_object* l_Classical_myMacro____x40_Init_Classical___hyg_957____closed__14;
|
||||
extern lean_object* l_Lean_groupKind___closed__2;
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__2;
|
||||
lean_object* l_Classical_myMacro____x40_Init_Classical___hyg_957____closed__3;
|
||||
lean_object* l_Classical_tacticByCases_____x3a_____closed__10;
|
||||
extern lean_object* l_Lean_Parser_Tactic_cases___closed__2;
|
||||
|
|
@ -53,7 +54,6 @@ extern lean_object* l_Array_term_____x5b___x3a___x5d___closed__10;
|
|||
lean_object* l_Lean_addMacroScope(lean_object*, lean_object*, lean_object*);
|
||||
extern lean_object* l_Lean_nullKind___closed__2;
|
||||
lean_object* l_Classical_tacticByCases_____x3a_____closed__5;
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__2;
|
||||
extern lean_object* l_Lean_Parser_Tactic_inductionAlts___closed__2;
|
||||
lean_object* l_Classical_tacticByCases_____x3a_____closed__4;
|
||||
lean_object* l_Classical_myMacro____x40_Init_Classical___hyg_957____closed__9;
|
||||
|
|
@ -569,7 +569,7 @@ x_95 = lean_alloc_ctor(1, 2, 0);
|
|||
lean_ctor_set(x_95, 0, x_29);
|
||||
lean_ctor_set(x_95, 1, x_94);
|
||||
x_96 = lean_array_push(x_19, x_95);
|
||||
x_97 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__2;
|
||||
x_97 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____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);
|
||||
|
|
@ -736,7 +736,7 @@ x_181 = lean_alloc_ctor(1, 2, 0);
|
|||
lean_ctor_set(x_181, 0, x_115);
|
||||
lean_ctor_set(x_181, 1, x_180);
|
||||
x_182 = lean_array_push(x_105, x_181);
|
||||
x_183 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__2;
|
||||
x_183 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____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);
|
||||
|
|
|
|||
4
stage0/stdlib/Init/Data/Repr.c
generated
4
stage0/stdlib/Init/Data/Repr.c
generated
|
|
@ -186,7 +186,6 @@ lean_object* l_instReprUInt8___boxed(lean_object*, lean_object*);
|
|||
lean_object* l_charToHex(uint32_t);
|
||||
lean_object* l_instReprUnit___closed__1;
|
||||
lean_object* l_instReprTupleProd_match__1(lean_object*, lean_object*, lean_object*);
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__8;
|
||||
uint8_t lean_nat_dec_le(lean_object*, lean_object*);
|
||||
lean_object* l_String_quote(lean_object*);
|
||||
lean_object* l_instReprDecidable___rarg(uint8_t, lean_object*);
|
||||
|
|
@ -203,6 +202,7 @@ extern lean_object* l_Int_instInhabitedInt___closed__1;
|
|||
lean_object* l_instReprAtomUInt64;
|
||||
lean_object* l_instReprAtomChar;
|
||||
lean_object* l_instReprUInt32___boxed(lean_object*, lean_object*);
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__8;
|
||||
lean_object* l_instReprPUnit(lean_object*, lean_object*);
|
||||
lean_object* lean_nat_abs(lean_object*);
|
||||
lean_object* l_instReprBool(uint8_t, lean_object*);
|
||||
|
|
@ -407,7 +407,7 @@ static lean_object* _init_l_instReprBool___closed__1() {
|
|||
_start:
|
||||
{
|
||||
lean_object* x_1; lean_object* x_2;
|
||||
x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__8;
|
||||
x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__8;
|
||||
x_2 = lean_alloc_ctor(2, 1, 0);
|
||||
lean_ctor_set(x_2, 0, x_1);
|
||||
return x_2;
|
||||
|
|
|
|||
6
stage0/stdlib/Init/Data/ToString/Basic.c
generated
6
stage0/stdlib/Init/Data/ToString/Basic.c
generated
|
|
@ -121,7 +121,6 @@ lean_object* l_instToStringString___boxed(lean_object*);
|
|||
lean_object* l_instReprExcept___rarg___closed__1;
|
||||
extern lean_object* l_Id_instMonadId;
|
||||
lean_object* l_instToStringOption(lean_object*);
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__8;
|
||||
uint8_t l_String_isPrefixOf(lean_object*, lean_object*);
|
||||
lean_object* l_instReprExcept___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_List_toString(lean_object*);
|
||||
|
|
@ -136,6 +135,7 @@ uint8_t lean_int_dec_lt(lean_object*, lean_object*);
|
|||
lean_object* l_instToStringProd_match__1___rarg(lean_object*, lean_object*);
|
||||
extern lean_object* l_Int_instInhabitedInt___closed__1;
|
||||
lean_object* l_instReprExcept_match__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__8;
|
||||
lean_object* l_instToStringSum___rarg___closed__2;
|
||||
lean_object* lean_nat_abs(lean_object*);
|
||||
lean_object* l_instToStringSum_match__1___rarg(lean_object*, lean_object*, lean_object*);
|
||||
|
|
@ -286,7 +286,7 @@ _start:
|
|||
if (x_1 == 0)
|
||||
{
|
||||
lean_object* x_2;
|
||||
x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__8;
|
||||
x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__8;
|
||||
return x_2;
|
||||
}
|
||||
else
|
||||
|
|
@ -350,7 +350,7 @@ _start:
|
|||
if (x_1 == 0)
|
||||
{
|
||||
lean_object* x_2;
|
||||
x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__8;
|
||||
x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__8;
|
||||
return x_2;
|
||||
}
|
||||
else
|
||||
|
|
|
|||
4
stage0/stdlib/Init/Meta.c
generated
4
stage0/stdlib/Init/Meta.c
generated
|
|
@ -438,7 +438,6 @@ uint8_t l_Lean_Meta_Simp_Config_eta___default;
|
|||
extern lean_object* l_Lean_Parser_Syntax_subPrio___closed__2;
|
||||
lean_object* l_Lean_Syntax_expandInterpolatedStrChunks___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
uint8_t l_Lean_Syntax_hasArgs(lean_object*);
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__8;
|
||||
lean_object* l___private_Init_Meta_0__Lean_quoteList(lean_object*);
|
||||
uint8_t lean_nat_dec_le(lean_object*, lean_object*);
|
||||
lean_object* l___private_Init_Meta_0__Lean_Syntax_isNatLitAux_match__1(lean_object*);
|
||||
|
|
@ -472,6 +471,7 @@ lean_object* l_Lean_evalPrec___closed__1;
|
|||
lean_object* l_Lean_Name_toStringWithSep___closed__1;
|
||||
lean_object* l_Lean_NameGenerator_curr(lean_object*);
|
||||
lean_object* l_Lean_Syntax_SepArray_getElems___rarg___boxed(lean_object*);
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__8;
|
||||
lean_object* l_Lean_Syntax_isNameLit_x3f___boxed(lean_object*);
|
||||
lean_object* l___private_Init_Meta_0__Array_mapSepElemsMAux___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l___private_Init_Meta_0__Lean_Meta_Simp_reprConfig____x40_Init_Meta___hyg_6460____closed__10;
|
||||
|
|
@ -9214,7 +9214,7 @@ _start:
|
|||
{
|
||||
lean_object* x_1; lean_object* x_2; lean_object* x_3;
|
||||
x_1 = l_Lean_instQuoteBool___closed__2;
|
||||
x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__8;
|
||||
x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__8;
|
||||
x_3 = lean_name_mk_string(x_1, x_2);
|
||||
return x_3;
|
||||
}
|
||||
|
|
|
|||
2290
stage0/stdlib/Init/Notation.c
generated
2290
stage0/stdlib/Init/Notation.c
generated
File diff suppressed because it is too large
Load diff
733
stage0/stdlib/Init/NotationExtra.c
generated
733
stage0/stdlib/Init/NotationExtra.c
generated
File diff suppressed because it is too large
Load diff
12
stage0/stdlib/Lean/Compiler/ConstFolding.c
generated
12
stage0/stdlib/Lean/Compiler/ConstFolding.c
generated
|
|
@ -246,7 +246,6 @@ lean_object* l_Nat_decLe___boxed(lean_object*, lean_object*);
|
|||
lean_object* l_Lean_Compiler_foldUIntAdd___boxed(lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Compiler_uintBinFoldFns___closed__1;
|
||||
lean_object* l_Lean_Compiler_findBinFoldFn(lean_object*);
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__8;
|
||||
lean_object* l_Lean_Compiler_numScalarTypes___closed__13;
|
||||
lean_object* l_Lean_Compiler_foldUIntAdd___closed__1;
|
||||
lean_object* l_Lean_Compiler_mkNatLt(lean_object*, lean_object*);
|
||||
|
|
@ -265,6 +264,7 @@ lean_object* l_Lean_Compiler_toDecidableExpr_match__1___rarg(uint8_t, uint8_t, l
|
|||
lean_object* l_Lean_Compiler_mkNatLt___closed__6;
|
||||
lean_object* l_Lean_Compiler_NumScalarTypeInfo_toNatFn___default(lean_object*);
|
||||
lean_object* l_Lean_Compiler_foldNatAdd(uint8_t);
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__8;
|
||||
lean_object* l_Lean_Compiler_natFoldFns___closed__24;
|
||||
lean_object* l_Lean_Compiler_foldStrictOr(uint8_t);
|
||||
lean_object* l_Lean_Compiler_mkNatLt___closed__4;
|
||||
|
|
@ -3224,7 +3224,7 @@ if (x_25 == 0)
|
|||
{
|
||||
lean_object* x_26; uint8_t x_27;
|
||||
lean_dec(x_2);
|
||||
x_26 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__8;
|
||||
x_26 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__8;
|
||||
x_27 = lean_string_dec_eq(x_11, x_26);
|
||||
if (x_27 == 0)
|
||||
{
|
||||
|
|
@ -3275,7 +3275,7 @@ if (x_38 == 0)
|
|||
{
|
||||
lean_object* x_39; uint8_t x_40;
|
||||
lean_dec(x_2);
|
||||
x_39 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__8;
|
||||
x_39 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__8;
|
||||
x_40 = lean_string_dec_eq(x_11, x_39);
|
||||
if (x_40 == 0)
|
||||
{
|
||||
|
|
@ -3358,7 +3358,7 @@ if (x_58 == 0)
|
|||
{
|
||||
lean_object* x_59; uint8_t x_60;
|
||||
lean_dec(x_2);
|
||||
x_59 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__8;
|
||||
x_59 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__8;
|
||||
x_60 = lean_string_dec_eq(x_11, x_59);
|
||||
if (x_60 == 0)
|
||||
{
|
||||
|
|
@ -3461,7 +3461,7 @@ if (x_83 == 0)
|
|||
{
|
||||
lean_object* x_84; uint8_t x_85;
|
||||
lean_dec(x_2);
|
||||
x_84 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__8;
|
||||
x_84 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__8;
|
||||
x_85 = lean_string_dec_eq(x_73, x_84);
|
||||
if (x_85 == 0)
|
||||
{
|
||||
|
|
@ -3630,7 +3630,7 @@ x_11 = lean_string_dec_eq(x_5, x_10);
|
|||
if (x_11 == 0)
|
||||
{
|
||||
lean_object* x_12; uint8_t x_13;
|
||||
x_12 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__8;
|
||||
x_12 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__8;
|
||||
x_13 = lean_string_dec_eq(x_5, x_12);
|
||||
if (x_13 == 0)
|
||||
{
|
||||
|
|
|
|||
4
stage0/stdlib/Lean/Data/Json/Parser.c
generated
4
stage0/stdlib/Lean/Data/Json/Parser.c
generated
|
|
@ -114,7 +114,6 @@ lean_object* l_Lean_Json_Parser_escapedChar___boxed__const__3;
|
|||
lean_object* l_Lean_Json_Parser_lookahead___rarg(lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Json_Parser_num___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Json_Parser_num___lambda__3___closed__1___boxed__const__1;
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__8;
|
||||
uint32_t l_String_Iterator_curr(lean_object*);
|
||||
lean_object* l_Lean_Quickparse_instMonadQuickparse___lambda__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Json_Parser_num___lambda__3___closed__1;
|
||||
|
|
@ -125,6 +124,7 @@ lean_object* l_Lean_Quickparse_instMonadQuickparse___closed__9;
|
|||
lean_object* l_Lean_Quickparse_peek_x3f(lean_object*);
|
||||
lean_object* l_Lean_Json_parse___closed__1;
|
||||
lean_object* l_Lean_Json_Parser_lookahead(lean_object*);
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__8;
|
||||
lean_object* l_Lean_Json_Parser_hexChar(lean_object*);
|
||||
lean_object* l_Lean_Quickparse_instMonadQuickparse___closed__4;
|
||||
lean_object* l_Lean_Json_Parser_objectCore___closed__3;
|
||||
|
|
@ -4793,7 +4793,7 @@ return x_87;
|
|||
else
|
||||
{
|
||||
lean_object* x_88; lean_object* x_89;
|
||||
x_88 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__8;
|
||||
x_88 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__8;
|
||||
x_89 = l_Lean_Quickparse_expect(x_88, x_1);
|
||||
if (lean_obj_tag(x_89) == 0)
|
||||
{
|
||||
|
|
|
|||
4
stage0/stdlib/Lean/Data/Json/Printer.c
generated
4
stage0/stdlib/Lean/Data/Json/Printer.c
generated
|
|
@ -68,10 +68,10 @@ lean_object* l_Lean_Json_render___closed__3;
|
|||
uint8_t l_UInt32_decEq(uint32_t, uint32_t);
|
||||
lean_object* l_String_intercalate(lean_object*, lean_object*);
|
||||
extern lean_object* l_Id_instMonadId;
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__8;
|
||||
lean_object* l_String_foldlAux_loop___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Json_render_match__1(lean_object*);
|
||||
lean_object* l_Lean_Json_instToFormatJson;
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__8;
|
||||
lean_object* l_Lean_Json_render___closed__4;
|
||||
lean_object* l_Lean_Json_instToStringJson(lean_object*);
|
||||
extern lean_object* l_myMacro____x40_Init_Notation___hyg_16268____closed__9;
|
||||
|
|
@ -746,7 +746,7 @@ lean_dec(x_1);
|
|||
if (x_3 == 0)
|
||||
{
|
||||
lean_object* x_4;
|
||||
x_4 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__8;
|
||||
x_4 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__8;
|
||||
return x_4;
|
||||
}
|
||||
else
|
||||
|
|
|
|||
4
stage0/stdlib/Lean/Data/KVMap.c
generated
4
stage0/stdlib/Lean/Data/KVMap.c
generated
|
|
@ -147,7 +147,6 @@ lean_object* l_Lean_KVMap_instValueNat___closed__1;
|
|||
lean_object* l_Lean_KVMap_instValueNat___closed__2;
|
||||
lean_object* l_Lean_DataValue_str_match__1(lean_object*);
|
||||
uint8_t l___private_Lean_Data_KVMap_0__Lean_beqDataValue____x40_Lean_Data_KVMap___hyg_17_(lean_object*, lean_object*);
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__8;
|
||||
lean_object* l_Lean_KVMap_get(lean_object*);
|
||||
lean_object* l_Lean_KVMap_empty;
|
||||
lean_object* l_Lean_KVMap_instValueString;
|
||||
|
|
@ -159,6 +158,7 @@ uint8_t lean_int_dec_lt(lean_object*, lean_object*);
|
|||
lean_object* l_Lean_KVMap_getBool_match__1(lean_object*);
|
||||
extern lean_object* l_Int_instInhabitedInt___closed__1;
|
||||
lean_object* l___private_Lean_Data_KVMap_0__Lean_beqDataValue____x40_Lean_Data_KVMap___hyg_17__match__1___rarg(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_23499____closed__8;
|
||||
lean_object* lean_nat_abs(lean_object*);
|
||||
lean_object* l_Lean_KVMap_subset_match__1(lean_object*);
|
||||
lean_object* l_Lean_KVMap_instValueName___lambda__1(lean_object*);
|
||||
|
|
@ -774,7 +774,7 @@ lean_dec(x_1);
|
|||
if (x_3 == 0)
|
||||
{
|
||||
lean_object* x_4;
|
||||
x_4 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__8;
|
||||
x_4 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__8;
|
||||
return x_4;
|
||||
}
|
||||
else
|
||||
|
|
|
|||
4
stage0/stdlib/Lean/Data/LBool.c
generated
4
stage0/stdlib/Lean/Data/LBool.c
generated
|
|
@ -37,11 +37,11 @@ lean_object* l_Lean_LBool_and_match__1___rarg(uint8_t, uint8_t, lean_object*, le
|
|||
uint8_t l_Lean_instInhabitedLBool;
|
||||
lean_object* l_Lean_instBEqLBool___closed__1;
|
||||
lean_object* l_toLBoolM___rarg___lambda__1___boxed(lean_object*, lean_object*);
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__8;
|
||||
lean_object* l_Lean_instBEqLBool;
|
||||
lean_object* l_Bool_toLBool_match__1(lean_object*);
|
||||
uint8_t l_Lean_LBool_neg(uint8_t);
|
||||
uint8_t l_Bool_toLBool(uint8_t);
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__8;
|
||||
lean_object* l_Lean_LBool_toString___closed__1;
|
||||
lean_object* l_Lean_LBool_and_match__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l___private_Lean_Data_LBool_0__Lean_beqLBool____x40_Lean_Data_LBool___hyg_11____boxed(lean_object*, lean_object*);
|
||||
|
|
@ -424,7 +424,7 @@ switch (x_1) {
|
|||
case 0:
|
||||
{
|
||||
lean_object* x_2;
|
||||
x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__8;
|
||||
x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__8;
|
||||
return x_2;
|
||||
}
|
||||
case 1:
|
||||
|
|
|
|||
4
stage0/stdlib/Lean/Data/Options.c
generated
4
stage0/stdlib/Lean/Data/Options.c
generated
|
|
@ -121,7 +121,6 @@ lean_object* l_Lean_Option_register___rarg(lean_object*, lean_object*, lean_obje
|
|||
lean_object* l_Lean_Option_myMacro____x40_Lean_Data_Options___hyg_894____closed__13;
|
||||
lean_object* l_Std_RBNode_find___at_Lean_getOptionDecl___spec__1(lean_object*, lean_object*);
|
||||
lean_object* l_Lean_setOptionFromString(lean_object*, lean_object*, lean_object*);
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__8;
|
||||
lean_object* l_Lean_setOptionFromString___closed__6;
|
||||
lean_object* l_Lean_registerOption___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_setOptionFromString___closed__1;
|
||||
|
|
@ -132,6 +131,7 @@ lean_object* l_Lean_getBoolOption___rarg___lambda__1(lean_object*, lean_object*,
|
|||
lean_object* l_Lean_getNatOption___rarg(lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* lean_register_option(lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Option_commandRegister__builtin__option_____x3a___x3a_x3d_____closed__8;
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__8;
|
||||
lean_object* l_Lean_instInhabitedOption(lean_object*);
|
||||
extern lean_object* l_myMacro____x40_Init_Notation___hyg_16268____closed__9;
|
||||
lean_object* lean_st_ref_set(lean_object*, lean_object*, lean_object*);
|
||||
|
|
@ -1079,7 +1079,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_23515____closed__8;
|
||||
x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__8;
|
||||
x_3 = lean_name_mk_string(x_1, x_2);
|
||||
return x_3;
|
||||
}
|
||||
|
|
|
|||
4
stage0/stdlib/Lean/Declaration.c
generated
4
stage0/stdlib/Lean/Declaration.c
generated
|
|
@ -43,7 +43,6 @@ lean_object* lean_mk_inductive_decl(lean_object*, lean_object*, lean_object*, ui
|
|||
lean_object* l_List_foldlM___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_mkConstructorValEx___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_instInhabitedConstantVal___closed__1;
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21307____closed__3;
|
||||
lean_object* l_Lean_instInhabitedAxiomVal___closed__1;
|
||||
lean_object* l_Lean_ConstantInfo_value_x3f___boxed(lean_object*);
|
||||
lean_object* l___private_Lean_Declaration_0__Lean_reprDefinitionSafety____x40_Lean_Declaration___hyg_204____closed__6;
|
||||
|
|
@ -185,6 +184,7 @@ lean_object* l_Lean_ReducibilityHints_lt_match__1(lean_object*);
|
|||
lean_object* l_List_foldlM___at_Lean_Declaration_forExprM___spec__4___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_ConstantInfo_value_x21___closed__3;
|
||||
lean_object* l_Lean_Declaration_foldExprM___rarg___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21281____closed__3;
|
||||
lean_object* l_Lean_instInhabitedInductiveVal;
|
||||
lean_object* l_Lean_ConstantInfo_isCtor_match__1(lean_object*);
|
||||
lean_object* l_Lean_ConstantInfo_value_x21(lean_object*);
|
||||
|
|
@ -3491,7 +3491,7 @@ lean_object* l_Lean_mkRecName(lean_object* x_1) {
|
|||
_start:
|
||||
{
|
||||
lean_object* x_2; lean_object* x_3;
|
||||
x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21307____closed__3;
|
||||
x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21281____closed__3;
|
||||
x_3 = lean_name_mk_string(x_1, x_2);
|
||||
return x_3;
|
||||
}
|
||||
|
|
|
|||
18
stage0/stdlib/Lean/Elab/App.c
generated
18
stage0/stdlib/Lean/Elab/App.c
generated
|
|
@ -78,6 +78,7 @@ lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Term_expandArgs___spec__3_
|
|||
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*);
|
||||
extern lean_object* l_Std_Format_defWidth;
|
||||
extern lean_object* l_myMacro____x40_Init_Notation___hyg_23692____closed__3;
|
||||
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_Lean_MonadRef_mkInfoFromRefPos___at_Lean_Elab_Term_quoteAutoTactic___spec__1___rarg(lean_object*, lean_object*, lean_object*);
|
||||
|
|
@ -91,12 +92,12 @@ lean_object* lean_array_uset(lean_object*, size_t, lean_object*);
|
|||
lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_elabAndAddNewArg(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_elabAndAddNewArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
extern lean_object* l_Lean_identKind___closed__2;
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__5;
|
||||
lean_object* l_Lean_Elab_Term_NamedArg_ref___default;
|
||||
lean_object* l_Lean_Meta_forallTelescopeReducing___at___private_Lean_Elab_App_0__Lean_Elab_Term_addLValArg___spec__4___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Elab_Term_instInhabitedTermElabResult___rarg(lean_object*);
|
||||
lean_object* l_Lean_Elab_Term_withoutPostponingUniverseConstraints___at_Lean_Elab_Term_elabPipeProj___spec__1___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Expr_getAutoParamTactic_x3f(lean_object*);
|
||||
extern lean_object* l_myMacro____x40_Init_Notation___hyg_23708____closed__3;
|
||||
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*);
|
||||
extern lean_object* l_Lean_Meta_isCoeDecl___closed__37;
|
||||
lean_object* l_Lean_Elab_Term_throwInvalidNamedArg___rarg___closed__2;
|
||||
|
|
@ -154,7 +155,6 @@ lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_addLValArg_match__3___r
|
|||
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;
|
||||
lean_object* l_Lean_Expr_getOptParamDefault_x3f(lean_object*);
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__3;
|
||||
uint8_t l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_getForallBody___lambda__1(lean_object*, lean_object*);
|
||||
lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_propagateExpectedTypeFor_match__1___rarg(lean_object*, lean_object*, lean_object*);
|
||||
uint8_t l_List_foldr___at___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_anyNamedArgDependsOnCurrent___spec__1(lean_object*, uint8_t, lean_object*);
|
||||
|
|
@ -261,6 +261,7 @@ lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_addInstMVar
|
|||
lean_object* lean_nat_sub(lean_object*, lean_object*);
|
||||
lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppLValsAux_loop___lambda__2___closed__1;
|
||||
lean_object* l_Lean_Elab_Term_elabExplicit(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_23692____closed__2;
|
||||
extern lean_object* l_Lean_choiceKind___closed__2;
|
||||
uint8_t l_Lean_Elab_Term_ElabAppArgs_State_ellipsis___default;
|
||||
lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_anyNamedArgDependsOnCurrent___lambda__2___closed__1;
|
||||
|
|
@ -312,7 +313,6 @@ lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_elabAppFnId___boxed(lea
|
|||
lean_object* l_Lean_Elab_Term_elabAppArgs(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* l___private_Lean_Elab_App_0__Lean_Elab_Term_resolveLValAux___lambda__1___closed__4;
|
||||
lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_addLValArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
extern lean_object* l_myMacro____x40_Init_Notation___hyg_23708____closed__2;
|
||||
lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_resolveLValAux___closed__11;
|
||||
lean_object* l___private_Lean_Util_Trace_0__Lean_checkTraceOptionM___at___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_propagateExpectedType___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l___regBuiltin_Lean_Elab_Term_elabExplicitUniv___closed__1;
|
||||
|
|
@ -366,7 +366,6 @@ lean_object* lean_expr_dbg_to_string(lean_object*);
|
|||
lean_object* l_Lean_Elab_Term_elabApp(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(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
extern lean_object* l_Lean_instInhabitedExpr;
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__5;
|
||||
lean_object* l_Lean_getPathToBaseStructure_x3f(lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Elab_Term_synthesizeAppInstMVars___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_MetavarContext_localDeclDependsOn(lean_object*, lean_object*, lean_object*);
|
||||
|
|
@ -605,6 +604,7 @@ extern lean_object* l_myMacro____x40_Init_Notation___hyg_2278____closed__4;
|
|||
lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_App_0__Lean_Elab_Term_mergeFailures___spec__1___closed__2;
|
||||
lean_object* l_Lean_Elab_Term_elabAppArgs___closed__1;
|
||||
lean_object* l_Lean_Elab_Term_withoutPostponingUniverseConstraints___at_Lean_Elab_Term_elabApp___spec__1___lambda__1(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_18139____closed__3;
|
||||
lean_object* l___private_Lean_Elab_App_0__Lean_Elab_Term_ElabAppArgs_propagateExpectedType___closed__8;
|
||||
extern lean_object* l_prec_x28___x29___closed__3;
|
||||
lean_object* l_Lean_Elab_Term_elabAppArgs___closed__2;
|
||||
|
|
@ -4883,12 +4883,12 @@ x_5 = lean_name_eq(x_3, x_4);
|
|||
if (x_5 == 0)
|
||||
{
|
||||
lean_object* x_6; uint8_t x_7;
|
||||
x_6 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__5;
|
||||
x_6 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__5;
|
||||
x_7 = lean_name_eq(x_3, x_6);
|
||||
if (x_7 == 0)
|
||||
{
|
||||
lean_object* x_8; uint8_t x_9;
|
||||
x_8 = l_myMacro____x40_Init_Notation___hyg_23708____closed__2;
|
||||
x_8 = l_myMacro____x40_Init_Notation___hyg_23692____closed__2;
|
||||
x_9 = lean_name_eq(x_3, x_8);
|
||||
lean_dec(x_3);
|
||||
if (x_9 == 0)
|
||||
|
|
@ -8255,19 +8255,19 @@ x_72 = l_Lean_Elab_Term_getMainModule___rarg(x_8, x_71);
|
|||
x_73 = lean_ctor_get(x_72, 1);
|
||||
lean_inc(x_73);
|
||||
lean_dec(x_72);
|
||||
x_74 = l_myMacro____x40_Init_Notation___hyg_23708____closed__3;
|
||||
x_74 = l_myMacro____x40_Init_Notation___hyg_23692____closed__3;
|
||||
x_75 = lean_alloc_ctor(2, 2, 0);
|
||||
lean_ctor_set(x_75, 0, x_68);
|
||||
lean_ctor_set(x_75, 1, x_74);
|
||||
x_76 = l_Array_empty___closed__1;
|
||||
x_77 = lean_array_push(x_76, x_75);
|
||||
x_78 = lean_array_push(x_76, x_66);
|
||||
x_79 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__3;
|
||||
x_79 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__3;
|
||||
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_77, x_80);
|
||||
x_82 = l_myMacro____x40_Init_Notation___hyg_23708____closed__2;
|
||||
x_82 = l_myMacro____x40_Init_Notation___hyg_23692____closed__2;
|
||||
x_83 = lean_alloc_ctor(1, 2, 0);
|
||||
lean_ctor_set(x_83, 0, x_82);
|
||||
lean_ctor_set(x_83, 1, x_81);
|
||||
|
|
|
|||
28
stage0/stdlib/Lean/Elab/Binders.c
generated
28
stage0/stdlib/Lean/Elab/Binders.c
generated
|
|
@ -23,6 +23,7 @@ lean_object* l_Lean_Meta_getResetPostponed(lean_object*, lean_object*, lean_obje
|
|||
extern lean_object* l_myMacro____x40_Init_Notation___hyg_15342____closed__13;
|
||||
lean_object* l_List_forM___at_Lean_Elab_Term_Quotation_precheck___spec__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
uint8_t l_Lean_Syntax_isAntiquotSuffixSplice(lean_object*);
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21281____closed__2;
|
||||
lean_object* l_Lean_compileDecl___at_Lean_Elab_Term_evalExpr___spec__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Elab_Term_quoteAutoTactic___closed__6;
|
||||
lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_getMatchAltsNumPatterns(lean_object*);
|
||||
|
|
@ -81,6 +82,7 @@ lean_object* l_Lean_Elab_Term_mkFreshBinderName___at___private_Lean_Elab_Binders
|
|||
lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_Elab_Term_quoteAutoTactic___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
extern lean_object* l_Lean_Elab_throwUnsupportedSyntax___rarg___closed__1;
|
||||
lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_Elab_Term_quoteAutoTactic___spec__1___rarg(lean_object*, lean_object*, lean_object*);
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21281____closed__1;
|
||||
lean_object* l_Lean_SourceInfo_fromRef(lean_object*);
|
||||
lean_object* l_Lean_Elab_Term_elabLetDeclAux___lambda__3(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_FunBinders_elabFunBinderViews___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
|
|
@ -154,7 +156,6 @@ lean_object* l___regBuiltin_Lean_Elab_Term_expandFun___closed__1;
|
|||
lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux_match__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Term_expandFunBinders_loop___spec__3(lean_object*, size_t, size_t, lean_object*);
|
||||
lean_object* l_Lean_Elab_Term_elabLetDeclCore_match__1___rarg(lean_object*, lean_object*);
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21307____closed__3;
|
||||
lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Term_quoteAutoTactic___spec__2___lambda__1___closed__6;
|
||||
lean_object* l_Lean_Elab_Term_declareTacticSyntax___closed__3;
|
||||
lean_object* lean_string_utf8_byte_size(lean_object*);
|
||||
|
|
@ -227,6 +228,7 @@ lean_object* lean_nat_sub(lean_object*, lean_object*);
|
|||
lean_object* l_Lean_Elab_Term_declareTacticSyntax(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
extern lean_object* l_Lean_Parser_Term_implicitBinder___elambda__1___closed__1;
|
||||
lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Binders_0__Lean_Elab_Term_getBinderIds___spec__1___boxed(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_18139____closed__2;
|
||||
lean_object* l_Lean_Elab_Term_quoteAutoTactic___closed__14;
|
||||
extern lean_object* l_myMacro____x40_Init_Notation___hyg_14734____closed__7;
|
||||
lean_object* l_Lean_Elab_Term_quoteAutoTactic___closed__28;
|
||||
|
|
@ -374,7 +376,6 @@ lean_object* l_Lean_Elab_Term_expandMatchAltsWhereDecls_loop_match__1___rarg(lea
|
|||
lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_FunBinders_elabFunBinderViews_match__1(lean_object*);
|
||||
lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandMatchAltsIntoMatchAux___spec__2(lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*);
|
||||
lean_object* l_Lean_Elab_Term_elabArrow(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_18175____closed__2;
|
||||
lean_object* l_Lean_Elab_Term_checkBinderAnnotations;
|
||||
lean_object* l_Lean_Syntax_getSepArgs(lean_object*);
|
||||
lean_object* l_Lean_Elab_Term_FunBinders_State_expectedType_x3f___default;
|
||||
|
|
@ -480,6 +481,7 @@ lean_object* l_Lean_Elab_Term_quoteAutoTactic___closed__17;
|
|||
lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Binders_0__Lean_Elab_Term_getFunBinderIds_x3f___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
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*);
|
||||
extern lean_object* l_prec_x28___x29___closed__3;
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21281____closed__3;
|
||||
lean_object* l_Lean_Syntax_getArg(lean_object*, lean_object*);
|
||||
extern lean_object* l_myMacro____x40_Init_Notation___hyg_15342____closed__10;
|
||||
extern lean_object* l_Lean_mkOptionalNode___closed__2;
|
||||
|
|
@ -514,7 +516,6 @@ extern lean_object* l_Lean_Parser_Term_forall___elambda__1___closed__1;
|
|||
lean_object* l_Lean_indentExpr(lean_object*);
|
||||
lean_object* l_Lean_Elab_Term_FunBinders_State_fvars___default;
|
||||
lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandBinderModifier___closed__7;
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21307____closed__2;
|
||||
lean_object* l___regBuiltin_Lean_Elab_Term_elabLetFunDecl(lean_object*);
|
||||
lean_object* l_Lean_Meta_setPostponed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_mkConst(lean_object*, lean_object*);
|
||||
|
|
@ -526,7 +527,6 @@ lean_object* l_Lean_mkFreshId___at___private_Lean_Elab_Binders_0__Lean_Elab_Term
|
|||
lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_getMatchAltsNumPatterns___boxed(lean_object*);
|
||||
extern lean_object* l_myMacro____x40_Init_Notation___hyg_15342____closed__11;
|
||||
lean_object* l___regBuiltin_Lean_Elab_Term_elabLetDecl___closed__1;
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21307____closed__1;
|
||||
lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_FunBinders_propagateExpectedType_match__1___rarg(lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Elab_Term_precheckFun(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Binders_0__Lean_Elab_Term_matchBinder___spec__3(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
|
|
@ -18812,7 +18812,7 @@ lean_ctor_set(x_21, 0, x_19);
|
|||
lean_ctor_set(x_21, 1, x_20);
|
||||
x_22 = l_Array_empty___closed__1;
|
||||
x_23 = lean_array_push(x_22, x_21);
|
||||
x_24 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21307____closed__3;
|
||||
x_24 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21281____closed__3;
|
||||
lean_inc(x_19);
|
||||
x_25 = lean_alloc_ctor(2, 2, 0);
|
||||
lean_ctor_set(x_25, 0, x_19);
|
||||
|
|
@ -18833,7 +18833,7 @@ x_34 = lean_alloc_ctor(1, 2, 0);
|
|||
lean_ctor_set(x_34, 0, x_33);
|
||||
lean_ctor_set(x_34, 1, x_32);
|
||||
x_35 = lean_array_push(x_22, x_34);
|
||||
x_36 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21307____closed__1;
|
||||
x_36 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21281____closed__1;
|
||||
x_37 = lean_alloc_ctor(1, 2, 0);
|
||||
lean_ctor_set(x_37, 0, x_36);
|
||||
lean_ctor_set(x_37, 1, x_35);
|
||||
|
|
@ -18848,7 +18848,7 @@ lean_ctor_set(x_42, 0, x_33);
|
|||
lean_ctor_set(x_42, 1, x_41);
|
||||
x_43 = lean_array_push(x_38, x_42);
|
||||
x_44 = lean_array_push(x_43, x_2);
|
||||
x_45 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21307____closed__2;
|
||||
x_45 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21281____closed__2;
|
||||
x_46 = lean_alloc_ctor(1, 2, 0);
|
||||
lean_ctor_set(x_46, 0, x_45);
|
||||
lean_ctor_set(x_46, 1, x_44);
|
||||
|
|
@ -18870,7 +18870,7 @@ lean_ctor_set(x_50, 0, x_47);
|
|||
lean_ctor_set(x_50, 1, x_49);
|
||||
x_51 = l_Array_empty___closed__1;
|
||||
x_52 = lean_array_push(x_51, x_50);
|
||||
x_53 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21307____closed__3;
|
||||
x_53 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21281____closed__3;
|
||||
lean_inc(x_47);
|
||||
x_54 = lean_alloc_ctor(2, 2, 0);
|
||||
lean_ctor_set(x_54, 0, x_47);
|
||||
|
|
@ -18891,7 +18891,7 @@ x_63 = lean_alloc_ctor(1, 2, 0);
|
|||
lean_ctor_set(x_63, 0, x_62);
|
||||
lean_ctor_set(x_63, 1, x_61);
|
||||
x_64 = lean_array_push(x_51, x_63);
|
||||
x_65 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21307____closed__1;
|
||||
x_65 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21281____closed__1;
|
||||
x_66 = lean_alloc_ctor(1, 2, 0);
|
||||
lean_ctor_set(x_66, 0, x_65);
|
||||
lean_ctor_set(x_66, 1, x_64);
|
||||
|
|
@ -18906,7 +18906,7 @@ lean_ctor_set(x_71, 0, x_62);
|
|||
lean_ctor_set(x_71, 1, x_70);
|
||||
x_72 = lean_array_push(x_67, x_71);
|
||||
x_73 = lean_array_push(x_72, x_2);
|
||||
x_74 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21307____closed__2;
|
||||
x_74 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21281____closed__2;
|
||||
x_75 = lean_alloc_ctor(1, 2, 0);
|
||||
lean_ctor_set(x_75, 0, x_74);
|
||||
lean_ctor_set(x_75, 1, x_73);
|
||||
|
|
@ -19320,7 +19320,7 @@ x_104 = lean_alloc_ctor(1, 2, 0);
|
|||
lean_ctor_set(x_104, 0, x_94);
|
||||
lean_ctor_set(x_104, 1, x_103);
|
||||
x_105 = lean_array_push(x_30, x_104);
|
||||
x_106 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__2;
|
||||
x_106 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__2;
|
||||
x_107 = lean_alloc_ctor(1, 2, 0);
|
||||
lean_ctor_set(x_107, 0, x_106);
|
||||
lean_ctor_set(x_107, 1, x_105);
|
||||
|
|
@ -19362,7 +19362,7 @@ x_124 = lean_alloc_ctor(1, 2, 0);
|
|||
lean_ctor_set(x_124, 0, x_114);
|
||||
lean_ctor_set(x_124, 1, x_123);
|
||||
x_125 = lean_array_push(x_30, x_124);
|
||||
x_126 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__2;
|
||||
x_126 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__2;
|
||||
x_127 = lean_alloc_ctor(1, 2, 0);
|
||||
lean_ctor_set(x_127, 0, x_126);
|
||||
lean_ctor_set(x_127, 1, x_125);
|
||||
|
|
@ -19549,7 +19549,7 @@ x_202 = lean_alloc_ctor(1, 2, 0);
|
|||
lean_ctor_set(x_202, 0, x_192);
|
||||
lean_ctor_set(x_202, 1, x_201);
|
||||
x_203 = lean_array_push(x_148, x_202);
|
||||
x_204 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__2;
|
||||
x_204 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__2;
|
||||
x_205 = lean_alloc_ctor(1, 2, 0);
|
||||
lean_ctor_set(x_205, 0, x_204);
|
||||
lean_ctor_set(x_205, 1, x_203);
|
||||
|
|
@ -19764,7 +19764,7 @@ x_285 = lean_alloc_ctor(1, 2, 0);
|
|||
lean_ctor_set(x_285, 0, x_275);
|
||||
lean_ctor_set(x_285, 1, x_284);
|
||||
x_286 = lean_array_push(x_231, x_285);
|
||||
x_287 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__2;
|
||||
x_287 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__2;
|
||||
x_288 = lean_alloc_ctor(1, 2, 0);
|
||||
lean_ctor_set(x_288, 0, x_287);
|
||||
lean_ctor_set(x_288, 1, x_286);
|
||||
|
|
|
|||
138
stage0/stdlib/Lean/Elab/BuiltinNotation.c
generated
138
stage0/stdlib/Lean/Elab/BuiltinNotation.c
generated
|
|
@ -26,7 +26,6 @@ size_t l_USize_add(size_t, size_t);
|
|||
extern lean_object* l_Lean_Parser_Syntax_addPrec___closed__4;
|
||||
lean_object* l_List_forM___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabTermAux___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Elab_Term_expandUnreachable___rarg___closed__2;
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21102____closed__4;
|
||||
lean_object* l_Lean_Elab_Term_mkPairs_loop___closed__5;
|
||||
lean_object* l_Lean_stringToMessageData(lean_object*);
|
||||
extern lean_object* l_instReprOption___rarg___closed__1;
|
||||
|
|
@ -36,6 +35,7 @@ lean_object* l_Lean_Elab_Term_expandSuffices___lambda__2___closed__3;
|
|||
lean_object* l_Lean_Elab_getRefPos___at_Lean_Elab_Term_elabPanic___spec__2(lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Elab_Term_elabAnonymousCtor___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_mkSort(lean_object*);
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20507____closed__3;
|
||||
lean_object* l_Std_fmt___at_Lean_Position_instToFormatPosition___spec__1(lean_object*);
|
||||
lean_object* l_Lean_Syntax_getHeadInfo_x3f(lean_object*);
|
||||
extern lean_object* l_instReprSigma___rarg___closed__2;
|
||||
|
|
@ -43,6 +43,7 @@ lean_object* l_Lean_Elab_Term_expandSuffices___lambda__1___boxed(lean_object*, l
|
|||
lean_object* l_Lean_Elab_Term_expandHave___closed__2;
|
||||
lean_object* l_Lean_Elab_Term_expandDbgTrace___closed__4;
|
||||
extern lean_object* l_Lean_nullKind;
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21076____closed__4;
|
||||
lean_object* l_Lean_Elab_Term_elabAnonymousCtor___closed__2;
|
||||
lean_object* lean_name_mk_string(lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Term_elabCDotFunctionAlias_x3f___spec__5___rarg(lean_object*);
|
||||
|
|
@ -58,6 +59,7 @@ lean_object* l___regBuiltin_Lean_Elab_Term_expandAssert___closed__1;
|
|||
extern lean_object* l_myMacro____x40_Init_Notation___hyg_2278____closed__2;
|
||||
lean_object* l_Array_append___rarg(lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Elab_Term_getDeclName_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
extern lean_object* l_myMacro____x40_Init_Notation___hyg_23692____closed__3;
|
||||
extern lean_object* l_Lean_Elab_throwUnsupportedSyntax___rarg___closed__1;
|
||||
lean_object* l_Lean_Elab_Term_elabAnonymousCtor___lambda__3___closed__2;
|
||||
lean_object* l_Lean_Elab_Term_elabAnonymousCtor___closed__1;
|
||||
|
|
@ -74,7 +76,6 @@ lean_object* l_Lean_Elab_Term_elabSorry(lean_object*, lean_object*, lean_object*
|
|||
lean_object* l_Lean_Elab_liftMacroM___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
extern lean_object* l_myMacro____x40_Init_Notation___hyg_16268____closed__8;
|
||||
lean_object* l_Lean_Elab_Term_expandHave___lambda__10___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
extern lean_object* l_myMacro____x40_Init_Notation___hyg_23708____closed__3;
|
||||
extern lean_object* l_Lean_Parser_Term_subst___elambda__1___closed__1;
|
||||
extern lean_object* l_Lean_Parser_Term_unreachable___elambda__1___closed__2;
|
||||
uint8_t l_Lean_Syntax_structEq(lean_object*, lean_object*);
|
||||
|
|
@ -128,15 +129,12 @@ 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;
|
||||
lean_object* l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserMacroAux___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21102____closed__1;
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21102____closed__2;
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__3;
|
||||
lean_object* l___regBuiltin_Lean_Elab_Term_elabParen(lean_object*);
|
||||
lean_object* l_Lean_Elab_Term_expandDbgTrace___boxed(lean_object*, lean_object*, lean_object*);
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20533____closed__1;
|
||||
lean_object* l_Lean_Elab_Term_mkPairs_loop___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l___regBuiltin_Lean_Elab_Term_elabSorry(lean_object*);
|
||||
lean_object* l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabTParserMacroAux___closed__9;
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21076____closed__1;
|
||||
lean_object* l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserMacroAux___lambda__1___closed__17;
|
||||
lean_object* l_Lean_Elab_Term_expandDbgTrace___closed__1;
|
||||
lean_object* l_Lean_Elab_Term_elabAnonymousCtor_match__2___rarg(lean_object*, lean_object*, lean_object*);
|
||||
|
|
@ -149,6 +147,7 @@ extern lean_object* l_Lean_Parser_Term_tupleTail___elambda__1___closed__2;
|
|||
extern lean_object* l_Lean_Parser_Term_noindex___elambda__1___closed__2;
|
||||
lean_object* l_Lean_Elab_Term_expandHave___lambda__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21076____closed__2;
|
||||
lean_object* l_Lean_Elab_Term_getMainModule___rarg(lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Elab_Term_elabAnonymousCtor___closed__6;
|
||||
extern lean_object* l_myMacro____x40_Init_Notation___hyg_1481____closed__8;
|
||||
|
|
@ -213,6 +212,8 @@ lean_object* lean_nat_sub(lean_object*, lean_object*);
|
|||
lean_object* l_Lean_Elab_Term_expandShow___boxed(lean_object*, lean_object*, lean_object*);
|
||||
extern lean_object* l_Lean_instQuoteProd___rarg___closed__2;
|
||||
lean_object* l_Lean_Elab_Term_expandDbgTrace(lean_object*, lean_object*, lean_object*);
|
||||
extern lean_object* l_myMacro____x40_Init_Notation___hyg_23692____closed__2;
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20705____closed__2;
|
||||
lean_object* l_Lean_Elab_Term_elabTrailingParserMacro(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___lambda__3___closed__3;
|
||||
lean_object* l_Lean_Elab_Term_mkPairs_loop___closed__1;
|
||||
|
|
@ -230,6 +231,7 @@ lean_object* l_Lean_Elab_Term_elabTerm(lean_object*, lean_object*, uint8_t, uint
|
|||
lean_object* l_Lean_Elab_Term_elabStateRefT___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Elab_Term_expandUnreachable(lean_object*);
|
||||
lean_object* l_Lean_Elab_Term_mkInstMVar(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_20311____closed__3;
|
||||
extern lean_object* l_Lean_Meta_mkArrow___closed__2;
|
||||
lean_object* l_Lean_replaceRef(lean_object*, lean_object*);
|
||||
lean_object* lean_array_get(lean_object*, lean_object*, lean_object*);
|
||||
|
|
@ -244,9 +246,9 @@ lean_object* l_Lean_Elab_Term_elabAnonymousCtor___closed__4;
|
|||
lean_object* l_Lean_Elab_Term_expandHave___lambda__1___boxed(lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserMacroAux_match__2(lean_object*);
|
||||
lean_object* l_Lean_throwErrorAt___at_Lean_Elab_Term_elabCDotFunctionAlias_x3f___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18784____closed__2;
|
||||
lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Term_elabCDotFunctionAlias_x3f___spec__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l___regBuiltin_Lean_Elab_Term_expandSuffices(lean_object*);
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18810____closed__2;
|
||||
lean_object* l_Lean_Elab_Term_elabNoindex(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Elab_Term_elabPanic___closed__5;
|
||||
lean_object* l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserMacroAux___lambda__1___closed__6;
|
||||
|
|
@ -255,7 +257,6 @@ lean_object* l_Lean_Elab_Term_mkPairs_loop___closed__3;
|
|||
lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_Elab_Term_expandCDot_x3f_go___spec__2(lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Elab_Term_expandDbgTrace___closed__3;
|
||||
extern lean_object* l_Lean_strLitKind___closed__2;
|
||||
extern lean_object* l_myMacro____x40_Init_Notation___hyg_23708____closed__2;
|
||||
lean_object* l_Lean_Elab_Term_elabAnonymousCtor___closed__8;
|
||||
extern lean_object* l_Lean_instQuoteBool___closed__3;
|
||||
lean_object* l___regBuiltin_Lean_Elab_Term_elabAnonymousCtor(lean_object*);
|
||||
|
|
@ -322,8 +323,10 @@ extern lean_object* l_Lean_Syntax_mkAntiquotNode___closed__9;
|
|||
extern lean_object* l_term___x2b_x2b_____closed__2;
|
||||
lean_object* l_Lean_Elab_Term_expandHave___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l___regBuiltin_Lean_Elab_Term_elabSorry___closed__1;
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21076____closed__3;
|
||||
lean_object* l_Lean_Elab_Term_elabAnonymousCtor___closed__10;
|
||||
extern lean_object* l_Lean_Parser_Term_cdot___elambda__1___closed__2;
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21076____closed__5;
|
||||
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_Lean_Elab_Term_elabCDotFunctionAlias_x3f_match__1(lean_object*);
|
||||
lean_object* l_Lean_addMacroScope(lean_object*, lean_object*, lean_object*);
|
||||
|
|
@ -340,20 +343,19 @@ lean_object* l_Lean_Elab_Term_expandHave___lambda__4(lean_object*, lean_object*,
|
|||
uint8_t l_List_beq___at___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserMacroAux___spec__1(lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Elab_Term_elabAnonymousCtor_match__2(lean_object*);
|
||||
lean_object* l_Lean_Meta_matchEq_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21102____closed__5;
|
||||
extern lean_object* l_Lean_Elab_Term_termElabAttribute;
|
||||
extern lean_object* l_myMacro____x40_Init_Data_ToString_Macro___hyg_23____closed__13;
|
||||
lean_object* l_Lean_Elab_Term_expandSuffices___lambda__2___closed__2;
|
||||
extern lean_object* l_myMacro____x40_Init_NotationExtra___hyg_5248____closed__6;
|
||||
extern lean_object* l_Lean_Parser_Term_dbgTrace___elambda__1___closed__2;
|
||||
uint8_t l_Lean_Syntax_isNodeOf(lean_object*, lean_object*, lean_object*);
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21102____closed__3;
|
||||
lean_object* l_Lean_Elab_Term_elabStateRefT___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Elab_Term_expandHave(lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_hasCDot___boxed(lean_object*);
|
||||
lean_object* l_Lean_Syntax_getPos_x3f(lean_object*, uint8_t);
|
||||
extern lean_object* l_Lean_Syntax_mkApp___closed__1;
|
||||
lean_object* l_Lean_Elab_Term_elabPanic(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_20507____closed__1;
|
||||
lean_object* l_Lean_Elab_Term_expandSuffices___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Array_mapMUnsafe_map___at_myMacro____x40_Init_NotationExtra___hyg_5248____spec__3(size_t, size_t, lean_object*);
|
||||
lean_object* l_Lean_Elab_Term_elabLeadingParserMacro___lambda__1___closed__2;
|
||||
|
|
@ -369,10 +371,8 @@ lean_object* l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabTParser
|
|||
lean_object* l___regBuiltin_Lean_Elab_Term_expandShow(lean_object*);
|
||||
extern lean_object* l_Lean_Elab_macroAttribute;
|
||||
lean_object* lean_environment_main_module(lean_object*);
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__2;
|
||||
lean_object* l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserMacroAux___closed__5;
|
||||
lean_object* l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserMacroAux___closed__14;
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__8;
|
||||
extern lean_object* l_myMacro____x40_Init_Notation___hyg_16821____closed__4;
|
||||
lean_object* l_Lean_Elab_getRefPos___at_Lean_Elab_Term_elabPanic___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
uint8_t lean_nat_dec_le(lean_object*, lean_object*);
|
||||
|
|
@ -399,15 +399,16 @@ lean_object* l_Lean_Elab_Term_expandHave___lambda__11___boxed(lean_object*, lean
|
|||
extern lean_object* l_myMacro____x40_Init_Data_ToString_Macro___hyg_23____closed__8;
|
||||
lean_object* l___private_Lean_Elab_SyntheticMVars_0__Lean_Elab_Term_withSynthesizeImp___rarg(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l___regBuiltin_Lean_Elab_Term_elabSubst(lean_object*);
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__8;
|
||||
lean_object* l_Lean_getConstInfoCtor___at_Lean_Elab_Term_elabAnonymousCtor___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Elab_Term_adaptExpander___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_20507____closed__2;
|
||||
lean_object* l_Lean_Elab_Term_elabSorry___closed__5;
|
||||
lean_object* l_Lean_Elab_Term_elabSorry___closed__3;
|
||||
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_Array_ofSubarray___rarg(lean_object*);
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20533____closed__3;
|
||||
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*);
|
||||
extern lean_object* l_Lean_Syntax_expandInterpolatedStr___lambda__1___closed__1;
|
||||
extern lean_object* l_myMacro____x40_Init_Notation___hyg_16268____closed__9;
|
||||
|
|
@ -427,7 +428,6 @@ extern lean_object* l_Lean_getConstInfoCtor___rarg___lambda__1___closed__2;
|
|||
lean_object* l_Lean_Elab_Term_elabPanic___closed__8;
|
||||
extern lean_object* l_Lean_Meta_throwLetTypeMismatchMessage___rarg___closed__7;
|
||||
uint8_t l_Lean_Syntax_isNone(lean_object*);
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20731____closed__2;
|
||||
lean_object* l_Lean_Meta_inferType(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_expandMacros(lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Elab_Term_expandParen___closed__1;
|
||||
|
|
@ -465,15 +465,17 @@ lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Term_elabCDotFunc
|
|||
lean_object* l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserMacroAux___lambda__1___closed__14;
|
||||
extern lean_object* l_myMacro____x40_Init_Notation___hyg_16821____closed__5;
|
||||
lean_object* l_Lean_Elab_Term_mkPairs___boxed(lean_object*, lean_object*, lean_object*);
|
||||
extern lean_object* l_myMacro____x40_Init_Notation___hyg_23692____closed__1;
|
||||
extern lean_object* l_prec_x28___x29___closed__7;
|
||||
extern lean_object* l_myMacro____x40_Init_Notation___hyg_16821____closed__3;
|
||||
lean_object* l_Lean_Elab_Term_expandParen___closed__4;
|
||||
lean_object* l_Lean_Elab_Term_elabSubst___closed__2;
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__2;
|
||||
lean_object* l___regBuiltin_Lean_Elab_Term_elabTrailingParserMacro___closed__1;
|
||||
lean_object* l_Lean_Elab_throwUnsupportedSyntax___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabTermAux___spec__6___rarg(lean_object*);
|
||||
extern lean_object* l_myMacro____x40_Init_Notation___hyg_2278____closed__4;
|
||||
lean_object* l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserMacroAux___closed__8;
|
||||
extern lean_object* l_myMacro____x40_Init_Notation___hyg_23708____closed__1;
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__3;
|
||||
lean_object* l_Lean_Elab_Term_mkPairs(lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Elab_Term_elabAnonymousCtor___closed__5;
|
||||
lean_object* l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_hasCDot_match__1(lean_object*);
|
||||
|
|
@ -527,7 +529,6 @@ lean_object* l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabTParser
|
|||
lean_object* l_Lean_Elab_Term_elabSubst(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l___regBuiltin_Lean_Elab_Term_expandDbgTrace(lean_object*);
|
||||
lean_object* l___private_Lean_Elab_BuiltinNotation_0__Lean_Elab_Term_elabParserMacroAux(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_20533____closed__2;
|
||||
lean_object* l_Lean_Meta_forallTelescopeReducing___at_Lean_Elab_Term_elabAnonymousCtor___spec__4(lean_object*);
|
||||
lean_object* l_Lean_Elab_getRefPosition___at_Lean_Elab_Term_elabPanic___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l___regBuiltin_Lean_Elab_Term_elabBorrowed___closed__1;
|
||||
|
|
@ -551,7 +552,6 @@ extern lean_object* l_myMacro____x40_Init_Notation___hyg_16821____closed__6;
|
|||
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_Lean_throwError___at_Lean_Elab_Term_synthesizeInst___spec__1(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_20337____closed__3;
|
||||
extern lean_object* l_Lean_Parser_Term_stateRefT___elambda__1___closed__2;
|
||||
lean_object* l_Lean_Elab_Term_elabAnonymousCtor_match__1(lean_object*);
|
||||
lean_object* l_Lean_Elab_Term_elabPanic___closed__4;
|
||||
|
|
@ -2061,7 +2061,7 @@ lean_object* l_Lean_Elab_Term_expandShow(lean_object* x_1, lean_object* x_2, lea
|
|||
_start:
|
||||
{
|
||||
lean_object* x_4; uint8_t x_5;
|
||||
x_4 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21102____closed__2;
|
||||
x_4 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21076____closed__2;
|
||||
lean_inc(x_1);
|
||||
x_5 = l_Lean_Syntax_isOfKind(x_1, x_4);
|
||||
if (x_5 == 0)
|
||||
|
|
@ -2081,14 +2081,14 @@ x_8 = lean_unsigned_to_nat(1u);
|
|||
x_9 = l_Lean_Syntax_getArg(x_1, x_8);
|
||||
x_10 = lean_unsigned_to_nat(2u);
|
||||
x_11 = l_Lean_Syntax_getArg(x_1, x_10);
|
||||
x_12 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21102____closed__4;
|
||||
x_12 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21076____closed__4;
|
||||
lean_inc(x_11);
|
||||
x_13 = l_Lean_Syntax_isOfKind(x_11, x_12);
|
||||
if (x_13 == 0)
|
||||
{
|
||||
lean_object* x_14; uint8_t x_15;
|
||||
lean_dec(x_1);
|
||||
x_14 = l_myMacro____x40_Init_Notation___hyg_23708____closed__2;
|
||||
x_14 = l_myMacro____x40_Init_Notation___hyg_23692____closed__2;
|
||||
lean_inc(x_11);
|
||||
x_15 = l_Lean_Syntax_isOfKind(x_11, x_14);
|
||||
if (x_15 == 0)
|
||||
|
|
@ -2109,7 +2109,7 @@ x_18 = lean_unsigned_to_nat(0u);
|
|||
x_19 = l_Lean_Syntax_getArg(x_11, x_18);
|
||||
x_20 = l_Lean_Syntax_getArg(x_11, x_8);
|
||||
lean_dec(x_11);
|
||||
x_21 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__3;
|
||||
x_21 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__3;
|
||||
lean_inc(x_20);
|
||||
x_22 = l_Lean_Syntax_isOfKind(x_20, x_21);
|
||||
if (x_22 == 0)
|
||||
|
|
@ -2133,7 +2133,7 @@ if (x_26 == 0)
|
|||
{
|
||||
lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36;
|
||||
x_27 = lean_ctor_get(x_25, 0);
|
||||
x_28 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21102____closed__1;
|
||||
x_28 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21076____closed__1;
|
||||
lean_inc(x_27);
|
||||
x_29 = lean_alloc_ctor(2, 2, 0);
|
||||
lean_ctor_set(x_29, 0, x_27);
|
||||
|
|
@ -2141,7 +2141,7 @@ lean_ctor_set(x_29, 1, x_28);
|
|||
x_30 = l_Array_empty___closed__1;
|
||||
x_31 = lean_array_push(x_30, x_29);
|
||||
x_32 = lean_array_push(x_31, x_9);
|
||||
x_33 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21102____closed__5;
|
||||
x_33 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21076____closed__5;
|
||||
lean_inc(x_27);
|
||||
x_34 = lean_alloc_ctor(2, 2, 0);
|
||||
lean_ctor_set(x_34, 0, x_27);
|
||||
|
|
@ -2152,7 +2152,7 @@ lean_dec(x_19);
|
|||
if (lean_obj_tag(x_36) == 0)
|
||||
{
|
||||
lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45;
|
||||
x_37 = l_myMacro____x40_Init_Notation___hyg_23708____closed__3;
|
||||
x_37 = l_myMacro____x40_Init_Notation___hyg_23692____closed__3;
|
||||
x_38 = lean_alloc_ctor(2, 2, 0);
|
||||
lean_ctor_set(x_38, 0, x_27);
|
||||
lean_ctor_set(x_38, 1, x_37);
|
||||
|
|
@ -2179,7 +2179,7 @@ lean_dec(x_27);
|
|||
x_46 = lean_ctor_get(x_36, 0);
|
||||
lean_inc(x_46);
|
||||
lean_dec(x_36);
|
||||
x_47 = l_myMacro____x40_Init_Notation___hyg_23708____closed__3;
|
||||
x_47 = l_myMacro____x40_Init_Notation___hyg_23692____closed__3;
|
||||
x_48 = lean_alloc_ctor(2, 2, 0);
|
||||
lean_ctor_set(x_48, 0, x_46);
|
||||
lean_ctor_set(x_48, 1, x_47);
|
||||
|
|
@ -2208,7 +2208,7 @@ x_57 = lean_ctor_get(x_25, 1);
|
|||
lean_inc(x_57);
|
||||
lean_inc(x_56);
|
||||
lean_dec(x_25);
|
||||
x_58 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21102____closed__1;
|
||||
x_58 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21076____closed__1;
|
||||
lean_inc(x_56);
|
||||
x_59 = lean_alloc_ctor(2, 2, 0);
|
||||
lean_ctor_set(x_59, 0, x_56);
|
||||
|
|
@ -2216,7 +2216,7 @@ lean_ctor_set(x_59, 1, x_58);
|
|||
x_60 = l_Array_empty___closed__1;
|
||||
x_61 = lean_array_push(x_60, x_59);
|
||||
x_62 = lean_array_push(x_61, x_9);
|
||||
x_63 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21102____closed__5;
|
||||
x_63 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21076____closed__5;
|
||||
lean_inc(x_56);
|
||||
x_64 = lean_alloc_ctor(2, 2, 0);
|
||||
lean_ctor_set(x_64, 0, x_56);
|
||||
|
|
@ -2227,7 +2227,7 @@ lean_dec(x_19);
|
|||
if (lean_obj_tag(x_66) == 0)
|
||||
{
|
||||
lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76;
|
||||
x_67 = l_myMacro____x40_Init_Notation___hyg_23708____closed__3;
|
||||
x_67 = l_myMacro____x40_Init_Notation___hyg_23692____closed__3;
|
||||
x_68 = lean_alloc_ctor(2, 2, 0);
|
||||
lean_ctor_set(x_68, 0, x_56);
|
||||
lean_ctor_set(x_68, 1, x_67);
|
||||
|
|
@ -2256,7 +2256,7 @@ lean_dec(x_56);
|
|||
x_77 = lean_ctor_get(x_66, 0);
|
||||
lean_inc(x_77);
|
||||
lean_dec(x_66);
|
||||
x_78 = l_myMacro____x40_Init_Notation___hyg_23708____closed__3;
|
||||
x_78 = l_myMacro____x40_Init_Notation___hyg_23692____closed__3;
|
||||
x_79 = lean_alloc_ctor(2, 2, 0);
|
||||
lean_ctor_set(x_79, 0, x_77);
|
||||
lean_ctor_set(x_79, 1, x_78);
|
||||
|
|
@ -2456,7 +2456,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_21102____closed__2;
|
||||
x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21076____closed__2;
|
||||
x_4 = l___regBuiltin_Lean_Elab_Term_expandShow___closed__1;
|
||||
x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1);
|
||||
return x_5;
|
||||
|
|
@ -2939,14 +2939,14 @@ if (lean_is_exclusive(x_15)) {
|
|||
lean_dec_ref(x_15);
|
||||
x_18 = lean_box(0);
|
||||
}
|
||||
x_19 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__2;
|
||||
x_19 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__2;
|
||||
lean_inc(x_16);
|
||||
x_20 = lean_alloc_ctor(2, 2, 0);
|
||||
lean_ctor_set(x_20, 0, x_16);
|
||||
lean_ctor_set(x_20, 1, x_19);
|
||||
x_21 = l_Array_empty___closed__1;
|
||||
x_22 = lean_array_push(x_21, x_20);
|
||||
x_23 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21102____closed__5;
|
||||
x_23 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21076____closed__5;
|
||||
lean_inc(x_16);
|
||||
x_24 = lean_alloc_ctor(2, 2, 0);
|
||||
lean_ctor_set(x_24, 0, x_16);
|
||||
|
|
@ -2998,7 +2998,7 @@ x_36 = lean_array_push(x_35, x_3);
|
|||
if (lean_obj_tag(x_26) == 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; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50;
|
||||
x_37 = l_myMacro____x40_Init_Notation___hyg_23708____closed__3;
|
||||
x_37 = l_myMacro____x40_Init_Notation___hyg_23692____closed__3;
|
||||
x_38 = lean_alloc_ctor(2, 2, 0);
|
||||
lean_ctor_set(x_38, 0, x_16);
|
||||
lean_ctor_set(x_38, 1, x_37);
|
||||
|
|
@ -3037,7 +3037,7 @@ lean_dec(x_16);
|
|||
x_51 = lean_ctor_get(x_26, 0);
|
||||
lean_inc(x_51);
|
||||
lean_dec(x_26);
|
||||
x_52 = l_myMacro____x40_Init_Notation___hyg_23708____closed__3;
|
||||
x_52 = l_myMacro____x40_Init_Notation___hyg_23692____closed__3;
|
||||
x_53 = lean_alloc_ctor(2, 2, 0);
|
||||
lean_ctor_set(x_53, 0, x_51);
|
||||
lean_ctor_set(x_53, 1, x_52);
|
||||
|
|
@ -3193,7 +3193,7 @@ x_17 = lean_unsigned_to_nat(1u);
|
|||
x_18 = l_Lean_Syntax_getArg(x_1, x_17);
|
||||
x_19 = lean_unsigned_to_nat(2u);
|
||||
x_20 = l_Lean_Syntax_getArg(x_1, x_19);
|
||||
x_21 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21102____closed__3;
|
||||
x_21 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21076____closed__3;
|
||||
lean_inc(x_2);
|
||||
x_22 = lean_name_mk_string(x_2, x_21);
|
||||
lean_inc(x_20);
|
||||
|
|
@ -3201,7 +3201,7 @@ x_23 = l_Lean_Syntax_isOfKind(x_20, x_22);
|
|||
if (x_23 == 0)
|
||||
{
|
||||
lean_object* x_24; lean_object* x_25; uint8_t x_26;
|
||||
x_24 = l_myMacro____x40_Init_Notation___hyg_23708____closed__1;
|
||||
x_24 = l_myMacro____x40_Init_Notation___hyg_23692____closed__1;
|
||||
lean_inc(x_2);
|
||||
x_25 = lean_name_mk_string(x_2, x_24);
|
||||
lean_inc(x_20);
|
||||
|
|
@ -3251,7 +3251,7 @@ if (x_37 == 0)
|
|||
{
|
||||
lean_object* x_38; lean_object* x_39; uint8_t x_40;
|
||||
lean_dec(x_7);
|
||||
x_38 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20533____closed__2;
|
||||
x_38 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20507____closed__2;
|
||||
x_39 = lean_name_mk_string(x_2, x_38);
|
||||
lean_inc(x_20);
|
||||
x_40 = l_Lean_Syntax_isOfKind(x_20, x_39);
|
||||
|
|
@ -3313,7 +3313,7 @@ else
|
|||
{
|
||||
lean_object* x_52; lean_object* x_53; uint8_t x_54;
|
||||
lean_dec(x_6);
|
||||
x_52 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20533____closed__2;
|
||||
x_52 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20507____closed__2;
|
||||
x_53 = lean_name_mk_string(x_2, x_52);
|
||||
lean_inc(x_20);
|
||||
x_54 = l_Lean_Syntax_isOfKind(x_20, x_53);
|
||||
|
|
@ -3401,7 +3401,7 @@ return x_71;
|
|||
else
|
||||
{
|
||||
lean_object* x_72; lean_object* x_73; uint8_t x_74;
|
||||
x_72 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20533____closed__2;
|
||||
x_72 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20507____closed__2;
|
||||
x_73 = lean_name_mk_string(x_2, x_72);
|
||||
lean_inc(x_20);
|
||||
x_74 = l_Lean_Syntax_isOfKind(x_20, x_73);
|
||||
|
|
@ -3521,7 +3521,7 @@ if (x_103 == 0)
|
|||
{
|
||||
lean_object* x_104; lean_object* x_105; uint8_t x_106;
|
||||
lean_dec(x_7);
|
||||
x_104 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20533____closed__2;
|
||||
x_104 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20507____closed__2;
|
||||
x_105 = lean_name_mk_string(x_2, x_104);
|
||||
lean_inc(x_20);
|
||||
x_106 = l_Lean_Syntax_isOfKind(x_20, x_105);
|
||||
|
|
@ -3583,7 +3583,7 @@ else
|
|||
{
|
||||
lean_object* x_118; lean_object* x_119; uint8_t x_120;
|
||||
lean_dec(x_6);
|
||||
x_118 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20533____closed__2;
|
||||
x_118 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20507____closed__2;
|
||||
x_119 = lean_name_mk_string(x_2, x_118);
|
||||
lean_inc(x_20);
|
||||
x_120 = l_Lean_Syntax_isOfKind(x_20, x_119);
|
||||
|
|
@ -3670,7 +3670,7 @@ return x_136;
|
|||
else
|
||||
{
|
||||
lean_object* x_137; lean_object* x_138; uint8_t x_139;
|
||||
x_137 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20533____closed__2;
|
||||
x_137 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20507____closed__2;
|
||||
x_138 = lean_name_mk_string(x_2, x_137);
|
||||
lean_inc(x_20);
|
||||
x_139 = l_Lean_Syntax_isOfKind(x_20, x_138);
|
||||
|
|
@ -3786,7 +3786,7 @@ if (x_162 == 0)
|
|||
{
|
||||
lean_object* x_163; lean_object* x_164; uint8_t x_165;
|
||||
lean_dec(x_7);
|
||||
x_163 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20533____closed__2;
|
||||
x_163 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20507____closed__2;
|
||||
x_164 = lean_name_mk_string(x_2, x_163);
|
||||
lean_inc(x_20);
|
||||
x_165 = l_Lean_Syntax_isOfKind(x_20, x_164);
|
||||
|
|
@ -3848,7 +3848,7 @@ else
|
|||
{
|
||||
lean_object* x_177; lean_object* x_178; uint8_t x_179;
|
||||
lean_dec(x_6);
|
||||
x_177 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20533____closed__2;
|
||||
x_177 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20507____closed__2;
|
||||
x_178 = lean_name_mk_string(x_2, x_177);
|
||||
lean_inc(x_20);
|
||||
x_179 = l_Lean_Syntax_isOfKind(x_20, x_178);
|
||||
|
|
@ -3935,7 +3935,7 @@ return x_195;
|
|||
else
|
||||
{
|
||||
lean_object* x_196; lean_object* x_197; uint8_t x_198;
|
||||
x_196 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20533____closed__2;
|
||||
x_196 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20507____closed__2;
|
||||
x_197 = lean_name_mk_string(x_2, x_196);
|
||||
lean_inc(x_20);
|
||||
x_198 = l_Lean_Syntax_isOfKind(x_20, x_197);
|
||||
|
|
@ -4090,7 +4090,7 @@ if (x_227 == 0)
|
|||
{
|
||||
lean_object* x_228; lean_object* x_229; uint8_t x_230;
|
||||
lean_dec(x_7);
|
||||
x_228 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20533____closed__2;
|
||||
x_228 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20507____closed__2;
|
||||
x_229 = lean_name_mk_string(x_2, x_228);
|
||||
lean_inc(x_20);
|
||||
x_230 = l_Lean_Syntax_isOfKind(x_20, x_229);
|
||||
|
|
@ -4152,7 +4152,7 @@ else
|
|||
{
|
||||
lean_object* x_242; lean_object* x_243; uint8_t x_244;
|
||||
lean_dec(x_6);
|
||||
x_242 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20533____closed__2;
|
||||
x_242 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20507____closed__2;
|
||||
x_243 = lean_name_mk_string(x_2, x_242);
|
||||
lean_inc(x_20);
|
||||
x_244 = l_Lean_Syntax_isOfKind(x_20, x_243);
|
||||
|
|
@ -4240,7 +4240,7 @@ return x_261;
|
|||
else
|
||||
{
|
||||
lean_object* x_262; lean_object* x_263; uint8_t x_264;
|
||||
x_262 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20533____closed__2;
|
||||
x_262 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20507____closed__2;
|
||||
x_263 = lean_name_mk_string(x_2, x_262);
|
||||
lean_inc(x_20);
|
||||
x_264 = l_Lean_Syntax_isOfKind(x_20, x_263);
|
||||
|
|
@ -4398,7 +4398,7 @@ lean_object* l_Lean_Elab_Term_expandHave(lean_object* x_1, lean_object* x_2, lea
|
|||
_start:
|
||||
{
|
||||
lean_object* x_4; uint8_t x_5;
|
||||
x_4 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__3;
|
||||
x_4 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__3;
|
||||
lean_inc(x_1);
|
||||
x_5 = l_Lean_Syntax_isOfKind(x_1, x_4);
|
||||
if (x_5 == 0)
|
||||
|
|
@ -4417,7 +4417,7 @@ else
|
|||
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);
|
||||
x_10 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20533____closed__1;
|
||||
x_10 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20507____closed__1;
|
||||
lean_inc(x_9);
|
||||
x_11 = l_Lean_Syntax_isOfKind(x_9, x_10);
|
||||
if (x_11 == 0)
|
||||
|
|
@ -4479,7 +4479,7 @@ if (x_30 == 0)
|
|||
lean_object* x_31; lean_object* x_32; uint8_t x_33;
|
||||
x_31 = l_Lean_Syntax_getArg(x_9, x_22);
|
||||
lean_dec(x_9);
|
||||
x_32 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20533____closed__3;
|
||||
x_32 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20507____closed__3;
|
||||
lean_inc(x_31);
|
||||
x_33 = l_Lean_Syntax_isOfKind(x_31, x_32);
|
||||
if (x_33 == 0)
|
||||
|
|
@ -4538,7 +4538,7 @@ else
|
|||
lean_object* x_46; lean_object* x_47; uint8_t x_48;
|
||||
x_46 = l_Lean_Syntax_getArg(x_9, x_22);
|
||||
lean_dec(x_9);
|
||||
x_47 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20533____closed__3;
|
||||
x_47 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20507____closed__3;
|
||||
lean_inc(x_46);
|
||||
x_48 = l_Lean_Syntax_isOfKind(x_46, x_47);
|
||||
if (x_48 == 0)
|
||||
|
|
@ -4618,7 +4618,7 @@ lean_object* x_66; lean_object* x_67; lean_object* x_68; uint8_t x_69;
|
|||
x_66 = l_Lean_Syntax_getArg(x_9, x_8);
|
||||
x_67 = l_Lean_Syntax_getArg(x_9, x_22);
|
||||
lean_dec(x_9);
|
||||
x_68 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20533____closed__3;
|
||||
x_68 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20507____closed__3;
|
||||
lean_inc(x_67);
|
||||
x_69 = l_Lean_Syntax_isOfKind(x_67, x_68);
|
||||
if (x_69 == 0)
|
||||
|
|
@ -4831,7 +4831,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_20337____closed__3;
|
||||
x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__3;
|
||||
x_4 = l___regBuiltin_Lean_Elab_Term_expandHave___closed__1;
|
||||
x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1);
|
||||
return x_5;
|
||||
|
|
@ -4856,7 +4856,7 @@ if (lean_is_exclusive(x_14)) {
|
|||
lean_dec_ref(x_14);
|
||||
x_17 = lean_box(0);
|
||||
}
|
||||
x_18 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__2;
|
||||
x_18 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__2;
|
||||
lean_inc(x_2);
|
||||
x_19 = lean_name_mk_string(x_2, x_18);
|
||||
lean_inc(x_15);
|
||||
|
|
@ -4867,7 +4867,7 @@ x_21 = l_Array_empty___closed__1;
|
|||
x_22 = lean_array_push(x_21, x_20);
|
||||
x_23 = l_Lean_Parser_Tactic_tacticHave_____closed__5;
|
||||
x_24 = lean_name_mk_string(x_2, x_23);
|
||||
x_25 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21102____closed__5;
|
||||
x_25 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21076____closed__5;
|
||||
lean_inc(x_15);
|
||||
x_26 = lean_alloc_ctor(2, 2, 0);
|
||||
lean_ctor_set(x_26, 0, x_15);
|
||||
|
|
@ -4929,7 +4929,7 @@ x_44 = lean_array_push(x_43, x_34);
|
|||
if (lean_obj_tag(x_35) == 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; lean_object* x_52;
|
||||
x_45 = l_myMacro____x40_Init_Notation___hyg_23708____closed__3;
|
||||
x_45 = l_myMacro____x40_Init_Notation___hyg_23692____closed__3;
|
||||
x_46 = lean_alloc_ctor(2, 2, 0);
|
||||
lean_ctor_set(x_46, 0, x_15);
|
||||
lean_ctor_set(x_46, 1, x_45);
|
||||
|
|
@ -4958,7 +4958,7 @@ lean_dec(x_15);
|
|||
x_53 = lean_ctor_get(x_35, 0);
|
||||
lean_inc(x_53);
|
||||
lean_dec(x_35);
|
||||
x_54 = l_myMacro____x40_Init_Notation___hyg_23708____closed__3;
|
||||
x_54 = l_myMacro____x40_Init_Notation___hyg_23692____closed__3;
|
||||
x_55 = lean_alloc_ctor(2, 2, 0);
|
||||
lean_ctor_set(x_55, 0, x_53);
|
||||
lean_ctor_set(x_55, 1, x_54);
|
||||
|
|
@ -5026,7 +5026,7 @@ if (x_13 == 0)
|
|||
{
|
||||
lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31;
|
||||
x_14 = lean_ctor_get(x_12, 0);
|
||||
x_15 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__2;
|
||||
x_15 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__2;
|
||||
lean_inc(x_2);
|
||||
x_16 = lean_name_mk_string(x_2, x_15);
|
||||
lean_inc(x_14);
|
||||
|
|
@ -5037,7 +5037,7 @@ x_18 = l_Array_empty___closed__1;
|
|||
x_19 = lean_array_push(x_18, x_17);
|
||||
x_20 = l_Lean_Parser_Tactic_tacticHave_____closed__5;
|
||||
x_21 = lean_name_mk_string(x_2, x_20);
|
||||
x_22 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21102____closed__5;
|
||||
x_22 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21076____closed__5;
|
||||
lean_inc(x_14);
|
||||
x_23 = lean_alloc_ctor(2, 2, 0);
|
||||
lean_ctor_set(x_23, 0, x_14);
|
||||
|
|
@ -5118,7 +5118,7 @@ x_57 = lean_ctor_get(x_12, 1);
|
|||
lean_inc(x_57);
|
||||
lean_inc(x_56);
|
||||
lean_dec(x_12);
|
||||
x_58 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__2;
|
||||
x_58 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__2;
|
||||
lean_inc(x_2);
|
||||
x_59 = lean_name_mk_string(x_2, x_58);
|
||||
lean_inc(x_56);
|
||||
|
|
@ -5129,7 +5129,7 @@ x_61 = l_Array_empty___closed__1;
|
|||
x_62 = lean_array_push(x_61, x_60);
|
||||
x_63 = l_Lean_Parser_Tactic_tacticHave_____closed__5;
|
||||
x_64 = lean_name_mk_string(x_2, x_63);
|
||||
x_65 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21102____closed__5;
|
||||
x_65 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21076____closed__5;
|
||||
lean_inc(x_56);
|
||||
x_66 = lean_alloc_ctor(2, 2, 0);
|
||||
lean_ctor_set(x_66, 0, x_56);
|
||||
|
|
@ -5216,7 +5216,7 @@ x_9 = lean_unsigned_to_nat(1u);
|
|||
x_10 = l_Lean_Syntax_getArg(x_1, x_9);
|
||||
x_11 = lean_unsigned_to_nat(2u);
|
||||
x_12 = l_Lean_Syntax_getArg(x_1, x_11);
|
||||
x_13 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21102____closed__3;
|
||||
x_13 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21076____closed__3;
|
||||
lean_inc(x_2);
|
||||
x_14 = lean_name_mk_string(x_2, x_13);
|
||||
lean_inc(x_12);
|
||||
|
|
@ -5224,7 +5224,7 @@ x_15 = l_Lean_Syntax_isOfKind(x_12, x_14);
|
|||
if (x_15 == 0)
|
||||
{
|
||||
lean_object* x_16; lean_object* x_17; uint8_t x_18;
|
||||
x_16 = l_myMacro____x40_Init_Notation___hyg_23708____closed__1;
|
||||
x_16 = l_myMacro____x40_Init_Notation___hyg_23692____closed__1;
|
||||
lean_inc(x_2);
|
||||
x_17 = lean_name_mk_string(x_2, x_16);
|
||||
lean_inc(x_12);
|
||||
|
|
@ -5372,7 +5372,7 @@ lean_object* l_Lean_Elab_Term_expandSuffices(lean_object* x_1, lean_object* x_2,
|
|||
_start:
|
||||
{
|
||||
lean_object* x_4; uint8_t x_5;
|
||||
x_4 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20731____closed__2;
|
||||
x_4 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20705____closed__2;
|
||||
lean_inc(x_1);
|
||||
x_5 = l_Lean_Syntax_isOfKind(x_1, x_4);
|
||||
if (x_5 == 0)
|
||||
|
|
@ -5519,7 +5519,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_20731____closed__2;
|
||||
x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20705____closed__2;
|
||||
x_4 = l___regBuiltin_Lean_Elab_Term_expandSuffices___closed__1;
|
||||
x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1);
|
||||
return x_5;
|
||||
|
|
@ -8753,7 +8753,7 @@ static lean_object* _init_l_Lean_Elab_Term_elabSorry___closed__8() {
|
|||
_start:
|
||||
{
|
||||
lean_object* x_1; lean_object* x_2;
|
||||
x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__8;
|
||||
x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__8;
|
||||
x_2 = lean_string_utf8_byte_size(x_1);
|
||||
return x_2;
|
||||
}
|
||||
|
|
@ -8762,7 +8762,7 @@ static lean_object* _init_l_Lean_Elab_Term_elabSorry___closed__9() {
|
|||
_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_23515____closed__8;
|
||||
x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__8;
|
||||
x_2 = lean_unsigned_to_nat(0u);
|
||||
x_3 = l_Lean_Elab_Term_elabSorry___closed__8;
|
||||
x_4 = lean_alloc_ctor(0, 3, 0);
|
||||
|
|
@ -8891,7 +8891,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_18810____closed__2;
|
||||
x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18784____closed__2;
|
||||
x_4 = l___regBuiltin_Lean_Elab_Term_elabSorry___closed__1;
|
||||
x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1);
|
||||
return x_5;
|
||||
|
|
|
|||
4
stage0/stdlib/Lean/Elab/Command.c
generated
4
stage0/stdlib/Lean/Elab/Command.c
generated
|
|
@ -697,7 +697,6 @@ lean_object* l___regBuiltin_Lean_Elab_Command_elabReduce(lean_object*);
|
|||
lean_object* l_Lean_Elab_Command_mkCommandElabAttributeUnsafe___closed__1;
|
||||
lean_object* l_Lean_Elab_Command_getScope(lean_object*);
|
||||
extern lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_1247____closed__1;
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__8;
|
||||
lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Command_0__Lean_Elab_Command_addScope___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Elab_Command_elabExport___boxed(lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
uint8_t lean_nat_dec_le(lean_object*, lean_object*);
|
||||
|
|
@ -756,6 +755,7 @@ lean_object* l___private_Lean_Elab_Command_0__Lean_Elab_Command_mkTermContext___
|
|||
lean_object* l_Lean_Elab_Command_elabNamespace(lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
extern lean_object* l_Lean_Elab_Term_State_infoState___default___closed__1;
|
||||
extern lean_object* l_Lean_Elab_pp_macroStack;
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__8;
|
||||
lean_object* l_Lean_Elab_Command_getMainModule___rarg(lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Elab_Command_instMonadLiftTIOCommandElabM(lean_object*);
|
||||
lean_object* l___regBuiltin_Lean_Elab_Command_elabOpen(lean_object*);
|
||||
|
|
@ -31207,7 +31207,7 @@ x_13 = lean_string_dec_eq(x_11, x_12);
|
|||
if (x_13 == 0)
|
||||
{
|
||||
lean_object* x_14; uint8_t x_15;
|
||||
x_14 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__8;
|
||||
x_14 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__8;
|
||||
x_15 = lean_string_dec_eq(x_11, x_14);
|
||||
lean_dec(x_11);
|
||||
if (x_15 == 0)
|
||||
|
|
|
|||
12
stage0/stdlib/Lean/Elab/Deriving/BEq.c
generated
12
stage0/stdlib/Lean/Elab/Deriving/BEq.c
generated
|
|
@ -122,6 +122,7 @@ extern lean_object* l_Lean_KernelException_toMessageData___closed__3;
|
|||
size_t lean_usize_of_nat(lean_object*);
|
||||
extern lean_object* l_myMacro____x40_Init_NotationExtra___hyg_5711____closed__27;
|
||||
lean_object* l_Lean_addTrace___at___private_Lean_Elab_Term_0__Lean_Elab_Term_postponeElabTerm___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__1;
|
||||
lean_object* l_Lean_addMacroScope(lean_object*, lean_object*, lean_object*);
|
||||
extern lean_object* l_Lean_Parser_Tactic_inductionAlt___closed__5;
|
||||
extern lean_object* l_Lean_nullKind___closed__2;
|
||||
|
|
@ -138,14 +139,13 @@ lean_object* l___private_Lean_Util_Trace_0__Lean_checkTraceOptionM___at___privat
|
|||
extern lean_object* l_Lean_Parser_Command_set__option___elambda__1___closed__1;
|
||||
extern lean_object* l_Lean_instQuoteBool___closed__2;
|
||||
extern lean_object* l_Lean_Parser_Command_end___elambda__1___closed__1;
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__8;
|
||||
uint8_t lean_nat_dec_le(lean_object*, lean_object*);
|
||||
extern lean_object* l_Lean_Parser_Command_private___elambda__1___closed__1;
|
||||
lean_object* l_Std_Range_forIn_loop___at_Lean_Elab_Deriving_BEq_mkMatch_mkAlts___spec__4___closed__3;
|
||||
lean_object* l_Lean_Elab_Deriving_BEq_mkMutualBlock___closed__9;
|
||||
lean_object* l_Array_appendCore___rarg(lean_object*, lean_object*);
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__1;
|
||||
extern lean_object* l_Lean_Core_betaReduce___closed__1;
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__8;
|
||||
extern lean_object* l_myMacro____x40_Init_Notation___hyg_16268____closed__9;
|
||||
lean_object* l_Lean_Elab_Deriving_BEq_mkMutualBlock___closed__1;
|
||||
lean_object* l_Lean_addMessageContextFull___at_Lean_Meta_instAddMessageContextMetaM___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
|
|
@ -348,7 +348,7 @@ static lean_object* _init_l_Lean_Elab_Deriving_BEq_mkMatch_mkElseAlt___closed__1
|
|||
_start:
|
||||
{
|
||||
lean_object* x_1; lean_object* x_2;
|
||||
x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__8;
|
||||
x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__8;
|
||||
x_2 = lean_string_utf8_byte_size(x_1);
|
||||
return x_2;
|
||||
}
|
||||
|
|
@ -357,7 +357,7 @@ static lean_object* _init_l_Lean_Elab_Deriving_BEq_mkMatch_mkElseAlt___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_23515____closed__8;
|
||||
x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__8;
|
||||
x_2 = lean_unsigned_to_nat(0u);
|
||||
x_3 = l_Lean_Elab_Deriving_BEq_mkMatch_mkElseAlt___closed__1;
|
||||
x_4 = lean_alloc_ctor(0, 3, 0);
|
||||
|
|
@ -3741,7 +3741,7 @@ x_28 = lean_alloc_ctor(2, 2, 0);
|
|||
lean_ctor_set(x_28, 0, x_19);
|
||||
lean_ctor_set(x_28, 1, x_27);
|
||||
x_29 = lean_array_push(x_14, x_28);
|
||||
x_30 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__1;
|
||||
x_30 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__1;
|
||||
lean_inc(x_19);
|
||||
x_31 = lean_alloc_ctor(2, 2, 0);
|
||||
lean_ctor_set(x_31, 0, x_19);
|
||||
|
|
@ -3802,7 +3802,7 @@ x_57 = lean_alloc_ctor(2, 2, 0);
|
|||
lean_ctor_set(x_57, 0, x_19);
|
||||
lean_ctor_set(x_57, 1, x_56);
|
||||
x_58 = lean_array_push(x_14, x_57);
|
||||
x_59 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__1;
|
||||
x_59 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__1;
|
||||
lean_inc(x_19);
|
||||
x_60 = lean_alloc_ctor(2, 2, 0);
|
||||
lean_ctor_set(x_60, 0, x_19);
|
||||
|
|
|
|||
62
stage0/stdlib/Lean/Elab/Deriving/DecEq.c
generated
62
stage0/stdlib/Lean/Elab/Deriving/DecEq.c
generated
|
|
@ -31,17 +31,18 @@ lean_object* l_Lean_Elab_Deriving_DecEq_mkAuxFunction___closed__1;
|
|||
extern lean_object* l_Lean_mkDecIsFalse___closed__1;
|
||||
lean_object* l_Lean_Elab_Command_liftTermElabM___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* lean_name_mk_string(lean_object*, lean_object*);
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__5;
|
||||
extern lean_object* l_Lean_Parser_Tactic_injection___closed__2;
|
||||
lean_object* l_List_forIn_loop___at_Lean_Elab_Deriving_DecEq_mkMatch_mkAlts___spec__6___closed__2;
|
||||
lean_object* l_Array_append___rarg(lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__2;
|
||||
extern lean_object* l_Lean_getConstInfoInduct___rarg___lambda__1___closed__2;
|
||||
extern lean_object* l_myMacro____x40_Init_Notation___hyg_23692____closed__3;
|
||||
extern lean_object* l_Lean_Parser_Tactic_intro___closed__4;
|
||||
extern lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandOptIdent___closed__1;
|
||||
lean_object* l_List_forIn_loop___at_Lean_Elab_Deriving_DecEq_mkMatch_mkAlts___spec__7(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_Deriving_DecEq_mkMatch_mkSameCtorRhs___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Elab_Deriving_DecEq_mkDecEqHeader___rarg___closed__1;
|
||||
extern lean_object* l_myMacro____x40_Init_Notation___hyg_23708____closed__3;
|
||||
lean_object* l_Lean_Elab_Deriving_DecEq_mkMatch___boxed(lean_object*);
|
||||
lean_object* l_Lean_Elab_Deriving_DecEq_mkAuxFunction___closed__4;
|
||||
extern lean_object* l___private_Lean_Elab_Binders_0__Lean_Elab_Term_expandOptIdent___closed__2;
|
||||
|
|
@ -55,6 +56,7 @@ lean_object* l_Lean_Elab_Deriving_DecEq_initFn____x40_Lean_Elab_Deriving_DecEq__
|
|||
lean_object* l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__6;
|
||||
lean_object* l_List_forIn_loop___at_Lean_Elab_Deriving_DecEq_mkMatch_mkAlts___spec__6___closed__1;
|
||||
extern lean_object* l_myMacro____x40_Init_Notation___hyg_15342____closed__2;
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18655____closed__3;
|
||||
uint8_t l_Lean_Expr_isAppOf(lean_object*, lean_object*);
|
||||
extern lean_object* l_Lean_Parser_Tactic_exact___closed__1;
|
||||
lean_object* lean_array_push(lean_object*, lean_object*);
|
||||
|
|
@ -64,7 +66,6 @@ extern lean_object* l_termDepIfThenElse___closed__24;
|
|||
lean_object* l_Lean_MessageData_ofList(lean_object*);
|
||||
lean_object* l_Std_Range_forIn_loop___at_Lean_Elab_Deriving_DecEq_mkMatch_mkAlts___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Elab_Deriving_DecEq_mkMatch_mkAlts_match__1(lean_object*);
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__3;
|
||||
extern lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Util_Trace_0__Lean_withNestedTracesFinalizer___spec__5___closed__1;
|
||||
extern lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1354____closed__19;
|
||||
lean_object* l_Lean_Elab_Deriving_DecEq_mkDecEqHeader___boxed(lean_object*);
|
||||
|
|
@ -75,7 +76,6 @@ lean_object* l_Lean_Elab_Term_getMainModule___rarg(lean_object*, lean_object*);
|
|||
extern lean_object* l_myMacro____x40_Init_Notation___hyg_1481____closed__8;
|
||||
lean_object* l_Lean_Elab_Deriving_DecEq_mkDecEqInstanceHandler___boxed(lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
extern lean_object* l_Lean_Parser_Tactic_injection___closed__1;
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__5;
|
||||
lean_object* lean_nat_add(lean_object*, lean_object*);
|
||||
extern lean_object* l_Lean_Parser_Tactic_subst___closed__1;
|
||||
lean_object* l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__19;
|
||||
|
|
@ -87,7 +87,6 @@ extern lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1354____close
|
|||
lean_object* l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__11;
|
||||
extern lean_object* l_Lean_Syntax_formatStxAux___closed__3;
|
||||
lean_object* l_Lean_Elab_Deriving_mkDiscrs(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_18681____closed__3;
|
||||
extern lean_object* l_Lean_Parser_Tactic_subst___closed__2;
|
||||
extern lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1354____closed__7;
|
||||
lean_object* l_Lean_Elab_Deriving_DecEq_mkDecEqHeader___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
|
|
@ -102,6 +101,7 @@ lean_object* lean_st_ref_take(lean_object*, lean_object*);
|
|||
extern lean_object* l_Lean_Parser_Tactic_assumption___closed__1;
|
||||
lean_object* l_Lean_Elab_Deriving_mkInstanceCmds(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_nat_sub(lean_object*, lean_object*);
|
||||
extern lean_object* l_myMacro____x40_Init_Notation___hyg_23692____closed__2;
|
||||
lean_object* l_Lean_Elab_Deriving_DecEq_mkMatch(lean_object*);
|
||||
lean_object* l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__4;
|
||||
lean_object* l_Lean_Elab_Deriving_DecEq_mkAuxFunction___closed__3;
|
||||
|
|
@ -117,7 +117,6 @@ lean_object* l_Lean_Elab_Deriving_DecEq_mkDecEqCmds(lean_object*, lean_object*,
|
|||
extern lean_object* l_Lean_mkDecIsTrue___closed__1;
|
||||
lean_object* l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__9;
|
||||
extern lean_object* l_Lean_Core_betaReduce___closed__2;
|
||||
extern lean_object* l_myMacro____x40_Init_Notation___hyg_23708____closed__2;
|
||||
extern lean_object* l___private_Lean_Meta_Tactic_Cases_0__Lean_Meta_withNewEqs_loop___rarg___closed__2;
|
||||
lean_object* l_Lean_Elab_Deriving_DecEq_mkAuxFunction___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Elab_addMacroStack___at_Lean_Elab_Term_instAddErrorMessageContextTermElabM___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
|
|
@ -141,6 +140,7 @@ extern lean_object* l_Lean_Elab_Tactic_evalIntro___closed__2;
|
|||
extern lean_object* l_Lean_myMacro____x40_Init_NotationExtra___hyg_1354____closed__22;
|
||||
extern lean_object* l_Lean_KernelException_toMessageData___closed__15;
|
||||
lean_object* l_Lean_Elab_Deriving_DecEq_mkMatch_mkAlts_match__1___rarg(lean_object*, lean_object*);
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18655____closed__2;
|
||||
lean_object* l_Lean_mkSepArray(lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Core_transform___at_Lean_Core_betaReduce___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Elab_Deriving_mkHeader___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
|
|
@ -201,11 +201,11 @@ extern lean_object* l_prec_x28___x29___closed__7;
|
|||
extern lean_object* l_Lean_Parser_Tactic_exact___closed__2;
|
||||
lean_object* l_Lean_Elab_Deriving_DecEq_mkMatch_mkAlts_match__2___rarg(lean_object*, lean_object*);
|
||||
extern lean_object* l_myMacro____x40_Init_Notation___hyg_2278____closed__4;
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__3;
|
||||
extern lean_object* l_termDepIfThenElse___closed__2;
|
||||
extern lean_object* l_prec_x28___x29___closed__3;
|
||||
lean_object* lean_mk_syntax_ident(lean_object*);
|
||||
extern lean_object* l_Lean_Parser_Command_private___elambda__1___closed__2;
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18681____closed__2;
|
||||
extern lean_object* l_Lean_instInhabitedInductiveVal;
|
||||
extern lean_object* l_myMacro____x40_Init_Notation___hyg_15342____closed__10;
|
||||
extern lean_object* l_Lean_mkOptionalNode___closed__2;
|
||||
|
|
@ -424,7 +424,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_18681____closed__3;
|
||||
x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18655____closed__3;
|
||||
x_3 = lean_alloc_ctor(0, 2, 0);
|
||||
lean_ctor_set(x_3, 0, x_2);
|
||||
lean_ctor_set(x_3, 1, x_1);
|
||||
|
|
@ -612,9 +612,9 @@ lean_ctor_set(x_23, 2, x_20);
|
|||
lean_ctor_set(x_23, 3, x_22);
|
||||
x_24 = l_Array_empty___closed__1;
|
||||
x_25 = lean_array_push(x_24, x_23);
|
||||
x_26 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18681____closed__3;
|
||||
x_26 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18655____closed__3;
|
||||
x_27 = l_Lean_addMacroScope(x_18, x_26, x_14);
|
||||
x_28 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18681____closed__2;
|
||||
x_28 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18655____closed__2;
|
||||
x_29 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__7;
|
||||
x_30 = lean_alloc_ctor(3, 4, 0);
|
||||
lean_ctor_set(x_30, 0, x_11);
|
||||
|
|
@ -656,9 +656,9 @@ lean_ctor_set(x_43, 2, x_40);
|
|||
lean_ctor_set(x_43, 3, x_42);
|
||||
x_44 = l_Array_empty___closed__1;
|
||||
x_45 = lean_array_push(x_44, x_43);
|
||||
x_46 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18681____closed__3;
|
||||
x_46 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18655____closed__3;
|
||||
x_47 = l_Lean_addMacroScope(x_37, x_46, x_14);
|
||||
x_48 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18681____closed__2;
|
||||
x_48 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18655____closed__2;
|
||||
x_49 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___closed__7;
|
||||
x_50 = lean_alloc_ctor(3, 4, 0);
|
||||
lean_ctor_set(x_50, 0, x_11);
|
||||
|
|
@ -799,7 +799,7 @@ x_110 = lean_alloc_ctor(2, 2, 0);
|
|||
lean_ctor_set(x_110, 0, x_79);
|
||||
lean_ctor_set(x_110, 1, x_109);
|
||||
x_111 = lean_array_push(x_108, x_110);
|
||||
x_112 = l_myMacro____x40_Init_Notation___hyg_23708____closed__3;
|
||||
x_112 = l_myMacro____x40_Init_Notation___hyg_23692____closed__3;
|
||||
lean_inc(x_79);
|
||||
x_113 = lean_alloc_ctor(2, 2, 0);
|
||||
lean_ctor_set(x_113, 0, x_79);
|
||||
|
|
@ -861,18 +861,18 @@ x_144 = lean_alloc_ctor(1, 2, 0);
|
|||
lean_ctor_set(x_144, 0, x_119);
|
||||
lean_ctor_set(x_144, 1, x_143);
|
||||
x_145 = lean_array_push(x_90, x_144);
|
||||
x_146 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__5;
|
||||
x_146 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__5;
|
||||
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_90, x_147);
|
||||
x_149 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__3;
|
||||
x_149 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__3;
|
||||
x_150 = lean_alloc_ctor(1, 2, 0);
|
||||
lean_ctor_set(x_150, 0, x_149);
|
||||
lean_ctor_set(x_150, 1, x_148);
|
||||
lean_inc(x_114);
|
||||
x_151 = lean_array_push(x_114, x_150);
|
||||
x_152 = l_myMacro____x40_Init_Notation___hyg_23708____closed__2;
|
||||
x_152 = l_myMacro____x40_Init_Notation___hyg_23692____closed__2;
|
||||
x_153 = lean_alloc_ctor(1, 2, 0);
|
||||
lean_ctor_set(x_153, 0, x_152);
|
||||
lean_ctor_set(x_153, 1, x_151);
|
||||
|
|
@ -1272,7 +1272,7 @@ x_349 = lean_alloc_ctor(2, 2, 0);
|
|||
lean_ctor_set(x_349, 0, x_79);
|
||||
lean_ctor_set(x_349, 1, x_348);
|
||||
x_350 = lean_array_push(x_347, x_349);
|
||||
x_351 = l_myMacro____x40_Init_Notation___hyg_23708____closed__3;
|
||||
x_351 = l_myMacro____x40_Init_Notation___hyg_23692____closed__3;
|
||||
lean_inc(x_79);
|
||||
x_352 = lean_alloc_ctor(2, 2, 0);
|
||||
lean_ctor_set(x_352, 0, x_79);
|
||||
|
|
@ -1334,18 +1334,18 @@ x_383 = lean_alloc_ctor(1, 2, 0);
|
|||
lean_ctor_set(x_383, 0, x_358);
|
||||
lean_ctor_set(x_383, 1, x_382);
|
||||
x_384 = lean_array_push(x_329, x_383);
|
||||
x_385 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__5;
|
||||
x_385 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__5;
|
||||
x_386 = lean_alloc_ctor(1, 2, 0);
|
||||
lean_ctor_set(x_386, 0, x_385);
|
||||
lean_ctor_set(x_386, 1, x_384);
|
||||
x_387 = lean_array_push(x_329, x_386);
|
||||
x_388 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__3;
|
||||
x_388 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__3;
|
||||
x_389 = lean_alloc_ctor(1, 2, 0);
|
||||
lean_ctor_set(x_389, 0, x_388);
|
||||
lean_ctor_set(x_389, 1, x_387);
|
||||
lean_inc(x_353);
|
||||
x_390 = lean_array_push(x_353, x_389);
|
||||
x_391 = l_myMacro____x40_Init_Notation___hyg_23708____closed__2;
|
||||
x_391 = l_myMacro____x40_Init_Notation___hyg_23692____closed__2;
|
||||
x_392 = lean_alloc_ctor(1, 2, 0);
|
||||
lean_ctor_set(x_392, 0, x_391);
|
||||
lean_ctor_set(x_392, 1, x_390);
|
||||
|
|
@ -1749,7 +1749,7 @@ x_578 = lean_alloc_ctor(2, 2, 0);
|
|||
lean_ctor_set(x_578, 0, x_547);
|
||||
lean_ctor_set(x_578, 1, x_577);
|
||||
x_579 = lean_array_push(x_576, x_578);
|
||||
x_580 = l_myMacro____x40_Init_Notation___hyg_23708____closed__3;
|
||||
x_580 = l_myMacro____x40_Init_Notation___hyg_23692____closed__3;
|
||||
lean_inc(x_547);
|
||||
x_581 = lean_alloc_ctor(2, 2, 0);
|
||||
lean_ctor_set(x_581, 0, x_547);
|
||||
|
|
@ -1811,18 +1811,18 @@ x_612 = lean_alloc_ctor(1, 2, 0);
|
|||
lean_ctor_set(x_612, 0, x_587);
|
||||
lean_ctor_set(x_612, 1, x_611);
|
||||
x_613 = lean_array_push(x_558, x_612);
|
||||
x_614 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__5;
|
||||
x_614 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__5;
|
||||
x_615 = lean_alloc_ctor(1, 2, 0);
|
||||
lean_ctor_set(x_615, 0, x_614);
|
||||
lean_ctor_set(x_615, 1, x_613);
|
||||
x_616 = lean_array_push(x_558, x_615);
|
||||
x_617 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__3;
|
||||
x_617 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__3;
|
||||
x_618 = lean_alloc_ctor(1, 2, 0);
|
||||
lean_ctor_set(x_618, 0, x_617);
|
||||
lean_ctor_set(x_618, 1, x_616);
|
||||
lean_inc(x_582);
|
||||
x_619 = lean_array_push(x_582, x_618);
|
||||
x_620 = l_myMacro____x40_Init_Notation___hyg_23708____closed__2;
|
||||
x_620 = l_myMacro____x40_Init_Notation___hyg_23692____closed__2;
|
||||
x_621 = lean_alloc_ctor(1, 2, 0);
|
||||
lean_ctor_set(x_621, 0, x_620);
|
||||
lean_ctor_set(x_621, 1, x_619);
|
||||
|
|
@ -2268,7 +2268,7 @@ x_817 = lean_alloc_ctor(2, 2, 0);
|
|||
lean_ctor_set(x_817, 0, x_786);
|
||||
lean_ctor_set(x_817, 1, x_816);
|
||||
x_818 = lean_array_push(x_815, x_817);
|
||||
x_819 = l_myMacro____x40_Init_Notation___hyg_23708____closed__3;
|
||||
x_819 = l_myMacro____x40_Init_Notation___hyg_23692____closed__3;
|
||||
lean_inc(x_786);
|
||||
x_820 = lean_alloc_ctor(2, 2, 0);
|
||||
lean_ctor_set(x_820, 0, x_786);
|
||||
|
|
@ -2330,18 +2330,18 @@ x_851 = lean_alloc_ctor(1, 2, 0);
|
|||
lean_ctor_set(x_851, 0, x_826);
|
||||
lean_ctor_set(x_851, 1, x_850);
|
||||
x_852 = lean_array_push(x_797, x_851);
|
||||
x_853 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__5;
|
||||
x_853 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__5;
|
||||
x_854 = lean_alloc_ctor(1, 2, 0);
|
||||
lean_ctor_set(x_854, 0, x_853);
|
||||
lean_ctor_set(x_854, 1, x_852);
|
||||
x_855 = lean_array_push(x_797, x_854);
|
||||
x_856 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__3;
|
||||
x_856 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__3;
|
||||
x_857 = lean_alloc_ctor(1, 2, 0);
|
||||
lean_ctor_set(x_857, 0, x_856);
|
||||
lean_ctor_set(x_857, 1, x_855);
|
||||
lean_inc(x_821);
|
||||
x_858 = lean_array_push(x_821, x_857);
|
||||
x_859 = l_myMacro____x40_Init_Notation___hyg_23708____closed__2;
|
||||
x_859 = l_myMacro____x40_Init_Notation___hyg_23692____closed__2;
|
||||
x_860 = lean_alloc_ctor(1, 2, 0);
|
||||
lean_ctor_set(x_860, 0, x_859);
|
||||
lean_ctor_set(x_860, 1, x_858);
|
||||
|
|
@ -4211,7 +4211,7 @@ lean_ctor_set(x_95, 0, x_79);
|
|||
lean_ctor_set(x_95, 1, x_94);
|
||||
lean_inc(x_3);
|
||||
x_96 = lean_array_push(x_3, x_95);
|
||||
x_97 = l_myMacro____x40_Init_Notation___hyg_23708____closed__3;
|
||||
x_97 = l_myMacro____x40_Init_Notation___hyg_23692____closed__3;
|
||||
lean_inc(x_79);
|
||||
x_98 = lean_alloc_ctor(2, 2, 0);
|
||||
lean_ctor_set(x_98, 0, x_79);
|
||||
|
|
@ -4295,18 +4295,18 @@ lean_ctor_set(x_133, 0, x_53);
|
|||
lean_ctor_set(x_133, 1, x_132);
|
||||
lean_inc(x_3);
|
||||
x_134 = lean_array_push(x_3, x_133);
|
||||
x_135 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__5;
|
||||
x_135 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__5;
|
||||
x_136 = lean_alloc_ctor(1, 2, 0);
|
||||
lean_ctor_set(x_136, 0, x_135);
|
||||
lean_ctor_set(x_136, 1, x_134);
|
||||
lean_inc(x_3);
|
||||
x_137 = lean_array_push(x_3, x_136);
|
||||
x_138 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__3;
|
||||
x_138 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__3;
|
||||
x_139 = lean_alloc_ctor(1, 2, 0);
|
||||
lean_ctor_set(x_139, 0, x_138);
|
||||
lean_ctor_set(x_139, 1, x_137);
|
||||
x_140 = lean_array_push(x_99, x_139);
|
||||
x_141 = l_myMacro____x40_Init_Notation___hyg_23708____closed__2;
|
||||
x_141 = l_myMacro____x40_Init_Notation___hyg_23692____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);
|
||||
|
|
|
|||
22
stage0/stdlib/Lean/Elab/Do.c
generated
22
stage0/stdlib/Lean/Elab/Do.c
generated
|
|
@ -34,6 +34,7 @@ lean_object* l_Lean_Elab_Term_Do_CodeBlocl_toMessageData_loop___closed__12;
|
|||
lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f___spec__3___boxed(lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Elab_Term_Do_ToCodeBlock_doForToCode___boxed__const__1;
|
||||
lean_object* l_Lean_Elab_Term_Do_ToTerm_matchNestedTermResult___closed__12;
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21281____closed__2;
|
||||
lean_object* l_Lean_Elab_Term_Do_extendUpdatedVarsAux_update_match__1(lean_object*);
|
||||
lean_object* l_Lean_Elab_Term_Do_ToCodeBlock_doLetArrowToCode___closed__2;
|
||||
lean_object* l_Lean_Elab_Term_Do_ToTerm_breakToTerm___closed__9;
|
||||
|
|
@ -155,6 +156,7 @@ uint8_t l_Array_anyMUnsafe_any___at_Lean_Elab_Term_Do_hasReturn___spec__2(lean_o
|
|||
lean_object* l_Lean_Elab_Term_Do_extendUpdatedVarsAux(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Elab_Term_Do_ToTerm_run(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*);
|
||||
extern lean_object* l_Lean_Parser_Term_doReassignArrow___elambda__1___closed__2;
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__5;
|
||||
extern lean_object* l_Lean_Parser_Term_letPatDecl___closed__2;
|
||||
uint8_t l_Lean_Elab_Term_Do_hasTerminalAction(lean_object*);
|
||||
lean_object* l_Lean_Elab_Term_Do_ToTerm_breakToTerm___closed__11;
|
||||
|
|
@ -504,6 +506,7 @@ lean_object* l_Lean_Elab_Term_Do_ToTerm_actionTerminalToTerm___closed__16;
|
|||
lean_object* l_Lean_throwError___at_Lean_Elab_Term_Do_concat___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Elab_Term_Do_homogenize(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Elab_Term_Do_ToTerm_returnToTerm___closed__29;
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__3;
|
||||
extern lean_object* l_termIfLet___x3a_x3d__Then__Else_____closed__3;
|
||||
uint8_t l_Lean_Elab_Term_Do_hasExitPoint(lean_object*);
|
||||
lean_object* l_Lean_Elab_Term_Do_ToTerm_continueToTerm(lean_object*, lean_object*, lean_object*);
|
||||
|
|
@ -631,7 +634,6 @@ lean_object* l_Lean_Elab_Term_Do_hasExitPointPred_loop(lean_object*, lean_object
|
|||
extern lean_object* l_instMonadEST___closed__1;
|
||||
lean_object* l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_expandDoIf_x3f_match__3___rarg(lean_object*, lean_object*);
|
||||
lean_object* l_Array_foldrMUnsafe_fold___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_mkTuple___spec__1___closed__2;
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__5;
|
||||
extern lean_object* l___private_Lean_Elab_Match_0__Lean_Elab_Term_isMatchUnit_x3f_match__2___rarg___closed__1;
|
||||
lean_object* l_Lean_throwError___at_Lean_Elab_Term_Do_ToCodeBlock_doSeqToCode___spec__10___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_ToCodeBlock_expandLiftMethodAux___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
|
|
@ -1136,7 +1138,6 @@ lean_object* l_Array_foldrMUnsafe_fold___at___private_Lean_Elab_Do_0__Lean_Elab_
|
|||
extern lean_object* l_Lean_Parser_myMacro____x40_Lean_Parser_Extra___hyg_276____closed__2;
|
||||
extern lean_object* l_List_foldl___at_Lean_Meta_Match_Pattern_toMessageData___spec__1___closed__1;
|
||||
lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Term_Do_ToCodeBlock_checkReassignable___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*, lean_object*, lean_object*);
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21307____closed__2;
|
||||
extern lean_object* l_Lean_Parser_Term_doNested___elambda__1___closed__2;
|
||||
lean_object* l_Lean_Elab_Term_Do_ToCodeBlock_doForToCode___closed__15;
|
||||
lean_object* l_Lean_Elab_Term_Do_ToCodeBlock_doForToCode___closed__18;
|
||||
|
|
@ -1181,7 +1182,6 @@ lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Term_Do_ToTerm_mkUVarTuple___
|
|||
lean_object* l___private_Lean_Elab_Do_0__Lean_Elab_Term_Do_destructTuple_destruct___closed__1;
|
||||
lean_object* l_Lean_Elab_Term_Do_ToCodeBlock_tryCatchPred(lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Elab_Term_Do_pullExitPoints_match__1(lean_object*);
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__3;
|
||||
lean_object* l_Lean_Elab_Term_Do_ToCodeBlock_doTryToCode___lambda__2___closed__3;
|
||||
lean_object* l_Lean_Elab_Term_Do_ToTerm_continueToTerm___closed__1;
|
||||
lean_object* l___private_Lean_Util_Trace_0__Lean_checkTraceOptionM___at_Lean_Elab_Term_Do_ToCodeBlock_mkForInBody___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
|
|
@ -1592,7 +1592,7 @@ x_8 = lean_name_eq(x_2, x_7);
|
|||
if (x_8 == 0)
|
||||
{
|
||||
lean_object* x_9; uint8_t x_10;
|
||||
x_9 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21307____closed__2;
|
||||
x_9 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21281____closed__2;
|
||||
x_10 = lean_name_eq(x_2, x_9);
|
||||
if (x_10 == 0)
|
||||
{
|
||||
|
|
@ -35784,7 +35784,7 @@ x_30 = l_Lean_Elab_Term_elabNoMatch___closed__1;
|
|||
x_31 = lean_array_push(x_30, x_2);
|
||||
x_32 = l_Array_append___rarg(x_29, x_31);
|
||||
lean_dec(x_31);
|
||||
x_33 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__3;
|
||||
x_33 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__3;
|
||||
x_34 = lean_alloc_ctor(1, 2, 0);
|
||||
lean_ctor_set(x_34, 0, x_33);
|
||||
lean_ctor_set(x_34, 1, x_32);
|
||||
|
|
@ -36160,7 +36160,7 @@ x_194 = lean_array_push(x_193, x_191);
|
|||
x_195 = l_Lean_mkOptionalNode___closed__1;
|
||||
x_196 = lean_array_push(x_194, x_195);
|
||||
x_197 = lean_array_push(x_196, x_2);
|
||||
x_198 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21307____closed__2;
|
||||
x_198 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21281____closed__2;
|
||||
x_199 = lean_alloc_ctor(1, 2, 0);
|
||||
lean_ctor_set(x_199, 0, x_198);
|
||||
lean_ctor_set(x_199, 1, x_197);
|
||||
|
|
@ -36318,7 +36318,7 @@ x_251 = l_Lean_Elab_Term_elabNoMatch___closed__1;
|
|||
x_252 = lean_array_push(x_251, x_2);
|
||||
x_253 = l_Array_append___rarg(x_250, x_252);
|
||||
lean_dec(x_252);
|
||||
x_254 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__3;
|
||||
x_254 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__3;
|
||||
x_255 = lean_alloc_ctor(1, 2, 0);
|
||||
lean_ctor_set(x_255, 0, x_254);
|
||||
lean_ctor_set(x_255, 1, x_253);
|
||||
|
|
@ -36602,7 +36602,7 @@ x_366 = lean_array_push(x_365, x_363);
|
|||
x_367 = l_Lean_mkOptionalNode___closed__1;
|
||||
x_368 = lean_array_push(x_366, x_367);
|
||||
x_369 = lean_array_push(x_368, x_2);
|
||||
x_370 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21307____closed__2;
|
||||
x_370 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21281____closed__2;
|
||||
x_371 = lean_alloc_ctor(1, 2, 0);
|
||||
lean_ctor_set(x_371, 0, x_370);
|
||||
lean_ctor_set(x_371, 1, x_369);
|
||||
|
|
@ -36766,7 +36766,7 @@ x_416 = l_Lean_Elab_Term_elabNoMatch___closed__1;
|
|||
x_417 = lean_array_push(x_416, x_2);
|
||||
x_418 = l_Array_append___rarg(x_415, x_417);
|
||||
lean_dec(x_417);
|
||||
x_419 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__3;
|
||||
x_419 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__3;
|
||||
x_420 = lean_alloc_ctor(1, 2, 0);
|
||||
lean_ctor_set(x_420, 0, x_419);
|
||||
lean_ctor_set(x_420, 1, x_418);
|
||||
|
|
@ -37050,7 +37050,7 @@ x_531 = lean_array_push(x_530, x_528);
|
|||
x_532 = l_Lean_mkOptionalNode___closed__1;
|
||||
x_533 = lean_array_push(x_531, x_532);
|
||||
x_534 = lean_array_push(x_533, x_2);
|
||||
x_535 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21307____closed__2;
|
||||
x_535 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21281____closed__2;
|
||||
x_536 = lean_alloc_ctor(1, 2, 0);
|
||||
lean_ctor_set(x_536, 0, x_535);
|
||||
lean_ctor_set(x_536, 1, x_534);
|
||||
|
|
@ -68646,7 +68646,7 @@ lean_ctor_set(x_26, 1, x_25);
|
|||
lean_ctor_set(x_26, 2, x_23);
|
||||
lean_ctor_set(x_26, 3, x_24);
|
||||
x_27 = lean_array_push(x_21, x_26);
|
||||
x_28 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__5;
|
||||
x_28 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__5;
|
||||
x_29 = lean_alloc_ctor(1, 2, 0);
|
||||
lean_ctor_set(x_29, 0, x_28);
|
||||
lean_ctor_set(x_29, 1, x_27);
|
||||
|
|
|
|||
4
stage0/stdlib/Lean/Elab/LetRec.c
generated
4
stage0/stdlib/Lean/Elab/LetRec.c
generated
|
|
@ -17,6 +17,7 @@ lean_object* l_Lean_addDocString_x27___at___private_Lean_Elab_LetRec_0__Lean_Ela
|
|||
lean_object* l_List_reverse___rarg(lean_object*);
|
||||
lean_object* l_Array_mapIdxM_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_registerLetRecsToLift___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Elab_Term_elabLetRec(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_21281____closed__2;
|
||||
size_t l_USize_add(size_t, size_t);
|
||||
lean_object* l_List_forM___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabTermAux___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Expr_mvarId_x21(lean_object*);
|
||||
|
|
@ -207,7 +208,6 @@ lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Term_elabLetRec___spec__1(siz
|
|||
lean_object* l_Lean_Elab_throwUnsupportedSyntax___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__19(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_throwError___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_elabLetRecDeclValues___spec__1___lambda__2(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_21307____closed__2;
|
||||
lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__21___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Elab_elabAttr___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__15___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_LetRec_0__Lean_Elab_Term_mkLetRecDeclView___spec__21(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
|
|
@ -4387,7 +4387,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_21307____closed__2;
|
||||
x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21281____closed__2;
|
||||
x_4 = l___regBuiltin_Lean_Elab_Term_elabLetRec___closed__1;
|
||||
x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1);
|
||||
return x_5;
|
||||
|
|
|
|||
6
stage0/stdlib/Lean/Elab/SetOption.c
generated
6
stage0/stdlib/Lean/Elab/SetOption.c
generated
|
|
@ -53,7 +53,6 @@ lean_object* l_Lean_Elab_elabSetOption_setOption___rarg___lambda__1(lean_object*
|
|||
lean_object* l_Lean_Elab_elabSetOption___rarg___lambda__1___closed__2;
|
||||
lean_object* l_Lean_Elab_elabSetOption_match__2(lean_object*);
|
||||
lean_object* l_Lean_Elab_elabSetOption_setOption___rarg___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__8;
|
||||
lean_object* l_Lean_Elab_elabSetOption_match__3___rarg(lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_throwError___at_Lean_Elab_elabSetOption___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Elab_elabSetOption_setOption___rarg___lambda__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
|
|
@ -63,6 +62,7 @@ lean_object* l_Lean_Elab_elabSetOption_setOption(lean_object*);
|
|||
lean_object* l_Lean_throwError___at_Lean_Elab_elabSetOption___spec__1(lean_object*);
|
||||
lean_object* l_Lean_KVMap_insertCore(lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Elab_elabSetOption_setOption___rarg___lambda__4___closed__2;
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__8;
|
||||
lean_object* l_Lean_throwError___at_Lean_Elab_elabSetOption___spec__2(lean_object*);
|
||||
lean_object* l_IO_toEIO___rarg(lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_throwError___at_Lean_Elab_elabSetOption_setOption___spec__1___rarg___lambda__1___boxed(lean_object*, lean_object*);
|
||||
|
|
@ -94,7 +94,7 @@ if (x_8 == 0)
|
|||
{
|
||||
lean_object* x_9; uint8_t x_10;
|
||||
lean_dec(x_2);
|
||||
x_9 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__8;
|
||||
x_9 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__8;
|
||||
x_10 = lean_string_dec_eq(x_6, x_9);
|
||||
lean_dec(x_6);
|
||||
if (x_10 == 0)
|
||||
|
|
@ -791,7 +791,7 @@ x_25 = lean_string_dec_eq(x_23, x_24);
|
|||
if (x_25 == 0)
|
||||
{
|
||||
lean_object* x_26; uint8_t x_27;
|
||||
x_26 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__8;
|
||||
x_26 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__8;
|
||||
x_27 = lean_string_dec_eq(x_23, x_26);
|
||||
lean_dec(x_23);
|
||||
if (x_27 == 0)
|
||||
|
|
|
|||
10
stage0/stdlib/Lean/Elab/Syntax.c
generated
10
stage0/stdlib/Lean/Elab/Syntax.c
generated
|
|
@ -583,6 +583,7 @@ lean_object* l_Lean_ConstantInfo_type(lean_object*);
|
|||
lean_object* l_Lean_Elab_resolveGlobalConstWithInfos___at_Lean_Elab_Term_toParserDescr_resolveParserName___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_Elab_Term_toParserDescr_processNonReserved___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Elab_Command_elabSyntaxAbbrev___closed__6;
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__1;
|
||||
lean_object* l_Lean_addMacroScope(lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Elab_Term_toParserDescr_processParserCategory___closed__2;
|
||||
lean_object* l_Lean_Elab_Term_toParserDescr_processSepBy___lambda__1___closed__4;
|
||||
|
|
@ -694,7 +695,6 @@ lean_object* l___private_Lean_Elab_Syntax_0__Lean_Elab_Term_markAsTrailingParser
|
|||
extern lean_object* l_Lean_Elab_Command_mkCommandElabAttributeUnsafe___closed__1;
|
||||
lean_object* l_Lean_Elab_Term_toParserDescr_processUnary___boxed(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_Elab_initFn____x40_Lean_Elab_Util___hyg_1247____closed__1;
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__8;
|
||||
lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Command_elabMacroRulesAux___spec__1(lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*);
|
||||
uint8_t l_Lean_Parser_isParserCategory(lean_object*, lean_object*);
|
||||
lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Command_expandMacro___spec__2(size_t, size_t, lean_object*, lean_object*, lean_object*);
|
||||
|
|
@ -748,7 +748,6 @@ lean_object* l_Lean_Elab_Term_toParserDescr_processAtom___closed__4;
|
|||
lean_object* l_Lean_Elab_Command_elabSyntaxAbbrev___closed__2;
|
||||
lean_object* l_Lean_Elab_Term_toParserDescr_process(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_resolveGlobalConst___at_Lean_Elab_Term_toParserDescr_resolveParserName___spec__2___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__1;
|
||||
extern lean_object* l_Lean_evalPrec___closed__1;
|
||||
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*, lean_object*);
|
||||
lean_object* l_Lean_setEnv___at_Lean_Elab_Command_elabInitQuot___spec__1(lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
|
|
@ -761,6 +760,7 @@ lean_object* l_Lean_Elab_Command_expandMixfix___lambda__5(lean_object*, lean_obj
|
|||
extern lean_object* l_Lean_Parser_tokenWithAntiquotFn___lambda__2___closed__1;
|
||||
lean_object* l_Lean_Elab_Command_expandElab___lambda__2___closed__47;
|
||||
lean_object* l_Lean_throwErrorAt___at_Lean_Elab_Term_checkLeftRec___spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__8;
|
||||
lean_object* l_Lean_Elab_Command_getMainModule___rarg(lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Parser_isParserAlias(lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Elab_Command_elabSyntax___lambda__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
|
|
@ -4145,7 +4145,7 @@ static lean_object* _init_l_Lean_Elab_Term_toParserDescr_processNonReserved___cl
|
|||
_start:
|
||||
{
|
||||
lean_object* x_1; lean_object* x_2;
|
||||
x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__8;
|
||||
x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__8;
|
||||
x_2 = lean_string_utf8_byte_size(x_1);
|
||||
return x_2;
|
||||
}
|
||||
|
|
@ -4154,7 +4154,7 @@ static lean_object* _init_l_Lean_Elab_Term_toParserDescr_processNonReserved___cl
|
|||
_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_23515____closed__8;
|
||||
x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__8;
|
||||
x_2 = lean_unsigned_to_nat(0u);
|
||||
x_3 = l_Lean_Elab_Term_toParserDescr_processNonReserved___closed__9;
|
||||
x_4 = lean_alloc_ctor(0, 3, 0);
|
||||
|
|
@ -29942,7 +29942,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_47, x_98);
|
||||
x_100 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__1;
|
||||
x_100 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__1;
|
||||
lean_inc(x_89);
|
||||
x_101 = lean_alloc_ctor(2, 2, 0);
|
||||
lean_ctor_set(x_101, 0, x_89);
|
||||
|
|
|
|||
288
stage0/stdlib/Lean/Elab/Tactic/Basic.c
generated
288
stage0/stdlib/Lean/Elab/Tactic/Basic.c
generated
|
|
@ -50,7 +50,6 @@ lean_object* l___private_Lean_Elab_InfoTree_0__Lean_Elab_getResetInfoTrees___at_
|
|||
extern lean_object* l_Lean_nullKind;
|
||||
extern lean_object* l_myMacro____x40_Init_Notation___hyg_15342____closed__6;
|
||||
lean_object* l_Lean_Elab_Tactic_adaptExpander___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_Lean_Elab_Tactic_evalFirstNew(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_mkTacticAttribute(lean_object*);
|
||||
lean_object* l_Lean_Elab_Tactic_evalSkip___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_evalOpen___spec__15(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
|
|
@ -61,6 +60,7 @@ lean_object* lean_name_mk_string(lean_object*, lean_object*);
|
|||
uint8_t l_USize_decEq(size_t, size_t);
|
||||
lean_object* lean_array_uget(lean_object*, size_t);
|
||||
lean_object* lean_io_error_to_string(lean_object*);
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__5;
|
||||
uint8_t l_Lean_Elab_isAbortExceptionId(lean_object*);
|
||||
lean_object* l___regBuiltin_Lean_Elab_Tactic_evalRevert___closed__1;
|
||||
lean_object* l___private_Lean_Elab_Tactic_Basic_0__Lean_Elab_Tactic_sortFVarIds_match__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
|
|
@ -103,6 +103,7 @@ lean_object* l_Lean_Elab_Tactic_focusAndDone(lean_object*);
|
|||
lean_object* l___private_Lean_Elab_Tactic_Basic_0__Lean_Elab_Tactic_evalTacticUsing(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_Open_0__Lean_Elab_OpenDecl_elabOpenOnly___at_Lean_Elab_Tactic_evalOpen___spec__14(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Elab_Tactic_evalFocus___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*);
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__5;
|
||||
lean_object* l_Lean_Elab_liftMacroM___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Array_extract___rarg(lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Elab_withMacroExpansionInfo___at_Lean_Elab_Tactic_adaptExpander___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
|
|
@ -171,11 +172,9 @@ extern lean_object* l_Lean_Elab_logException___rarg___lambda__1___closed__2;
|
|||
lean_object* l_Lean_Elab_Tactic_withMainContext___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
uint8_t l_Lean_Name_isPrefixOf(lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Elab_Tactic_getGoals___boxed(lean_object*);
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__3;
|
||||
lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_evalClear___spec__1(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l___regBuiltin_Lean_Elab_Tactic_evalRotateRight(lean_object*);
|
||||
lean_object* l_Lean_Elab_Tactic_evalFocus___lambda__1(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_evalFirstNew(lean_object*);
|
||||
lean_object* l_Lean_Elab_Tactic_evalDone___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_Tactic_Basic_0__Lean_Elab_Tactic_sortFVarIds___lambda__1(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_evalTacticSeq1Indented(lean_object*);
|
||||
|
|
@ -200,7 +199,6 @@ extern lean_object* l_Lean_Meta_throwTacticEx___rarg___closed__2;
|
|||
uint8_t l___private_Lean_Message_0__Lean_beqMessageSeverity____x40_Lean_Message___hyg_102_(uint8_t, uint8_t);
|
||||
extern lean_object* l_instReprBool___closed__2;
|
||||
lean_object* l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalFirstNew___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_MonadRef_mkInfoFromRefPos___at_Lean_Elab_Tactic_evalIntro___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Elab_Tactic_evalContradiction___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Elab_Term_getMainModule___rarg(lean_object*, lean_object*);
|
||||
|
|
@ -218,7 +216,6 @@ lean_object* l_Lean_throwErrorAt___at___private_Lean_Elab_Tactic_Basic_0__Lean_E
|
|||
lean_object* l_Lean_Elab_Tactic_liftMetaMAtMain(lean_object*);
|
||||
lean_object* l_List_forIn_loop___at_Lean_Elab_Tactic_evalAllGoals___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* l_Lean_throwError___at_Lean_Elab_Tactic_getFVarId___spec__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_18175____closed__5;
|
||||
lean_object* l_Lean_Elab_Tactic_instMonadExceptExceptionTacticM___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*);
|
||||
extern lean_object* l_Lean_Parser_Tactic_focus___closed__2;
|
||||
lean_object* l_Lean_Elab_Tactic_evalAssumption___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
|
|
@ -235,6 +232,7 @@ extern lean_object* l_myMacro____x40_Init_Notation___hyg_15342____closed__5;
|
|||
lean_object* l___regBuiltin_Lean_Elab_Tactic_evalUnknown(lean_object*);
|
||||
lean_object* l_Lean_Name_toStringWithSep(lean_object*, lean_object*);
|
||||
lean_object* l___regBuiltin_Lean_Elab_Tactic_evalRotateLeft___closed__1;
|
||||
lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalFirst___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_SMap_find_x3f___at_Lean_Elab_getMacros___spec__2(lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Elab_Tactic_saveState(lean_object*);
|
||||
lean_object* l_Std_Range_forIn_loop___at_Lean_Elab_Tactic_evalCase___spec__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*);
|
||||
|
|
@ -246,7 +244,6 @@ lean_object* l_Lean_throwError___at_Lean_Elab_Tactic_getFVarId___spec__1___boxed
|
|||
lean_object* l_Std_Range_forIn_loop___at_Lean_Elab_Tactic_evalCase___spec__3___closed__1;
|
||||
lean_object* l_Lean_ScopedEnvExtension_popScope___rarg(lean_object*, lean_object*);
|
||||
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_evalFirstNew___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_Lean_Elab_Tactic_closeMainGoal___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_getMainGoal_loop(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_liftMacroM___rarg___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
|
|
@ -281,7 +278,6 @@ extern lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_1247____close
|
|||
lean_object* l___private_Lean_Elab_Tactic_Basic_0__Lean_Elab_Tactic_getOptRotation___boxed(lean_object*);
|
||||
lean_object* l___regBuiltin_Lean_Elab_Tactic_evalOpen___closed__1;
|
||||
uint8_t lean_nat_dec_eq(lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Basic___hyg_5672____closed__1;
|
||||
uint8_t l_Array_qsort_sort___at___private_Lean_Elab_Tactic_Basic_0__Lean_Elab_Tactic_sortFVarIds___spec__1___lambda__1(lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Meta_getMVarType(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Meta_mkSorry(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
|
|
@ -309,6 +305,7 @@ lean_object* l___private_Lean_Elab_Tactic_Basic_0__Lean_Elab_Tactic_findTag_x3f_
|
|||
lean_object* l_Lean_Elab_Tactic_instMonadExceptExceptionTacticM;
|
||||
lean_object* l_Lean_Elab_Tactic_evalFirst___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_Syntax_isStrLit_x3f(lean_object*);
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__2;
|
||||
lean_object* l_Lean_Elab_Tactic_withTacticInfoContext(lean_object*);
|
||||
lean_object* l___regBuiltin_Lean_Elab_Tactic_evalTacticSeq(lean_object*);
|
||||
lean_object* l_Lean_throwError___at_Lean_Elab_Tactic_elabSetOption___spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
|
|
@ -392,7 +389,6 @@ lean_object* l_Lean_Elab_Tactic_evalCase___lambda__1___boxed(lean_object*, lean_
|
|||
lean_object* l_Lean_Meta_revert(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Elab_Tactic_evalChoice___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_Tactic_Basic_0__Lean_Elab_Tactic_TacticM_runCore___rarg(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_evalFirstNew___closed__1;
|
||||
lean_object* l_Lean_Elab_Tactic_closeMainGoal___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_Lean_Meta_withMVarContext___at_Lean_Elab_Tactic_withMainContext___spec__1(lean_object*);
|
||||
lean_object* l_Lean_Elab_Tactic_instMonadExceptExceptionTacticM___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
|
|
@ -423,7 +419,6 @@ lean_object* l___regBuiltin_Lean_Elab_Tactic_evalTacticSeqBracketed(lean_object*
|
|||
lean_object* l_Lean_Elab_elabSetOption_setOption___at_Lean_Elab_Tactic_elabSetOption___spec__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Elab_Tactic_getMainModule___rarg(lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Elab_Tactic_evalChoice(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_20337____closed__5;
|
||||
lean_object* l___regBuiltin_Lean_Elab_Tactic_evalIntros(lean_object*);
|
||||
lean_object* l_Lean_Elab_Tactic_evalTraceState(lean_object*);
|
||||
size_t lean_usize_modn(size_t, lean_object*);
|
||||
|
|
@ -453,7 +448,6 @@ lean_object* l_Lean_Elab_Tactic_evalFailIfSuccess___closed__2;
|
|||
lean_object* l_Lean_Elab_elabSetOption_setOption___at_Lean_Elab_Tactic_elabSetOption___spec__6___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Elab_Term_reportUnsolvedGoals___closed__1;
|
||||
lean_object* l_ReaderT_bind___at_Lean_Elab_Term_instMonadLogTermElabM___spec__2___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_firstNew___closed__2;
|
||||
extern lean_object* l_Lean_Parser_Tactic_paren___closed__1;
|
||||
lean_object* l_Lean_Elab_Term_reportUnsolvedGoals___closed__4;
|
||||
lean_object* l_Lean_Elab_Tactic_evalRotateLeft___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
|
|
@ -466,7 +460,6 @@ lean_object* l_Std_PersistentHashMap_findAux___at_Lean_Elab_Tactic_evalTacticAux
|
|||
extern lean_object* l_Lean_KernelException_toMessageData___closed__3;
|
||||
size_t lean_usize_of_nat(lean_object*);
|
||||
lean_object* l_Std_Range_forIn_loop___at_Lean_Elab_Tactic_evalCase___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Elab_Tactic_evalFirstNew_loop(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l___regBuiltin_Lean_Elab_Tactic_evalFirst(lean_object*);
|
||||
lean_object* l___private_Lean_Elab_Open_0__Lean_Elab_OpenDecl_addOpenDecl___at_Lean_Elab_Tactic_evalOpen___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* l_Lean_InternalExceptionId_getName(lean_object*, lean_object*);
|
||||
|
|
@ -481,7 +474,6 @@ lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_withMVarContextImp___rarg(
|
|||
lean_object* l_Lean_Elab_Tactic_evalAssumption___boxed(lean_object*);
|
||||
lean_object* l_Lean_Elab_Tactic_evalFirst_loop___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_forEachVar___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_evalFirstNew___boxed(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_nullKind___closed__2;
|
||||
lean_object* l_Lean_Elab_Tactic_instMonadExceptExceptionTacticM___closed__1;
|
||||
extern lean_object* l_Lean_Elab_elabSetOption___rarg___lambda__1___closed__2;
|
||||
|
|
@ -516,10 +508,10 @@ extern lean_object* l_Lean_Syntax_mkApp___closed__1;
|
|||
lean_object* l_Lean_Elab_withMacroExpansionInfo___at_Lean_Elab_Tactic_withMacroExpansion___spec__1(lean_object*);
|
||||
lean_object* l_Lean_Elab_Tactic_withMainContext(lean_object*);
|
||||
lean_object* l_Lean_Elab_Tactic_getMainGoal_loop_match__1(lean_object*);
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__2;
|
||||
lean_object* l_Lean_Elab_goalsToMessageData(lean_object*);
|
||||
lean_object* l_Std_PersistentArray_push___rarg(lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Meta_getMVars(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__2;
|
||||
lean_object* l_Lean_Elab_Tactic_getFVarIds___boxed__const__1;
|
||||
lean_object* l_Lean_Elab_Tactic_focusAndDone___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
uint8_t l_Lean_MetavarContext_isAnonymousMVar(lean_object*, lean_object*);
|
||||
|
|
@ -530,6 +522,7 @@ lean_object* l_Lean_Elab_Tactic_evalContradiction(lean_object*);
|
|||
lean_object* l___regBuiltin_Lean_Elab_Tactic_evalSeq1(lean_object*);
|
||||
lean_object* l_Lean_Syntax_getSepArgs(lean_object*);
|
||||
lean_object* l_Lean_Elab_Tactic_evalFailIfSuccess___closed__1;
|
||||
lean_object* l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Basic___hyg_5580____closed__1;
|
||||
lean_object* l_Lean_Elab_Tactic_evalRotateRight___boxed(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_evalRotateRight___closed__1;
|
||||
lean_object* l_Lean_Elab_Tactic_liftMetaTacticAux_match__1___rarg(lean_object*, lean_object*);
|
||||
|
|
@ -551,14 +544,12 @@ lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_evalTacticAux___spe
|
|||
lean_object* l_Lean_Elab_Tactic_getMainGoal_loop_match__1___rarg(lean_object*, lean_object*, lean_object*);
|
||||
extern lean_object* l_Lean_Elab_Term_instMonadInfoTreeTermElabM___closed__1;
|
||||
extern lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_1247____closed__1;
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__8;
|
||||
uint8_t lean_nat_dec_le(lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Elab_Tactic_ensureHasNoMVars___closed__2;
|
||||
lean_object* l_List_rotateRight___rarg(lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Elab_Tactic_evalCase___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Elab_Tactic_liftMetaTactic___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l___private_Lean_Elab_Tactic_Basic_0__Lean_Elab_Tactic_TacticM_runCore_x27___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_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalFirstNew___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Elab_Term_SavedState_restore(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Elab_Tactic_evalFirst___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_Lean_Syntax_getArgs(lean_object*);
|
||||
|
|
@ -595,13 +586,12 @@ lean_object* l_Lean_throwError___at_Lean_Meta_setInlineAttribute___spec__1___box
|
|||
extern lean_object* l_Lean_Parser_Tactic_match___elambda__1___closed__1;
|
||||
lean_object* l___private_Lean_Elab_InfoTree_0__Lean_Elab_getResetInfoTrees___at_Lean_Elab_Tactic_withTacticInfoContext___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Elab_Tactic_evalAssumption___rarg___closed__2;
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__8;
|
||||
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*);
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__2;
|
||||
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*);
|
||||
lean_object* l___private_Lean_Elab_Open_0__Lean_Elab_OpenDecl_elabOpenSimple___at_Lean_Elab_Tactic_evalOpen___spec__16(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* 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_evalFirstNew___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Elab_Tactic_evalCase___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*);
|
||||
extern lean_object* l_Lean_Parser_Tactic_case___closed__2;
|
||||
lean_object* l_Lean_Elab_Tactic_evalChoiceAux(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
|
|
@ -646,7 +636,7 @@ lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_evalOpen___spec__21_
|
|||
lean_object* l_Lean_Elab_Tactic_closeMainGoal(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Elab_liftMacroM___rarg___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Elab_Tactic_tryTactic___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_initFn____x40_Lean_Elab_Tactic_Basic___hyg_5672_(lean_object*);
|
||||
lean_object* l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Basic___hyg_5580_(lean_object*);
|
||||
lean_object* l_Lean_Meta_getMVarDecl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Meta_withPPInaccessibleNames___rarg(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_throwError___at_Lean_Elab_Tactic_throwNoGoalsToBeSolved___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
|
|
@ -677,6 +667,7 @@ lean_object* l_Lean_throwError___at_Lean_Elab_Tactic_throwNoGoalsToBeSolved___sp
|
|||
lean_object* l_List_findM_x3f___at___private_Lean_Elab_Tactic_Basic_0__Lean_Elab_Tactic_findTag_x3f___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l___regBuiltin_Lean_Elab_Tactic_evalIntroMatch(lean_object*);
|
||||
extern lean_object* l_Lean_Parser_Command_openSimple___elambda__1___closed__2;
|
||||
lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalFirst___spec__1___rarg(lean_object*);
|
||||
extern lean_object* l_Lean_Parser_Tactic_intro___closed__2;
|
||||
lean_object* l_List_forM___at_Lean_Elab_Tactic_expandTacticMacroFns_loop___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Elab_Tactic_replaceMainGoal(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
|
|
@ -686,6 +677,7 @@ extern lean_object* l_Lean_Elab_unsupportedSyntaxExceptionId;
|
|||
extern lean_object* l_Lean_Parser_Tactic_tactic___x3c_x3b_x3e_____closed__5;
|
||||
lean_object* l___private_Lean_Elab_Tactic_Basic_0__Lean_Elab_Tactic_evalTacticUsing_loop_match__1___rarg(lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Elab_elabSetOption___at_Lean_Elab_Tactic_elabSetOption___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__3;
|
||||
lean_object* l_Lean_addTrace___at_Lean_Elab_Tactic_expandTacticMacroFns_loop___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l___private_Lean_Elab_Tactic_Basic_0__Lean_Elab_Tactic_evalManyTacticOptSemi(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;
|
||||
|
|
@ -718,7 +710,6 @@ lean_object* l_Lean_Elab_Tactic_withMacroExpansion(lean_object*);
|
|||
lean_object* l_Lean_Elab_Tactic_focusAndDone___rarg___closed__1;
|
||||
extern lean_object* l_Lean_Parser_Tactic_intro___closed__3;
|
||||
lean_object* l_unsafeCast(lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalFirstNew___spec__1___rarg(lean_object*);
|
||||
extern lean_object* l_Lean_scopedEnvExtensionsRef;
|
||||
lean_object* l_Lean_Elab_OpenDecl_elabOpenDecl___at_Lean_Elab_Tactic_evalOpen___spec__3___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___private_Lean_Util_Trace_0__Lean_checkTraceOptionM___at_Lean_Elab_Tactic_expandTacticMacroFns_loop___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
|
|
@ -787,6 +778,7 @@ lean_object* l_Lean_Elab_log___at_Lean_Elab_Tactic_evalOpen___spec__8___boxed(le
|
|||
lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalChoiceAux___spec__1___rarg(lean_object*);
|
||||
lean_object* l_Lean_Elab_Tactic_liftMetaTacticAux___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l___regBuiltin_Lean_Elab_Tactic_evalParen(lean_object*);
|
||||
lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalFirst___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Elab_elabSetOption_setOption___at_Lean_Elab_Tactic_elabSetOption___spec__6___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l___private_Lean_Elab_Open_0__Lean_Elab_OpenDecl_elabOpenHiding___at_Lean_Elab_Tactic_evalOpen___spec__12___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Elab_logException___at_Lean_Elab_Tactic_closeUsingOrAdmit___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
|
|
@ -803,7 +795,6 @@ lean_object* l_Lean_Elab_Tactic_evalAllGoals(lean_object*, lean_object*, lean_ob
|
|||
lean_object* l_Lean_Elab_Tactic_evalIntros___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
uint8_t lean_nat_dec_lt(lean_object*, lean_object*);
|
||||
lean_object* l_List_forIn_loop___at_Lean_Elab_Tactic_tagUntaggedGoals___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Elab_Tactic_evalFirstNew_loop___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
extern lean_object* l_Lean_mkAnnotation___closed__1;
|
||||
lean_object* l_Lean_Elab_Tactic_evalSkip___rarg(lean_object*);
|
||||
uint8_t l_Lean_Syntax_isIdent(lean_object*);
|
||||
|
|
@ -13204,7 +13195,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_18175____closed__2;
|
||||
x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____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;
|
||||
|
|
@ -13460,7 +13451,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_18175____closed__5;
|
||||
x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__5;
|
||||
x_4 = l___regBuiltin_Lean_Elab_Tactic_evalTacticSeq1Indented___closed__1;
|
||||
x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1);
|
||||
return x_5;
|
||||
|
|
@ -17925,7 +17916,7 @@ x_19 = lean_string_dec_eq(x_17, x_18);
|
|||
if (x_19 == 0)
|
||||
{
|
||||
lean_object* x_20; uint8_t x_21;
|
||||
x_20 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__8;
|
||||
x_20 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__8;
|
||||
x_21 = lean_string_dec_eq(x_17, x_20);
|
||||
lean_dec(x_17);
|
||||
if (x_21 == 0)
|
||||
|
|
@ -18259,7 +18250,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_23515____closed__2;
|
||||
x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__2;
|
||||
x_4 = l___regBuiltin_Lean_Elab_Tactic_elabSetOption___closed__1;
|
||||
x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1);
|
||||
return x_5;
|
||||
|
|
@ -18722,7 +18713,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_18175____closed__3;
|
||||
x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____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;
|
||||
|
|
@ -19973,7 +19964,7 @@ x_54 = lean_alloc_ctor(1, 2, 0);
|
|||
lean_ctor_set(x_54, 0, x_41);
|
||||
lean_ctor_set(x_54, 1, x_53);
|
||||
x_55 = lean_array_push(x_38, x_54);
|
||||
x_56 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__2;
|
||||
x_56 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__2;
|
||||
x_57 = lean_alloc_ctor(1, 2, 0);
|
||||
lean_ctor_set(x_57, 0, x_56);
|
||||
lean_ctor_set(x_57, 1, x_55);
|
||||
|
|
@ -20111,7 +20102,7 @@ x_122 = lean_alloc_ctor(1, 2, 0);
|
|||
lean_ctor_set(x_122, 0, x_62);
|
||||
lean_ctor_set(x_122, 1, x_121);
|
||||
x_123 = lean_array_push(x_118, x_122);
|
||||
x_124 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__5;
|
||||
x_124 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__5;
|
||||
x_125 = lean_alloc_ctor(1, 2, 0);
|
||||
lean_ctor_set(x_125, 0, x_124);
|
||||
lean_ctor_set(x_125, 1, x_123);
|
||||
|
|
@ -20163,12 +20154,12 @@ x_153 = lean_alloc_ctor(1, 2, 0);
|
|||
lean_ctor_set(x_153, 0, x_83);
|
||||
lean_ctor_set(x_153, 1, x_152);
|
||||
x_154 = lean_array_push(x_75, x_153);
|
||||
x_155 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__5;
|
||||
x_155 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__5;
|
||||
x_156 = lean_alloc_ctor(1, 2, 0);
|
||||
lean_ctor_set(x_156, 0, x_155);
|
||||
lean_ctor_set(x_156, 1, x_154);
|
||||
x_157 = lean_array_push(x_75, x_156);
|
||||
x_158 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__3;
|
||||
x_158 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__3;
|
||||
x_159 = lean_alloc_ctor(1, 2, 0);
|
||||
lean_ctor_set(x_159, 0, x_158);
|
||||
lean_ctor_set(x_159, 1, x_157);
|
||||
|
|
@ -20182,7 +20173,7 @@ x_164 = lean_alloc_ctor(1, 2, 0);
|
|||
lean_ctor_set(x_164, 0, x_83);
|
||||
lean_ctor_set(x_164, 1, x_163);
|
||||
x_165 = lean_array_push(x_75, x_164);
|
||||
x_166 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__2;
|
||||
x_166 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____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);
|
||||
|
|
@ -24745,7 +24736,7 @@ x_18 = lean_unsigned_to_nat(3u);
|
|||
x_19 = l_Lean_Syntax_getArg(x_1, x_18);
|
||||
x_20 = lean_unsigned_to_nat(4u);
|
||||
x_21 = l_Lean_Syntax_getArg(x_1, x_20);
|
||||
x_22 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__3;
|
||||
x_22 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__3;
|
||||
lean_inc(x_21);
|
||||
x_23 = l_Lean_Syntax_isOfKind(x_21, x_22);
|
||||
if (x_23 == 0)
|
||||
|
|
@ -25102,7 +25093,7 @@ x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1);
|
|||
return x_5;
|
||||
}
|
||||
}
|
||||
lean_object* l_Lean_Elab_Tactic_evalFirstNew_loop(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) {
|
||||
lean_object* l_Lean_Elab_Tactic_evalFirst_loop(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) {
|
||||
_start:
|
||||
{
|
||||
lean_object* x_12; lean_object* x_13; lean_object* x_14; uint8_t x_15;
|
||||
|
|
@ -25178,16 +25169,16 @@ return x_31;
|
|||
}
|
||||
}
|
||||
}
|
||||
lean_object* l_Lean_Elab_Tactic_evalFirstNew_loop___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) {
|
||||
lean_object* l_Lean_Elab_Tactic_evalFirst_loop___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) {
|
||||
_start:
|
||||
{
|
||||
lean_object* x_12;
|
||||
x_12 = l_Lean_Elab_Tactic_evalFirstNew_loop(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11);
|
||||
x_12 = l_Lean_Elab_Tactic_evalFirst_loop(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11);
|
||||
lean_dec(x_1);
|
||||
return x_12;
|
||||
}
|
||||
}
|
||||
lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalFirstNew___spec__1___rarg(lean_object* x_1) {
|
||||
lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalFirst___spec__1___rarg(lean_object* x_1) {
|
||||
_start:
|
||||
{
|
||||
lean_object* x_2; lean_object* x_3;
|
||||
|
|
@ -25198,24 +25189,24 @@ lean_ctor_set(x_3, 1, x_1);
|
|||
return x_3;
|
||||
}
|
||||
}
|
||||
lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalFirstNew___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) {
|
||||
lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalFirst___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) {
|
||||
_start:
|
||||
{
|
||||
lean_object* x_9;
|
||||
x_9 = lean_alloc_closure((void*)(l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalFirstNew___spec__1___rarg), 1, 0);
|
||||
x_9 = lean_alloc_closure((void*)(l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalFirst___spec__1___rarg), 1, 0);
|
||||
return x_9;
|
||||
}
|
||||
}
|
||||
lean_object* l_Lean_Elab_Tactic_evalFirstNew___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) {
|
||||
lean_object* l_Lean_Elab_Tactic_evalFirst___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) {
|
||||
_start:
|
||||
{
|
||||
lean_object* x_12; lean_object* x_13;
|
||||
x_12 = lean_unsigned_to_nat(0u);
|
||||
x_13 = l_Lean_Elab_Tactic_evalFirstNew_loop(x_1, x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11);
|
||||
x_13 = l_Lean_Elab_Tactic_evalFirst_loop(x_1, x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11);
|
||||
return x_13;
|
||||
}
|
||||
}
|
||||
lean_object* l_Lean_Elab_Tactic_evalFirstNew(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) {
|
||||
lean_object* l_Lean_Elab_Tactic_evalFirst(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) {
|
||||
_start:
|
||||
{
|
||||
lean_object* x_11; lean_object* x_12; lean_object* x_13; uint8_t x_14;
|
||||
|
|
@ -25228,7 +25219,7 @@ if (x_14 == 0)
|
|||
{
|
||||
lean_object* x_15; lean_object* x_16;
|
||||
x_15 = lean_unsigned_to_nat(0u);
|
||||
x_16 = l_Lean_Elab_Tactic_evalFirstNew_loop(x_13, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10);
|
||||
x_16 = l_Lean_Elab_Tactic_evalFirst_loop(x_13, x_15, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10);
|
||||
lean_dec(x_13);
|
||||
return x_16;
|
||||
}
|
||||
|
|
@ -25244,7 +25235,7 @@ lean_dec(x_5);
|
|||
lean_dec(x_4);
|
||||
lean_dec(x_3);
|
||||
lean_dec(x_2);
|
||||
x_17 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalFirstNew___spec__1___rarg(x_10);
|
||||
x_17 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalFirst___spec__1___rarg(x_10);
|
||||
x_18 = !lean_is_exclusive(x_17);
|
||||
if (x_18 == 0)
|
||||
{
|
||||
|
|
@ -25266,11 +25257,11 @@ return x_21;
|
|||
}
|
||||
}
|
||||
}
|
||||
lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalFirstNew___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) {
|
||||
lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalFirst___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) {
|
||||
_start:
|
||||
{
|
||||
lean_object* x_9;
|
||||
x_9 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalFirstNew___spec__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8);
|
||||
x_9 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalFirst___spec__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8);
|
||||
lean_dec(x_8);
|
||||
lean_dec(x_7);
|
||||
lean_dec(x_6);
|
||||
|
|
@ -25282,198 +25273,6 @@ lean_dec(x_1);
|
|||
return x_9;
|
||||
}
|
||||
}
|
||||
lean_object* l_Lean_Elab_Tactic_evalFirstNew___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) {
|
||||
_start:
|
||||
{
|
||||
lean_object* x_12;
|
||||
x_12 = l_Lean_Elab_Tactic_evalFirstNew___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11);
|
||||
lean_dec(x_2);
|
||||
lean_dec(x_1);
|
||||
return x_12;
|
||||
}
|
||||
}
|
||||
lean_object* l_Lean_Elab_Tactic_evalFirstNew___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) {
|
||||
_start:
|
||||
{
|
||||
lean_object* x_11;
|
||||
x_11 = l_Lean_Elab_Tactic_evalFirstNew(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10);
|
||||
lean_dec(x_1);
|
||||
return x_11;
|
||||
}
|
||||
}
|
||||
static lean_object* _init_l___regBuiltin_Lean_Elab_Tactic_evalFirstNew___closed__1() {
|
||||
_start:
|
||||
{
|
||||
lean_object* x_1;
|
||||
x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_evalFirstNew___boxed), 10, 0);
|
||||
return x_1;
|
||||
}
|
||||
}
|
||||
lean_object* l___regBuiltin_Lean_Elab_Tactic_evalFirstNew(lean_object* x_1) {
|
||||
_start:
|
||||
{
|
||||
lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5;
|
||||
x_2 = l_Lean_Elab_Tactic_tacticElabAttribute;
|
||||
x_3 = l_Lean_Parser_Tactic_firstNew___closed__2;
|
||||
x_4 = l___regBuiltin_Lean_Elab_Tactic_evalFirstNew___closed__1;
|
||||
x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1);
|
||||
return x_5;
|
||||
}
|
||||
}
|
||||
lean_object* l_Lean_Elab_Tactic_evalFirst_loop(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) {
|
||||
_start:
|
||||
{
|
||||
lean_object* x_12; lean_object* x_13; lean_object* x_14; uint8_t x_15;
|
||||
x_12 = lean_array_get_size(x_1);
|
||||
x_13 = lean_unsigned_to_nat(1u);
|
||||
x_14 = lean_nat_sub(x_12, x_13);
|
||||
lean_dec(x_12);
|
||||
x_15 = lean_nat_dec_eq(x_2, x_14);
|
||||
lean_dec(x_14);
|
||||
if (x_15 == 0)
|
||||
{
|
||||
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;
|
||||
x_16 = l_Lean_instInhabitedSyntax;
|
||||
x_17 = lean_array_get(x_16, x_1, x_2);
|
||||
x_18 = lean_nat_add(x_2, x_13);
|
||||
lean_dec(x_2);
|
||||
x_19 = l_Lean_Elab_Tactic_saveState___rarg(x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11);
|
||||
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);
|
||||
lean_inc(x_10);
|
||||
lean_inc(x_9);
|
||||
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_22 = l_Lean_Elab_Tactic_evalTactic(x_17, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_21);
|
||||
if (lean_obj_tag(x_22) == 0)
|
||||
{
|
||||
lean_dec(x_20);
|
||||
lean_dec(x_18);
|
||||
lean_dec(x_10);
|
||||
lean_dec(x_9);
|
||||
lean_dec(x_8);
|
||||
lean_dec(x_7);
|
||||
lean_dec(x_6);
|
||||
lean_dec(x_5);
|
||||
lean_dec(x_4);
|
||||
lean_dec(x_3);
|
||||
return x_22;
|
||||
}
|
||||
else
|
||||
{
|
||||
lean_object* x_23; lean_object* x_24; lean_object* x_25;
|
||||
x_23 = lean_ctor_get(x_22, 1);
|
||||
lean_inc(x_23);
|
||||
lean_dec(x_22);
|
||||
x_24 = l_Lean_Elab_Tactic_SavedState_restore(x_20, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_23);
|
||||
x_25 = lean_ctor_get(x_24, 1);
|
||||
lean_inc(x_25);
|
||||
lean_dec(x_24);
|
||||
x_2 = x_18;
|
||||
x_11 = x_25;
|
||||
goto _start;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
lean_object* x_27; lean_object* x_28; lean_object* x_29;
|
||||
x_27 = l_Lean_instInhabitedSyntax;
|
||||
x_28 = lean_array_get(x_27, x_1, x_2);
|
||||
lean_dec(x_2);
|
||||
x_29 = l_Lean_Elab_Tactic_evalTactic(x_28, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11);
|
||||
return x_29;
|
||||
}
|
||||
}
|
||||
}
|
||||
lean_object* l_Lean_Elab_Tactic_evalFirst_loop___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) {
|
||||
_start:
|
||||
{
|
||||
lean_object* x_12;
|
||||
x_12 = l_Lean_Elab_Tactic_evalFirst_loop(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11);
|
||||
lean_dec(x_1);
|
||||
return x_12;
|
||||
}
|
||||
}
|
||||
lean_object* l_Lean_Elab_Tactic_evalFirst___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) {
|
||||
_start:
|
||||
{
|
||||
lean_object* x_12; lean_object* x_13;
|
||||
x_12 = lean_unsigned_to_nat(0u);
|
||||
x_13 = l_Lean_Elab_Tactic_evalFirst_loop(x_1, x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11);
|
||||
return x_13;
|
||||
}
|
||||
}
|
||||
lean_object* l_Lean_Elab_Tactic_evalFirst(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) {
|
||||
_start:
|
||||
{
|
||||
lean_object* x_11; lean_object* x_12; uint8_t x_13;
|
||||
x_11 = l_Lean_Syntax_getNumArgs(x_1);
|
||||
x_12 = lean_unsigned_to_nat(2u);
|
||||
x_13 = lean_nat_dec_eq(x_11, x_12);
|
||||
lean_dec(x_11);
|
||||
if (x_13 == 0)
|
||||
{
|
||||
lean_object* x_14; lean_object* x_15; uint8_t x_16;
|
||||
x_14 = l_Lean_Syntax_getArg(x_1, x_12);
|
||||
x_15 = l_Lean_Syntax_getSepArgs(x_14);
|
||||
lean_dec(x_14);
|
||||
x_16 = l_Array_isEmpty___rarg(x_15);
|
||||
if (x_16 == 0)
|
||||
{
|
||||
lean_object* x_17; lean_object* x_18;
|
||||
x_17 = lean_unsigned_to_nat(0u);
|
||||
x_18 = l_Lean_Elab_Tactic_evalFirst_loop(x_15, x_17, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10);
|
||||
lean_dec(x_15);
|
||||
return x_18;
|
||||
}
|
||||
else
|
||||
{
|
||||
lean_object* x_19; uint8_t x_20;
|
||||
lean_dec(x_15);
|
||||
lean_dec(x_9);
|
||||
lean_dec(x_8);
|
||||
lean_dec(x_7);
|
||||
lean_dec(x_6);
|
||||
lean_dec(x_5);
|
||||
lean_dec(x_4);
|
||||
lean_dec(x_3);
|
||||
lean_dec(x_2);
|
||||
x_19 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalFirstNew___spec__1___rarg(x_10);
|
||||
x_20 = !lean_is_exclusive(x_19);
|
||||
if (x_20 == 0)
|
||||
{
|
||||
return x_19;
|
||||
}
|
||||
else
|
||||
{
|
||||
lean_object* x_21; lean_object* x_22; lean_object* x_23;
|
||||
x_21 = lean_ctor_get(x_19, 0);
|
||||
x_22 = lean_ctor_get(x_19, 1);
|
||||
lean_inc(x_22);
|
||||
lean_inc(x_21);
|
||||
lean_dec(x_19);
|
||||
x_23 = lean_alloc_ctor(1, 2, 0);
|
||||
lean_ctor_set(x_23, 0, x_21);
|
||||
lean_ctor_set(x_23, 1, x_22);
|
||||
return x_23;
|
||||
}
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
lean_object* x_24;
|
||||
x_24 = l_Lean_Elab_Tactic_evalFirstNew(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10);
|
||||
return x_24;
|
||||
}
|
||||
}
|
||||
}
|
||||
lean_object* l_Lean_Elab_Tactic_evalFirst___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) {
|
||||
_start:
|
||||
{
|
||||
|
|
@ -25512,7 +25311,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_Tactic_initFn____x40_Lean_Elab_Tactic_Basic___hyg_5672____closed__1() {
|
||||
static lean_object* _init_l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Basic___hyg_5580____closed__1() {
|
||||
_start:
|
||||
{
|
||||
lean_object* x_1; lean_object* x_2; lean_object* x_3;
|
||||
|
|
@ -25522,11 +25321,11 @@ x_3 = lean_name_mk_string(x_1, x_2);
|
|||
return x_3;
|
||||
}
|
||||
}
|
||||
lean_object* l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Basic___hyg_5672_(lean_object* x_1) {
|
||||
lean_object* l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Basic___hyg_5580_(lean_object* x_1) {
|
||||
_start:
|
||||
{
|
||||
lean_object* x_2; lean_object* x_3;
|
||||
x_2 = l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Basic___hyg_5672____closed__1;
|
||||
x_2 = l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Basic___hyg_5580____closed__1;
|
||||
x_3 = l_Lean_registerTraceClass(x_2, x_1);
|
||||
return x_3;
|
||||
}
|
||||
|
|
@ -25829,19 +25628,14 @@ lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_evalCase___closed__1);
|
|||
res = l___regBuiltin_Lean_Elab_Tactic_evalCase(lean_io_mk_world());
|
||||
if (lean_io_result_is_error(res)) return res;
|
||||
lean_dec_ref(res);
|
||||
l___regBuiltin_Lean_Elab_Tactic_evalFirstNew___closed__1 = _init_l___regBuiltin_Lean_Elab_Tactic_evalFirstNew___closed__1();
|
||||
lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_evalFirstNew___closed__1);
|
||||
res = l___regBuiltin_Lean_Elab_Tactic_evalFirstNew(lean_io_mk_world());
|
||||
if (lean_io_result_is_error(res)) return res;
|
||||
lean_dec_ref(res);
|
||||
l___regBuiltin_Lean_Elab_Tactic_evalFirst___closed__1 = _init_l___regBuiltin_Lean_Elab_Tactic_evalFirst___closed__1();
|
||||
lean_mark_persistent(l___regBuiltin_Lean_Elab_Tactic_evalFirst___closed__1);
|
||||
res = l___regBuiltin_Lean_Elab_Tactic_evalFirst(lean_io_mk_world());
|
||||
if (lean_io_result_is_error(res)) return res;
|
||||
lean_dec_ref(res);
|
||||
l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Basic___hyg_5672____closed__1 = _init_l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Basic___hyg_5672____closed__1();
|
||||
lean_mark_persistent(l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Basic___hyg_5672____closed__1);
|
||||
res = l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Basic___hyg_5672_(lean_io_mk_world());
|
||||
l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Basic___hyg_5580____closed__1 = _init_l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Basic___hyg_5580____closed__1();
|
||||
lean_mark_persistent(l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Basic___hyg_5580____closed__1);
|
||||
res = l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Basic___hyg_5580_(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));
|
||||
|
|
|
|||
8
stage0/stdlib/Lean/Elab/Tactic/Induction.c
generated
8
stage0/stdlib/Lean/Elab/Tactic/Induction.c
generated
|
|
@ -78,6 +78,7 @@ lean_object* l_Lean_Meta_getElimInfo(lean_object*, lean_object*, lean_object*, l
|
|||
lean_object* lean_array_uset(lean_object*, size_t, lean_object*);
|
||||
lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_elabTaggedTerm___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_resolveGlobalConst___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_getElimNameInfo___spec__3___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__5;
|
||||
lean_object* l_Lean_Elab_Tactic_evalCases___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_mkMVar(lean_object*);
|
||||
extern lean_object* l_Array_empty___closed__1;
|
||||
|
|
@ -128,7 +129,6 @@ lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_ElimApp_mkElimApp___
|
|||
lean_object* l_Lean_Elab_Tactic_evalInduction___boxed__const__1;
|
||||
lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_generalizeTerm_match__1___rarg(lean_object*, lean_object*);
|
||||
lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_getAltNumFields_match__1(lean_object*);
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21307____closed__3;
|
||||
lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_ElimApp_evalAlts_go___spec__5___lambda__2___closed__5;
|
||||
lean_object* l_Lean_Elab_Tactic_ElimApp_evalAlts_go_match__1___rarg(lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_elabTaggedTerm___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
|
|
@ -275,7 +275,6 @@ lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_
|
|||
lean_object* lean_expr_dbg_to_string(lean_object*);
|
||||
lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_checkAltsOfOptInductionAlts___spec__1___lambda__2___closed__3;
|
||||
extern lean_object* l_Lean_instInhabitedExpr;
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__5;
|
||||
lean_object* l_Lean_resolveGlobalConst___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_getElimNameInfo___spec__3(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_ElimApp_mkElimApp_loop_match__1___rarg(uint8_t, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_List_forM___at_Lean_Elab_Tactic_ElimApp_evalAlts_go___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
|
|
@ -434,6 +433,7 @@ lean_object* l_Lean_addTrace___at_Lean_Elab_Tactic_expandTacticMacroFns_loop___s
|
|||
lean_object* l___regBuiltin_Lean_Elab_Tactic_evalCases(lean_object*);
|
||||
lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_checkAltsOfOptInductionAlts___spec__1___lambda__1___closed__1;
|
||||
lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_getUserGeneralizingFVarIds(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_21281____closed__3;
|
||||
lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_getArgExpectedType___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Tactic_ElimApp_evalAlts_go___spec__5___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, 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*, lean_object*);
|
||||
lean_object* l_Lean_Syntax_getArg(lean_object*, lean_object*);
|
||||
|
|
@ -637,7 +637,7 @@ uint8_t l_Lean_Elab_Tactic_isHoleRHS(lean_object* x_1) {
|
|||
_start:
|
||||
{
|
||||
lean_object* x_2; uint8_t x_3;
|
||||
x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__5;
|
||||
x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__5;
|
||||
lean_inc(x_1);
|
||||
x_3 = l_Lean_Syntax_isOfKind(x_1, x_2);
|
||||
if (x_3 == 0)
|
||||
|
|
@ -11537,7 +11537,7 @@ lean_dec(x_35);
|
|||
x_38 = lean_ctor_get(x_37, 0);
|
||||
lean_inc(x_38);
|
||||
lean_dec(x_37);
|
||||
x_39 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21307____closed__3;
|
||||
x_39 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21281____closed__3;
|
||||
x_40 = lean_name_mk_string(x_38, x_39);
|
||||
lean_inc(x_40);
|
||||
x_41 = l_Lean_Meta_getElimInfo(x_40, x_8, x_9, x_10, x_11, x_36);
|
||||
|
|
|
|||
20
stage0/stdlib/Lean/Elab/Tactic/Match.c
generated
20
stage0/stdlib/Lean/Elab/Tactic/Match.c
generated
|
|
@ -27,6 +27,7 @@ lean_object* l_Lean_Elab_Tactic_adaptExpander___lambda__1(lean_object*, lean_obj
|
|||
lean_object* lean_name_mk_string(lean_object*, lean_object*);
|
||||
uint8_t l_USize_decEq(size_t, size_t);
|
||||
lean_object* lean_array_uget(lean_object*, size_t);
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__5;
|
||||
lean_object* l___private_Lean_Elab_Tactic_Match_0__Lean_Elab_Tactic_mkAuxiliaryMatchTerm_match__1___rarg(lean_object*, lean_object*);
|
||||
lean_object* l_Array_append___rarg(lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalMatch___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
|
|
@ -35,6 +36,7 @@ lean_object* l_Lean_SourceInfo_fromRef(lean_object*);
|
|||
lean_object* l___private_Lean_Elab_Tactic_Match_0__Lean_Elab_Tactic_mkAuxiliaryMatchTermAux(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* lean_array_uset(lean_object*, size_t, lean_object*);
|
||||
lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Tactic_evalMatch___spec__3(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_20311____closed__5;
|
||||
lean_object* l_Lean_Elab_liftMacroM___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Elab_withMacroExpansionInfo___at_Lean_Elab_Tactic_adaptExpander___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Elab_Tactic_AuxMatchTermState_cases___default;
|
||||
|
|
@ -52,7 +54,6 @@ lean_object* lean_array_push(lean_object*, lean_object*);
|
|||
lean_object* lean_array_get_size(lean_object*);
|
||||
lean_object* l_Lean_Elab_Tactic_withMainContext___rarg(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_Elab_Term_initFn____x40_Lean_Elab_Match___hyg_9319____closed__1;
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__3;
|
||||
lean_object* l_Lean_throwError___at_Lean_Elab_Tactic_evalMatch___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Tactic_Match_0__Lean_Elab_Tactic_mkAuxiliaryMatchTermAux___spec__2___closed__4;
|
||||
size_t l_USize_shiftRight(size_t, size_t);
|
||||
|
|
@ -63,7 +64,6 @@ lean_object* l_Lean_throwErrorAt___at_Lean_Elab_Tactic_evalMatch___spec__1___box
|
|||
lean_object* l_Lean_Elab_Term_getMainModule___rarg(lean_object*, lean_object*);
|
||||
extern lean_object* l_myMacro____x40_Init_Notation___hyg_1481____closed__8;
|
||||
uint8_t l_USize_decLt(size_t, size_t);
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__5;
|
||||
lean_object* lean_nat_add(lean_object*, lean_object*);
|
||||
lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Tactic_Match_0__Lean_Elab_Tactic_mkAuxiliaryMatchTermAux___spec__2___closed__2;
|
||||
lean_object* l_Lean_Elab_liftMacroM___rarg___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
|
|
@ -99,7 +99,6 @@ lean_object* l___private_Lean_Elab_Tactic_Match_0__Lean_Elab_Tactic_mkAuxiliaryM
|
|||
extern lean_object* l_myMacro____x40_Init_Notation___hyg_16821____closed__12;
|
||||
lean_object* l_ReaderT_pure___at_Lean_Elab_liftMacroM___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Elab_Tactic_getMainGoal(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_20337____closed__5;
|
||||
lean_object* l_Lean_Elab_Tactic_evalEraseAuxDiscrs___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l___regBuiltin_Lean_Elab_Tactic_evalMatch___closed__1;
|
||||
extern lean_object* l_Lean_Parser_Tactic_paren___closed__1;
|
||||
|
|
@ -141,6 +140,7 @@ lean_object* l_Lean_Elab_liftMacroM___rarg___lambda__3___boxed(lean_object*, lea
|
|||
uint8_t l_Lean_Syntax_isOfKind(lean_object*, lean_object*);
|
||||
extern lean_object* l_prec_x28___x29___closed__7;
|
||||
lean_object* l_Lean_Elab_Tactic_replaceMainGoal(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_18139____closed__3;
|
||||
extern lean_object* l_prec_x28___x29___closed__3;
|
||||
lean_object* l_Lean_Syntax_getArg(lean_object*, lean_object*);
|
||||
extern lean_object* l_myMacro____x40_Init_Notation___hyg_15342____closed__10;
|
||||
|
|
@ -940,7 +940,7 @@ x_27 = l_myMacro____x40_Init_Notation___hyg_15342____closed__10;
|
|||
x_28 = l_Lean_Syntax_setKind(x_26, x_27);
|
||||
x_29 = lean_unsigned_to_nat(3u);
|
||||
x_30 = l_Lean_Syntax_getArg(x_28, x_29);
|
||||
x_31 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__5;
|
||||
x_31 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__5;
|
||||
lean_inc(x_30);
|
||||
x_32 = l_Lean_Syntax_isOfKind(x_30, x_31);
|
||||
if (x_32 == 0)
|
||||
|
|
@ -1091,12 +1091,12 @@ x_105 = lean_alloc_ctor(1, 2, 0);
|
|||
lean_ctor_set(x_105, 0, x_86);
|
||||
lean_ctor_set(x_105, 1, x_104);
|
||||
x_106 = lean_array_push(x_52, x_105);
|
||||
x_107 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__5;
|
||||
x_107 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__5;
|
||||
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_52, x_108);
|
||||
x_110 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__3;
|
||||
x_110 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__3;
|
||||
x_111 = lean_alloc_ctor(1, 2, 0);
|
||||
lean_ctor_set(x_111, 0, x_110);
|
||||
lean_ctor_set(x_111, 1, x_109);
|
||||
|
|
@ -1272,12 +1272,12 @@ x_182 = lean_alloc_ctor(1, 2, 0);
|
|||
lean_ctor_set(x_182, 0, x_163);
|
||||
lean_ctor_set(x_182, 1, x_181);
|
||||
x_183 = lean_array_push(x_52, x_182);
|
||||
x_184 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__5;
|
||||
x_184 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__5;
|
||||
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_52, x_185);
|
||||
x_187 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__3;
|
||||
x_187 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__3;
|
||||
x_188 = lean_alloc_ctor(1, 2, 0);
|
||||
lean_ctor_set(x_188, 0, x_187);
|
||||
lean_ctor_set(x_188, 1, x_186);
|
||||
|
|
@ -1519,12 +1519,12 @@ x_287 = lean_alloc_ctor(1, 2, 0);
|
|||
lean_ctor_set(x_287, 0, x_268);
|
||||
lean_ctor_set(x_287, 1, x_286);
|
||||
x_288 = lean_array_push(x_234, x_287);
|
||||
x_289 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__5;
|
||||
x_289 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__5;
|
||||
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_234, x_290);
|
||||
x_292 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__3;
|
||||
x_292 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__3;
|
||||
x_293 = lean_alloc_ctor(1, 2, 0);
|
||||
lean_ctor_set(x_293, 0, x_292);
|
||||
lean_ctor_set(x_293, 1, x_291);
|
||||
|
|
|
|||
30
stage0/stdlib/Lean/Elab/Term.c
generated
30
stage0/stdlib/Lean/Elab/Term.c
generated
|
|
@ -79,7 +79,6 @@ lean_object* l_Lean_Level_collectMVars(lean_object*, lean_object*);
|
|||
lean_object* lean_erase_macro_scopes(lean_object*);
|
||||
lean_object* l_ReaderT_read___at_Lean_Elab_Term_instMonadLogTermElabM___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
extern lean_object* l_Lean_Syntax_mkAntiquotSpliceNode___closed__4;
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20036____closed__2;
|
||||
extern lean_object* l_myMacro____x40_Init_Coe___hyg_166____closed__1;
|
||||
lean_object* l_Lean_stringToMessageData(lean_object*);
|
||||
lean_object* l_Lean_throwError___at_Lean_Elab_Term_throwMVarError___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
|
|
@ -201,6 +200,7 @@ lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_mkFreshTypeMVarFor___b
|
|||
lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_3526____closed__1;
|
||||
lean_object* l_Lean_Elab_Term_synthesizeInstMVarCore___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
extern lean_object* l_Lean_Parser_Term_type___elambda__1___closed__2;
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__5;
|
||||
lean_object* l_Lean_Elab_Term_registerCustomErrorIfMVar_match__1___rarg(lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_throwUnknownConstant___at_Lean_Elab_Term_elabDoubleQuotedName___spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_elabTermAux___lambda__3___closed__1;
|
||||
|
|
@ -339,7 +339,6 @@ lean_object* l_Lean_Elab_Term_instMonadQuotationTermElabM___closed__13;
|
|||
lean_object* l_List_map___at_Lean_resolveGlobalConst___spec__2(lean_object*);
|
||||
lean_object* l_Lean_Elab_Term_applyAttributesAt(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_List_forIn_loop___at_Lean_Elab_Term_logUnassignedUsingErrorInfos___spec__5___lambda__1(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_18175____closed__3;
|
||||
lean_object* l___regBuiltin_Lean_Elab_Term_elabDoubleQuotedName___closed__1;
|
||||
lean_object* l_Lean_Elab_Term_instToStringMVarErrorKind(lean_object*);
|
||||
extern lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Util_Trace_0__Lean_withNestedTracesFinalizer___spec__5___closed__1;
|
||||
|
|
@ -582,6 +581,7 @@ lean_object* l_Lean_Elab_Term_instToStringLVal(lean_object*);
|
|||
extern lean_object* l_Lean_Core_instMonadRefCoreM;
|
||||
lean_object* l_Lean_Elab_Term_MVarErrorInfo_logError___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Std_HashSetImp_insert___at___private_Lean_Elab_Term_0__Lean_Elab_Term_throwStuckAtUniverseCnstr___spec__4(lean_object*, lean_object*);
|
||||
extern lean_object* l_myMacro____x40_Init_Notation___hyg_23692____closed__2;
|
||||
lean_object* l_Lean_Elab_addCompletionInfo___at_Lean_Elab_Term_addDotCompletionInfo___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_tryCoeSort(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_decorateErrorMessageWithLambdaImplicitVars___closed__2;
|
||||
|
|
@ -623,6 +623,7 @@ lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_elabImplicitLambda(lea
|
|||
extern lean_object* l_Lean_Parser_Term_typeOf___elambda__1___closed__2;
|
||||
lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_throwStuckAtUniverseCnstr_match__1(lean_object*);
|
||||
lean_object* l_Lean_Elab_Term_elabQuotedName(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_20010____closed__1;
|
||||
lean_object* l_List_forIn_loop___at_Lean_Elab_Term_logUnassignedUsingErrorInfos___spec__5___lambda__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
uint8_t l_Lean_Level_any(lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Elab_Term_instMonadInfoTreeTermElabM___closed__4;
|
||||
|
|
@ -670,6 +671,7 @@ lean_object* l_Lean_Elab_Term_blockImplicitLambda___boxed(lean_object*);
|
|||
lean_object* l_Std_Range_forIn_loop___at___private_Lean_Elab_Term_0__Lean_Elab_Term_throwStuckAtUniverseCnstr___spec__14___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Term_addAutoBoundImplicits___spec__1(lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_elabOptLevel(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_20010____closed__2;
|
||||
lean_object* l_Lean_ScopedEnvExtension_pushScope___rarg(lean_object*, lean_object*);
|
||||
lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_tryCoe___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
extern lean_object* l_Lean_Meta_isCoeDecl___closed__34;
|
||||
|
|
@ -689,7 +691,6 @@ lean_object* l_Lean_MonadQuotation_addMacroScope___rarg___lambda__2(lean_object*
|
|||
lean_object* l_Lean_ofExcept___at_Lean_Elab_Term_evalExpr___spec__12___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Elab_Term_levelMVarToParam___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
extern lean_object* l_Lean_strLitKind___closed__2;
|
||||
extern lean_object* l_myMacro____x40_Init_Notation___hyg_23708____closed__2;
|
||||
lean_object* l___private_Lean_Elab_Open_0__Lean_Elab_OpenDecl_elabOpenOnly___at_Lean_Elab_Term_elabOpen___spec__14___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Elab_Term_withFreshMacroScope(lean_object*);
|
||||
lean_object* l_Lean_Name_toExprAux(lean_object*);
|
||||
|
|
@ -802,7 +803,6 @@ lean_object* l_Lean_Elab_Term_resolveName_x27_match__5(lean_object*);
|
|||
lean_object* l_Std_PersistentHashMap_findAtAux___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabUsingElabFns___spec__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Term_elabOpen___spec__18(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Array_anyMUnsafe_any___at_Lean_Elab_Term_logUnassignedUsingErrorInfos___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__5;
|
||||
lean_object* l_Lean_Elab_Term_elabLevel___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_MetavarContext_localDeclDependsOn(lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Term_instMetaEvalTermElabM___spec__10(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
|
|
@ -1057,7 +1057,6 @@ lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Term_addAutoBoundImplicits_
|
|||
lean_object* l___private_Init_Data_String_Basic_0__Substring_takeRightWhileAux___at_Lean_Elab_Term_resolveName_x27___spec__2___boxed(lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Elab_Term_instMetaEvalTermElabM___rarg___closed__6;
|
||||
extern lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Util___hyg_1247____closed__1;
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__8;
|
||||
lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_tryLiftAndCoe___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_logUnassignedUsingErrorInfos___closed__1;
|
||||
lean_object* l_Lean_Elab_Term_addDotCompletionInfo(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
|
|
@ -1156,6 +1155,7 @@ lean_object* l_Lean_Elab_throwAbortCommand___at_Lean_Elab_Term_ensureNoUnassigne
|
|||
lean_object* l_Lean_Elab_Term_State_infoState___default___closed__1;
|
||||
lean_object* l_Lean_Elab_Term_evalExpr___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
extern lean_object* l_Lean_Elab_pp_macroStack;
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__8;
|
||||
lean_object* l_Lean_Elab_Term_resolveName_x27___closed__1;
|
||||
lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Term_0__Lean_Elab_Term_throwStuckAtUniverseCnstr___spec__11(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l___regBuiltin_Lean_Elab_Term_elabProp___closed__1;
|
||||
|
|
@ -1343,6 +1343,7 @@ lean_object* l_Lean_Elab_Term_throwTypeMismatchError_match__1(lean_object*);
|
|||
lean_object* l_ReaderT_read___at_Lean_Elab_Term_instMonadLogTermElabM___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Elab_Term_TermElabM_run_x27(lean_object*);
|
||||
uint8_t l___private_Lean_Elab_Term_0__Lean_Elab_Term_isNoImplicitLambda(lean_object*);
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__3;
|
||||
lean_object* l_Lean_Elab_Term_tryCoeThunk_x3f___closed__1;
|
||||
lean_object* l_Lean_Expr_FindImpl_findM_x3f_visit(lean_object*, size_t, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Elab_Term_tryPostpone(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
|
|
@ -1433,7 +1434,6 @@ lean_object* l_Lean_Elab_Term_resolveName___lambda__3___boxed(lean_object*, lean
|
|||
lean_object* lean_usize_to_nat(size_t);
|
||||
lean_object* l_List_foldlM___at_Lean_Elab_Term_evalExpr___spec__10(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* lean_expr_update_app(lean_object*, lean_object*, lean_object*);
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20036____closed__1;
|
||||
lean_object* l_Lean_Elab_Term_setMessageLog(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_15342____closed__12;
|
||||
uint8_t lean_level_eq(lean_object*, lean_object*);
|
||||
|
|
@ -22817,7 +22817,7 @@ x_3 = l_Lean_Syntax_isOfKind(x_1, x_2);
|
|||
if (x_3 == 0)
|
||||
{
|
||||
lean_object* x_4; uint8_t x_5;
|
||||
x_4 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__5;
|
||||
x_4 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__5;
|
||||
lean_inc(x_1);
|
||||
x_5 = l_Lean_Syntax_isOfKind(x_1, x_4);
|
||||
if (x_5 == 0)
|
||||
|
|
@ -22873,7 +22873,7 @@ uint8_t l___private_Lean_Elab_Term_0__Lean_Elab_Term_isTacticBlock(lean_object*
|
|||
_start:
|
||||
{
|
||||
lean_object* x_2; uint8_t x_3;
|
||||
x_2 = l_myMacro____x40_Init_Notation___hyg_23708____closed__2;
|
||||
x_2 = l_myMacro____x40_Init_Notation___hyg_23692____closed__2;
|
||||
lean_inc(x_1);
|
||||
x_3 = l_Lean_Syntax_isOfKind(x_1, x_2);
|
||||
if (x_3 == 0)
|
||||
|
|
@ -22889,7 +22889,7 @@ lean_object* x_5; lean_object* x_6; lean_object* x_7; uint8_t x_8;
|
|||
x_5 = lean_unsigned_to_nat(1u);
|
||||
x_6 = l_Lean_Syntax_getArg(x_1, x_5);
|
||||
lean_dec(x_1);
|
||||
x_7 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__3;
|
||||
x_7 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__3;
|
||||
x_8 = l_Lean_Syntax_isOfKind(x_6, x_7);
|
||||
return x_8;
|
||||
}
|
||||
|
|
@ -22908,7 +22908,7 @@ uint8_t l___private_Lean_Elab_Term_0__Lean_Elab_Term_isNoImplicitLambda(lean_obj
|
|||
_start:
|
||||
{
|
||||
lean_object* x_2; uint8_t x_3;
|
||||
x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20036____closed__2;
|
||||
x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20010____closed__2;
|
||||
x_3 = l_Lean_Syntax_isOfKind(x_1, x_2);
|
||||
return x_3;
|
||||
}
|
||||
|
|
@ -22927,7 +22927,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_20036____closed__1;
|
||||
x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20010____closed__1;
|
||||
x_3 = lean_name_mk_string(x_1, x_2);
|
||||
return x_3;
|
||||
}
|
||||
|
|
@ -34520,7 +34520,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_20337____closed__5;
|
||||
x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__5;
|
||||
x_4 = l___regBuiltin_Lean_Elab_Term_elabSyntheticHole___closed__1;
|
||||
x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1);
|
||||
return x_5;
|
||||
|
|
@ -34671,7 +34671,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_myMacro____x40_Init_Notation___hyg_23708____closed__2;
|
||||
x_3 = l_myMacro____x40_Init_Notation___hyg_23692____closed__2;
|
||||
x_4 = l___regBuiltin_Lean_Elab_Term_elabByTactic___closed__1;
|
||||
x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1);
|
||||
return x_5;
|
||||
|
|
@ -34743,7 +34743,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_20036____closed__2;
|
||||
x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20010____closed__2;
|
||||
x_4 = l___regBuiltin_Lean_Elab_Term_elabNoImplicitLambda___closed__1;
|
||||
x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1);
|
||||
return x_5;
|
||||
|
|
@ -44667,7 +44667,7 @@ x_17 = lean_string_dec_eq(x_15, x_16);
|
|||
if (x_17 == 0)
|
||||
{
|
||||
lean_object* x_18; uint8_t x_19;
|
||||
x_18 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__8;
|
||||
x_18 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__8;
|
||||
x_19 = lean_string_dec_eq(x_15, x_18);
|
||||
lean_dec(x_15);
|
||||
if (x_19 == 0)
|
||||
|
|
|
|||
4
stage0/stdlib/Lean/Meta/IndPredBelow.c
generated
4
stage0/stdlib/Lean/Meta/IndPredBelow.c
generated
|
|
@ -119,7 +119,6 @@ lean_object* l_Lean_Meta_IndPredBelow_instInhabitedVariables;
|
|||
lean_object* l_Array_foldrMUnsafe_fold___at_Lean_Meta_IndPredBelow_mkContext_addMotives___spec__1___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Meta_IndPredBelow_mkCtorType_mkMotiveBinder___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Array_mapMUnsafe_map___at_Lean_Meta_IndPredBelow_mkContext_mkHeader___spec__1(size_t, size_t, lean_object*);
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21307____closed__3;
|
||||
lean_object* l_Array_foldrMUnsafe_fold___at_Lean_Meta_IndPredBelow_mkContext_addMotives___spec__1___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Meta_IndPredBelow_mkCtorType(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Array_mapMUnsafe_map___at_Lean_LocalContext_getFVars___spec__1(size_t, size_t, lean_object*);
|
||||
|
|
@ -384,6 +383,7 @@ lean_object* l_Array_mapMUnsafe_map___at_Lean_Meta_IndPredBelow_mkCtorType_repla
|
|||
lean_object* l_Lean_Meta_IndPredBelow_mkContext_addMotives_match__1(lean_object*);
|
||||
lean_object* l_Array_foldrMUnsafe_fold___at_Lean_Meta_IndPredBelow_proveBrecOn_applyCtors___spec__4(lean_object*, size_t, size_t, lean_object*);
|
||||
lean_object* l_Array_foldrMUnsafe_fold___at_Lean_Meta_IndPredBelow_mkContext_addMotives___spec__2___boxed(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_21281____closed__3;
|
||||
extern lean_object* l_Lean_instInhabitedInductiveVal;
|
||||
lean_object* l_Lean_Meta_IndPredBelow_proveBrecOn_intros_match__1___rarg(lean_object*, lean_object*);
|
||||
extern lean_object* l_Lean_mkOptionalNode___closed__2;
|
||||
|
|
@ -8313,7 +8313,7 @@ lean_dec(x_30);
|
|||
x_33 = lean_ctor_get(x_23, 0);
|
||||
lean_inc(x_33);
|
||||
lean_dec(x_23);
|
||||
x_34 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21307____closed__3;
|
||||
x_34 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21281____closed__3;
|
||||
x_35 = lean_name_mk_string(x_33, x_34);
|
||||
x_36 = l_Lean_getConstInfo___at_Lean_Meta_mkConstWithFreshMVarLevels___spec__1(x_35, x_5, x_6, x_7, x_8, x_32);
|
||||
if (lean_obj_tag(x_36) == 0)
|
||||
|
|
|
|||
16
stage0/stdlib/Lean/Meta/RecursorInfo.c
generated
16
stage0/stdlib/Lean/Meta/RecursorInfo.c
generated
|
|
@ -95,7 +95,6 @@ extern lean_object* l_Lean_Expr_getAppArgs___closed__1;
|
|||
lean_object* l_Lean_getConstInfoInduct___at___private_Lean_Meta_RecursorInfo_0__Lean_Meta_mkRecursorInfoForKernelRec___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Meta_Attribute_Recursor_getMajorPos___closed__3;
|
||||
lean_object* l_Lean_Meta_RecursorInfo_instToStringRecursorInfo___closed__13;
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21307____closed__3;
|
||||
lean_object* l_Lean_throwErrorAt___at_Lean_getAttrParamOptPrio___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Meta_mkRecursorInfo_match__1___rarg(lean_object*, lean_object*, lean_object*);
|
||||
extern lean_object* l_instReprBool___closed__2;
|
||||
|
|
@ -260,7 +259,6 @@ uint8_t lean_expr_eqv(lean_object*, lean_object*);
|
|||
lean_object* l___private_Lean_Meta_RecursorInfo_0__Lean_Meta_getProduceMotiveAndRecursive_match__2(lean_object*);
|
||||
lean_object* l_Lean_Expr_withAppAux___at___private_Lean_Meta_RecursorInfo_0__Lean_Meta_mkRecursorInfoAux___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, 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*);
|
||||
lean_object* l_Lean_registerParametricAttribute___at_Lean_Meta_initFn____x40_Lean_Meta_RecursorInfo___hyg_2259____spec__1___closed__1;
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__8;
|
||||
uint8_t lean_nat_dec_le(lean_object*, lean_object*);
|
||||
lean_object* l___private_Lean_Meta_RecursorInfo_0__Lean_Meta_getMajorPosIfAuxRecursor_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l___private_Lean_Meta_RecursorInfo_0__Lean_Meta_getMajorPosIfAuxRecursor_x3f_match__1(lean_object*);
|
||||
|
|
@ -277,6 +275,7 @@ lean_object* l_Std_Range_forIn_loop___at___private_Lean_Meta_RecursorInfo_0__Lea
|
|||
lean_object* l_Lean_Meta_mkRecursorInfo_match__1(lean_object*);
|
||||
lean_object* l___private_Lean_Meta_RecursorInfo_0__Lean_Meta_getProduceMotiveAndRecursive___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_Meta_RecursorInfo_0__Lean_Meta_mkRecursorInfoCore_match__1___rarg(lean_object*, lean_object*, lean_object*);
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__8;
|
||||
lean_object* l___private_Lean_Meta_RecursorInfo_0__Lean_Meta_getMotiveLevel___closed__2;
|
||||
lean_object* l_Lean_Meta_Attribute_Recursor_getMajorPos(lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_throwError___at___private_Lean_Meta_RecursorInfo_0__Lean_Meta_getMajorPosDepElim___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
|
|
@ -320,6 +319,7 @@ lean_object* l_Lean_Expr_FindImpl_findM_x3f_visit(lean_object*, size_t, lean_obj
|
|||
lean_object* l_Lean_Meta_RecursorInfo_instToStringRecursorInfo(lean_object*);
|
||||
lean_object* l___private_Lean_Meta_RecursorInfo_0__Lean_Meta_mkRecursorInfoForKernelRec___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Meta_RecursorInfo_instToStringRecursorInfo___closed__7;
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21281____closed__3;
|
||||
uint8_t l_Array_contains___at_Lean_Meta_CheckAssignment_checkFVar___spec__1(lean_object*, lean_object*);
|
||||
lean_object* l___private_Lean_Meta_RecursorInfo_0__Lean_Meta_getParamsPos___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l___private_Lean_Meta_RecursorInfo_0__Lean_Meta_getUnivLevelPos___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
|
|
@ -1001,7 +1001,7 @@ _start:
|
|||
{
|
||||
lean_object* x_1; lean_object* x_2; lean_object* x_3;
|
||||
x_1 = l_term_x5b___x5d___closed__5;
|
||||
x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__8;
|
||||
x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__8;
|
||||
x_3 = lean_string_append(x_1, x_2);
|
||||
return x_3;
|
||||
}
|
||||
|
|
@ -1072,7 +1072,7 @@ x_18 = lean_unbox(x_14);
|
|||
if (x_18 == 0)
|
||||
{
|
||||
lean_object* x_19; lean_object* x_20;
|
||||
x_19 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__8;
|
||||
x_19 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__8;
|
||||
x_20 = lean_string_append(x_19, x_17);
|
||||
lean_dec(x_17);
|
||||
return x_20;
|
||||
|
|
@ -1327,7 +1327,7 @@ x_40 = l_List_toString___at_Lean_Meta_RecursorInfo_instToStringRecursorInfo___sp
|
|||
if (x_23 == 0)
|
||||
{
|
||||
lean_object* x_91;
|
||||
x_91 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__8;
|
||||
x_91 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__8;
|
||||
x_41 = x_91;
|
||||
goto block_90;
|
||||
}
|
||||
|
|
@ -1349,7 +1349,7 @@ x_45 = lean_string_append(x_43, x_44);
|
|||
if (x_24 == 0)
|
||||
{
|
||||
lean_object* x_88;
|
||||
x_88 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__8;
|
||||
x_88 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__8;
|
||||
x_46 = x_88;
|
||||
goto block_87;
|
||||
}
|
||||
|
|
@ -2256,7 +2256,7 @@ block_54:
|
|||
{
|
||||
lean_object* x_19; lean_object* x_20; lean_object* x_21;
|
||||
lean_dec(x_18);
|
||||
x_19 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21307____closed__3;
|
||||
x_19 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21281____closed__3;
|
||||
x_20 = lean_name_mk_string(x_16, x_19);
|
||||
x_21 = l_Lean_getConstInfoRec___at___private_Lean_Meta_RecursorInfo_0__Lean_Meta_getMajorPosIfAuxRecursor_x3f___spec__1(x_20, x_3, x_4, x_5, x_6, x_11);
|
||||
if (lean_obj_tag(x_21) == 0)
|
||||
|
|
@ -2473,7 +2473,7 @@ block_99:
|
|||
{
|
||||
lean_object* x_76; lean_object* x_77; lean_object* x_78;
|
||||
lean_dec(x_75);
|
||||
x_76 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21307____closed__3;
|
||||
x_76 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21281____closed__3;
|
||||
x_77 = lean_name_mk_string(x_73, x_76);
|
||||
x_78 = l_Lean_getConstInfoRec___at___private_Lean_Meta_RecursorInfo_0__Lean_Meta_getMajorPosIfAuxRecursor_x3f___spec__1(x_77, x_3, x_4, x_5, x_6, x_67);
|
||||
if (lean_obj_tag(x_78) == 0)
|
||||
|
|
|
|||
10
stage0/stdlib/Lean/Meta/SizeOf.c
generated
10
stage0/stdlib/Lean/Meta/SizeOf.c
generated
|
|
@ -114,7 +114,6 @@ lean_object* l_Lean_Meta_SizeOfSpecNested_throwUnexpected___rarg___closed__1;
|
|||
lean_object* l_Lean_Expr_appArg_x21(lean_object*);
|
||||
lean_object* l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfMinors_loop___rarg___lambda__1___closed__2;
|
||||
lean_object* l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkLocalInstances_loop___rarg___lambda__1(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_21307____closed__3;
|
||||
lean_object* l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
uint8_t l_USize_decLt(size_t, size_t);
|
||||
lean_object* l_Lean_Meta_whnfI(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
|
|
@ -376,6 +375,7 @@ lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_SizeOf___hyg_4920_(lean_object*
|
|||
lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_SizeOf___hyg_4479____closed__1;
|
||||
lean_object* l_Subarray_forInUnsafe_loop___at___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorem___spec__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* l_Lean_isInductivePredicate___at_Lean_Meta_mkSizeOfInstances___spec__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_21281____closed__3;
|
||||
lean_object* l___private_Lean_Meta_SizeOf_0__Lean_Meta_isRecField_x3f_match__1(lean_object*);
|
||||
lean_object* l_Lean_throwError___at_Lean_Meta_SizeOfSpecNested_throwFailed___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_SizeOf___hyg_4479____closed__4;
|
||||
|
|
@ -5210,7 +5210,7 @@ lean_dec(x_13);
|
|||
lean_inc(x_12);
|
||||
lean_inc(x_1);
|
||||
x_16 = lean_name_append_index_after(x_1, x_12);
|
||||
x_17 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21307____closed__3;
|
||||
x_17 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21281____closed__3;
|
||||
x_18 = lean_name_mk_string(x_10, x_17);
|
||||
lean_inc(x_7);
|
||||
lean_inc(x_6);
|
||||
|
|
@ -5305,7 +5305,7 @@ lean_inc(x_20);
|
|||
x_21 = lean_ctor_get(x_19, 1);
|
||||
lean_inc(x_21);
|
||||
lean_dec(x_19);
|
||||
x_22 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21307____closed__3;
|
||||
x_22 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21281____closed__3;
|
||||
lean_inc(x_1);
|
||||
x_23 = lean_name_mk_string(x_1, x_22);
|
||||
x_24 = lean_nat_add(x_5, x_16);
|
||||
|
|
@ -5473,7 +5473,7 @@ lean_inc(x_8);
|
|||
x_9 = lean_ctor_get(x_7, 1);
|
||||
lean_inc(x_9);
|
||||
lean_dec(x_7);
|
||||
x_10 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21307____closed__3;
|
||||
x_10 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21281____closed__3;
|
||||
x_11 = lean_name_mk_string(x_1, x_10);
|
||||
x_12 = l_Lean_getConstInfoRec___at_Lean_Meta_mkSizeOfFn___spec__1(x_11, x_2, x_3, x_4, x_5, x_9);
|
||||
if (lean_obj_tag(x_12) == 0)
|
||||
|
|
@ -11682,7 +11682,7 @@ lean_inc(x_39);
|
|||
x_40 = lean_ctor_get(x_39, 0);
|
||||
lean_inc(x_40);
|
||||
lean_dec(x_39);
|
||||
x_41 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21307____closed__3;
|
||||
x_41 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21281____closed__3;
|
||||
x_42 = lean_name_mk_string(x_40, x_41);
|
||||
lean_inc(x_42);
|
||||
x_43 = l_Lean_getConstInfoRec___at___private_Lean_Meta_SizeOf_0__Lean_Meta_SizeOfSpecNested_mkSizeOfAuxLemmaProof___spec__1(x_42, x_4, x_5, x_6, x_7, x_8, x_32);
|
||||
|
|
|
|||
4
stage0/stdlib/Lean/Meta/Tactic/Intro.c
generated
4
stage0/stdlib/Lean/Meta/Tactic/Intro.c
generated
|
|
@ -50,10 +50,10 @@ lean_object* l_Lean_Meta_intro_match__1___rarg(lean_object*, lean_object*);
|
|||
lean_object* l___private_Lean_Meta_Tactic_Intro_0__Lean_Meta_introNImp(lean_object*);
|
||||
lean_object* l___private_Lean_Meta_Tactic_Intro_0__Lean_Meta_introNImp_loop___rarg___closed__1;
|
||||
lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_Tactic_Intro___hyg_621_(lean_object*);
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__7;
|
||||
lean_object* l_Lean_Meta_intro(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_ReaderT_instMonadLiftReaderT(lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Meta_withNewLocalInstances___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__7;
|
||||
lean_object* l_Lean_Meta_intro1Core(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l___private_Lean_CoreM_0__Lean_Core_mkFreshNameImp(lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l___private_Lean_Meta_Tactic_Intro_0__Lean_Meta_introNImp_match__1___rarg(lean_object*, lean_object*);
|
||||
|
|
@ -1209,7 +1209,7 @@ lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_Tactic_Intro___hyg_621_(lean_ob
|
|||
_start:
|
||||
{
|
||||
lean_object* x_2; lean_object* x_3; lean_object* x_4;
|
||||
x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__7;
|
||||
x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__7;
|
||||
x_3 = l_Lean_Meta_initFn____x40_Lean_Meta_Tactic_Intro___hyg_621____closed__2;
|
||||
x_4 = l_Lean_Option_register___at_Std_Format_initFn____x40_Lean_Data_Format___hyg_53____spec__1(x_2, x_3, x_1);
|
||||
return x_4;
|
||||
|
|
|
|||
14
stage0/stdlib/Lean/Meta/Tactic/Simp/Main.c
generated
14
stage0/stdlib/Lean/Meta/Tactic/Simp/Main.c
generated
|
|
@ -17,6 +17,7 @@ lean_object* l_Lean_Meta_Simp_simp_simpLet___closed__1;
|
|||
lean_object* l___private_Lean_Meta_Tactic_Simp_Main_0__Lean_Meta_Simp_reduce___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
uint8_t l_Lean_Expr_bindingInfo_x21(lean_object*);
|
||||
lean_object* l_Lean_Meta_Simp_DefaultMethods_methods___closed__3;
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23250____closed__5;
|
||||
lean_object* l___private_Lean_Meta_Tactic_Simp_Main_0__Lean_Meta_Simp_dsimp___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l___private_Lean_Meta_Tactic_Simp_Main_0__Lean_Meta_Simp_unfold_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Meta_replaceTargetDefEq(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
|
|
@ -118,7 +119,6 @@ lean_object* l___private_Lean_Meta_Tactic_Simp_Main_0__Lean_Meta_Simp_mkCongr_ma
|
|||
lean_object* l_Lean_Meta_withIncRecDepth___at___private_Lean_Meta_Tactic_Simp_Main_0__Lean_Meta_Simp_dsimp___spec__13___rarg(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_Meta_Tactic_Simp_Main_0__Lean_Meta_Simp_reduceProjFn_x3f_match__1___rarg(lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Std_AssocList_replace___at_Lean_Meta_Simp_simp_cacheResult___spec__6(lean_object*, lean_object*, lean_object*);
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23266____closed__5;
|
||||
lean_object* l_Lean_Meta_Simp_simp_tryCongrLemma_x3f___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* l_Lean_Meta_Simp_simp_tryCongrLemma_x3f___lambda__6___closed__1;
|
||||
lean_object* l_ReaderT_bind___at_Lean_Meta_instMonadLCtxMetaM___spec__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
|
|
@ -190,6 +190,7 @@ lean_object* l_Lean_Meta_transform___at___private_Lean_Meta_Tactic_Simp_Main_0__
|
|||
lean_object* l_Lean_Meta_Simp_DefaultMethods_methods___closed__2;
|
||||
lean_object* l_Lean_Meta_Simp_simp_simpConst___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l___private_Lean_Meta_Tactic_Simp_Main_0__Lean_Meta_Simp_unfold_x3f___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_23250____closed__6;
|
||||
lean_object* l_Lean_Meta_Simp_simp___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* l___private_Lean_Meta_Basic_0__Lean_Meta_forallTelescopeReducingImp___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
extern lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_Tactic_Simp_CongrLemmas___hyg_1525____closed__1;
|
||||
|
|
@ -211,7 +212,6 @@ lean_object* l_Lean_Meta_Simp_simp_tryCongrLemma_x3f_match__3(lean_object*);
|
|||
extern lean_object* l_instReprBool___closed__3;
|
||||
lean_object* lean_array_fset(lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_instInhabited___rarg(lean_object*, lean_object*);
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23266____closed__6;
|
||||
lean_object* l_Lean_ConstantInfo_name(lean_object*);
|
||||
lean_object* l_Lean_Meta_Simp_simp_simpLet_match__1___rarg(lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Meta_Simp_simp_simpForall(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
|
|
@ -19545,7 +19545,7 @@ x_12 = lean_ctor_get(x_10, 0);
|
|||
x_13 = lean_ctor_get(x_10, 1);
|
||||
x_14 = lean_ctor_get(x_12, 0);
|
||||
lean_inc(x_14);
|
||||
x_15 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23266____closed__5;
|
||||
x_15 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23250____closed__5;
|
||||
x_16 = l_Lean_Expr_isConstOf(x_14, x_15);
|
||||
lean_dec(x_14);
|
||||
if (x_16 == 0)
|
||||
|
|
@ -19678,7 +19678,7 @@ lean_inc(x_41);
|
|||
lean_dec(x_10);
|
||||
x_43 = lean_ctor_get(x_41, 0);
|
||||
lean_inc(x_43);
|
||||
x_44 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23266____closed__5;
|
||||
x_44 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23250____closed__5;
|
||||
x_45 = l_Lean_Expr_isConstOf(x_43, x_44);
|
||||
lean_dec(x_43);
|
||||
if (x_45 == 0)
|
||||
|
|
@ -19908,7 +19908,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_23266____closed__6;
|
||||
x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23250____closed__6;
|
||||
x_3 = l_Lean_mkConst(x_2, x_1);
|
||||
return x_3;
|
||||
}
|
||||
|
|
@ -19957,7 +19957,7 @@ x_16 = lean_ctor_get(x_14, 0);
|
|||
x_17 = lean_ctor_get(x_14, 1);
|
||||
x_18 = lean_ctor_get(x_16, 0);
|
||||
lean_inc(x_18);
|
||||
x_19 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23266____closed__5;
|
||||
x_19 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23250____closed__5;
|
||||
x_20 = l_Lean_Expr_isConstOf(x_18, x_19);
|
||||
if (x_20 == 0)
|
||||
{
|
||||
|
|
@ -20254,7 +20254,7 @@ lean_inc(x_78);
|
|||
lean_dec(x_14);
|
||||
x_80 = lean_ctor_get(x_78, 0);
|
||||
lean_inc(x_80);
|
||||
x_81 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23266____closed__5;
|
||||
x_81 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23250____closed__5;
|
||||
x_82 = l_Lean_Expr_isConstOf(x_80, x_81);
|
||||
if (x_82 == 0)
|
||||
{
|
||||
|
|
|
|||
4
stage0/stdlib/Lean/Meta/Tactic/Simp/Rewrite.c
generated
4
stage0/stdlib/Lean/Meta/Tactic/Simp/Rewrite.c
generated
|
|
@ -14,6 +14,7 @@
|
|||
extern "C" {
|
||||
#endif
|
||||
uint8_t l_Lean_Meta_Simp_rewrite_inErasedSet(lean_object*, lean_object*);
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23250____closed__5;
|
||||
size_t l_USize_add(size_t, size_t);
|
||||
lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_withNewMCtxDepthImp___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_stringToMessageData(lean_object*);
|
||||
|
|
@ -60,7 +61,6 @@ lean_object* lean_array_get_size(lean_object*);
|
|||
lean_object* l_Lean_Meta_Simp_synthesizeArgs_synthesizeInstance___closed__5;
|
||||
lean_object* l_Lean_Meta_Simp_rewrite_tryLemma_x3f___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Meta_isClass_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23266____closed__5;
|
||||
lean_object* l_Array_forInUnsafe_loop___at_Lean_Meta_Simp_synthesizeArgs___spec__1___closed__4;
|
||||
lean_object* l_Lean_Expr_appArg_x21(lean_object*);
|
||||
uint8_t lean_expr_lt(lean_object*, lean_object*);
|
||||
|
|
@ -6853,7 +6853,7 @@ x_8 = l_Lean_Expr_hasMVar(x_1);
|
|||
if (x_8 == 0)
|
||||
{
|
||||
lean_object* x_9; uint8_t x_10;
|
||||
x_9 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23266____closed__5;
|
||||
x_9 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23250____closed__5;
|
||||
x_10 = l_Lean_Expr_isConstOf(x_1, x_9);
|
||||
if (x_10 == 0)
|
||||
{
|
||||
|
|
|
|||
4
stage0/stdlib/Lean/Meta/Tactic/Simp/SimpLemmas.c
generated
4
stage0/stdlib/Lean/Meta/Tactic/Simp/SimpLemmas.c
generated
|
|
@ -14,6 +14,7 @@
|
|||
extern "C" {
|
||||
#endif
|
||||
lean_object* l_Lean_ScopedEnvExtension_getState___at_Lean_Meta_initFn____x40_Lean_Meta_Tactic_Simp_SimpLemmas___hyg_2179____spec__1(lean_object*, lean_object*);
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23250____closed__5;
|
||||
lean_object* l___private_Init_Data_Array_BinSearch_0__Array_binInsertAux___at_Lean_Meta_addSimpLemmaEntry___spec__15___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_ScopedEnvExtension_modifyState___rarg(lean_object*, lean_object*, lean_object*);
|
||||
lean_object* lean_array_set(lean_object*, lean_object*, lean_object*);
|
||||
|
|
@ -98,7 +99,6 @@ lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Meta_Tactic_Simp_SimpLem
|
|||
lean_object* l_List_mapM___at___private_Lean_Meta_Tactic_Simp_SimpLemmas_0__Lean_Meta_preprocess___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Meta_mkSimpLemmas(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
uint8_t l_Array_anyMUnsafe_any___at_Lean_Meta_addSimpLemmaEntry___spec__12(lean_object*, lean_object*, size_t, size_t);
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23266____closed__5;
|
||||
lean_object* l_Lean_Meta_SimpLemmas_erase___rarg___closed__1;
|
||||
lean_object* l_Lean_throwError___at_Lean_registerTagAttribute___spec__5(lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_ReaderT_bind___at_Lean_Meta_instMonadLCtxMetaM___spec__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
|
|
@ -6120,7 +6120,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_23266____closed__5;
|
||||
x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23250____closed__5;
|
||||
x_3 = l_Lean_mkConst(x_2, x_1);
|
||||
return x_3;
|
||||
}
|
||||
|
|
|
|||
10
stage0/stdlib/Lean/MonadEnv.c
generated
10
stage0/stdlib/Lean/MonadEnv.c
generated
|
|
@ -72,7 +72,6 @@ lean_object* l_Lean_matchConstRec___rarg___lambda__1(lean_object*, lean_object*,
|
|||
lean_object* l_Lean_compileDecl___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_mkConstWithLevelParams___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_isInductive_match__1(lean_object*);
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21307____closed__3;
|
||||
lean_object* l___private_Lean_MonadEnv_0__Lean_supportedRecursors___closed__20;
|
||||
lean_object* l_Lean_setEnv(lean_object*);
|
||||
lean_object* l_Lean_hasConst___rarg(lean_object*, lean_object*, lean_object*);
|
||||
|
|
@ -202,6 +201,7 @@ lean_object* l_Lean_matchConstStruct(lean_object*, lean_object*);
|
|||
lean_object* l_Lean_getConstInfoRec___rarg___lambda__1___closed__2;
|
||||
lean_object* l_Lean_findModuleOf_x3f___rarg___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Expr_FindImpl_findM_x3f_visit(lean_object*, size_t, lean_object*, lean_object*);
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21281____closed__3;
|
||||
lean_object* l_Lean_getConstInfoRec___rarg(lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_isInductivePredicate_visit_match__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* lean_compile_decl(lean_object*, lean_object*, lean_object*);
|
||||
|
|
@ -2193,7 +2193,7 @@ _start:
|
|||
{
|
||||
lean_object* x_1; lean_object* x_2; lean_object* x_3;
|
||||
x_1 = l___private_Lean_MonadEnv_0__Lean_supportedRecursors___closed__2;
|
||||
x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21307____closed__3;
|
||||
x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21281____closed__3;
|
||||
x_3 = lean_name_mk_string(x_1, x_2);
|
||||
return x_3;
|
||||
}
|
||||
|
|
@ -2221,7 +2221,7 @@ _start:
|
|||
{
|
||||
lean_object* x_1; lean_object* x_2; lean_object* x_3;
|
||||
x_1 = l___private_Lean_MonadEnv_0__Lean_supportedRecursors___closed__5;
|
||||
x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21307____closed__3;
|
||||
x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21281____closed__3;
|
||||
x_3 = lean_name_mk_string(x_1, x_2);
|
||||
return x_3;
|
||||
}
|
||||
|
|
@ -2231,7 +2231,7 @@ _start:
|
|||
{
|
||||
lean_object* x_1; lean_object* x_2; lean_object* x_3;
|
||||
x_1 = l_myMacro____x40_Init_Notation___hyg_8668____closed__4;
|
||||
x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21307____closed__3;
|
||||
x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21281____closed__3;
|
||||
x_3 = lean_name_mk_string(x_1, x_2);
|
||||
return x_3;
|
||||
}
|
||||
|
|
@ -2281,7 +2281,7 @@ _start:
|
|||
{
|
||||
lean_object* x_1; lean_object* x_2; lean_object* x_3;
|
||||
x_1 = l_myMacro____x40_Init_Notation___hyg_10540____closed__4;
|
||||
x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21307____closed__3;
|
||||
x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_21281____closed__3;
|
||||
x_3 = lean_name_mk_string(x_1, x_2);
|
||||
return x_3;
|
||||
}
|
||||
|
|
|
|||
8
stage0/stdlib/Lean/Parser.c
generated
8
stage0/stdlib/Lean/Parser.c
generated
|
|
@ -18,6 +18,7 @@ lean_object* l_Lean_ParserCompiler_CombinatorAttribute_runDeclFor___rarg(lean_ob
|
|||
lean_object* l_Lean_PrettyPrinter_Formatter_interpretParserDescr___elambda__10(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Parser_initFn____x40_Lean_Parser___hyg_4____closed__35;
|
||||
lean_object* l___regBuiltin_Lean_PrettyPrinter_Parenthesizer_strLit_parenthesizer(lean_object*);
|
||||
extern lean_object* l_Lean_Parser_Tactic_first___closed__8;
|
||||
lean_object* l_Lean_PrettyPrinter_Parenthesizer_interpretParserDescr___elambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l___regBuiltin_Lean_PrettyPrinter_Parenthesizer_ident_parenthesizer___closed__1;
|
||||
lean_object* l___regBuiltin_Lean_PrettyPrinter_Parenthesizer_charLit_parenthesizer___closed__1;
|
||||
|
|
@ -155,7 +156,6 @@ lean_object* l_Lean_Parser_Term_ident_parenthesizer(lean_object*, lean_object*,
|
|||
extern lean_object* l_Lean_PrettyPrinter_combinatorParenthesizerAttribute;
|
||||
extern lean_object* l_Lean_Parser_tokenWithAntiquotFn___lambda__2___closed__4;
|
||||
lean_object* l_Lean_Parser_initFn____x40_Lean_Parser___hyg_4____closed__2;
|
||||
extern lean_object* l_Lean_Parser_Tactic_firstNew___closed__6;
|
||||
lean_object* l_Lean_PrettyPrinter_Formatter_interpretParserDescr___elambda__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_PrettyPrinter_Formatter_numLit_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_PrettyPrinter_Formatter_interpretParserDescr___elambda__9(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
|
|
@ -173,6 +173,7 @@ lean_object* l_Lean_PrettyPrinter_Parenthesizer_interpretParserDescr_match__1___
|
|||
lean_object* l_Lean_Parser_initFn____x40_Lean_Parser___hyg_4_(lean_object*);
|
||||
extern lean_object* l_Lean_Parser_instAndThenParser___closed__1;
|
||||
lean_object* l___regBuiltin_Lean_PrettyPrinter_Parenthesizer_scientificLit_parenthesizer___closed__1;
|
||||
extern lean_object* l_Lean_Parser_Tactic_first___closed__6;
|
||||
lean_object* l_Lean_Parser_initFn____x40_Lean_Parser___hyg_4____closed__34;
|
||||
extern lean_object* l_Lean_PrettyPrinter_Parenthesizer_parenthesizerAliasesRef;
|
||||
lean_object* l_Lean_PrettyPrinter_Formatter_interpretParserDescr___elambda__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
|
|
@ -208,7 +209,6 @@ lean_object* l_Lean_Parser_many1(lean_object*);
|
|||
lean_object* l___regBuiltin_Lean_PrettyPrinter_Parenthesizer_ident_parenthesizer(lean_object*);
|
||||
lean_object* l_Lean_PrettyPrinter_Formatter_andthen_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_PrettyPrinter_Parenthesizer_interpretParserDescr___elambda__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
extern lean_object* l_Lean_Parser_Tactic_firstNew___closed__8;
|
||||
extern lean_object* l_Lean_Parser_leadingNode_formatter___closed__2;
|
||||
lean_object* l_Lean_Parser_initFn____x40_Lean_Parser___hyg_4____closed__26;
|
||||
lean_object* l_Lean_PrettyPrinter_Parenthesizer_node_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
|
|
@ -693,7 +693,7 @@ lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41;
|
|||
x_38 = lean_ctor_get(x_37, 1);
|
||||
lean_inc(x_38);
|
||||
lean_dec(x_37);
|
||||
x_39 = l_Lean_Parser_Tactic_firstNew___closed__8;
|
||||
x_39 = l_Lean_Parser_Tactic_first___closed__8;
|
||||
x_40 = l_Lean_Parser_initFn____x40_Lean_Parser___hyg_4____closed__17;
|
||||
x_41 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_39, x_40, x_38);
|
||||
if (lean_obj_tag(x_41) == 0)
|
||||
|
|
@ -756,7 +756,7 @@ lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69;
|
|||
x_66 = lean_ctor_get(x_65, 1);
|
||||
lean_inc(x_66);
|
||||
lean_dec(x_65);
|
||||
x_67 = l_Lean_Parser_Tactic_firstNew___closed__6;
|
||||
x_67 = l_Lean_Parser_Tactic_first___closed__6;
|
||||
x_68 = l_Lean_Parser_initFn____x40_Lean_Parser___hyg_4____closed__31;
|
||||
x_69 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_67, x_68, x_66);
|
||||
if (lean_obj_tag(x_69) == 0)
|
||||
|
|
|
|||
48
stage0/stdlib/Lean/Parser/Command.c
generated
48
stage0/stdlib/Lean/Parser/Command.c
generated
|
|
@ -2000,6 +2000,7 @@ lean_object* l_Lean_Parser_Command_unsafe___elambda__1___closed__5;
|
|||
lean_object* l_Lean_Parser_Command_end___elambda__1___closed__13;
|
||||
lean_object* l_Lean_Parser_Command_structFields___elambda__1___closed__19;
|
||||
lean_object* l_Lean_Parser_Command_openOnly___closed__5;
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__1;
|
||||
lean_object* l_Lean_Parser_Command_declValSimple_formatter___closed__1;
|
||||
lean_object* l_Lean_Parser_Command_declValEqns___closed__6;
|
||||
lean_object* l_Lean_Parser_Command_check___elambda__1___closed__8;
|
||||
|
|
@ -2221,6 +2222,7 @@ lean_object* l_Lean_Parser_Tactic_set__option_formatter___closed__1;
|
|||
extern lean_object* l_term_x5b___x5d___closed__5;
|
||||
extern lean_object* l_Lean_Parser_numLit;
|
||||
extern lean_object* l_Lean_Parser_Term_dynamicQuot___elambda__1___closed__14;
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__2;
|
||||
lean_object* l___regBuiltin_Lean_Parser_Command_end_formatter(lean_object*);
|
||||
lean_object* l_Lean_Parser_Command_structSimpleBinder_parenthesizer___closed__4;
|
||||
extern lean_object* l_Lean_Parser_Term_leftArrow;
|
||||
|
|
@ -2446,7 +2448,6 @@ lean_object* l_Lean_Parser_Command_eval___elambda__1___closed__3;
|
|||
lean_object* l_Lean_Parser_Command_universes___elambda__1___closed__11;
|
||||
lean_object* l_Lean_Parser_Command_print_parenthesizer___closed__5;
|
||||
lean_object* l_Lean_Parser_Command_openRenaming_parenthesizer___closed__1;
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__9;
|
||||
lean_object* l_Lean_Parser_Command_structure_parenthesizer___closed__16;
|
||||
extern lean_object* l_Lean_Parser_Term_letIdLhs_parenthesizer___closed__5;
|
||||
lean_object* l_Lean_Parser_Command_declId___closed__7;
|
||||
|
|
@ -2506,7 +2507,6 @@ lean_object* l_Lean_Parser_Command_openRenaming___closed__8;
|
|||
lean_object* l_Lean_Parser_Command_inductive___closed__12;
|
||||
extern lean_object* l_Lean_Parser_Term_tupleTail___elambda__1___closed__10;
|
||||
lean_object* l_Lean_Parser_Command_declaration_parenthesizer___closed__2;
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__1;
|
||||
lean_object* l_Lean_Parser_Command_classInductive_formatter___closed__2;
|
||||
lean_object* l_Lean_Parser_Command_structExplicitBinder___elambda__1___closed__10;
|
||||
lean_object* l_Lean_Parser_Command_structExplicitBinder_formatter___closed__5;
|
||||
|
|
@ -2526,6 +2526,7 @@ lean_object* l_Lean_Parser_Command_export___elambda__1___closed__4;
|
|||
lean_object* l_Lean_Parser_Command_declValSimple___closed__9;
|
||||
lean_object* l_Lean_Parser_Command_structCtor_formatter___closed__7;
|
||||
lean_object* l_Lean_Parser_Command_inferMod_parenthesizer___closed__4;
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__9;
|
||||
lean_object* l_Lean_Parser_Command_openRenaming_formatter___closed__7;
|
||||
lean_object* l_Lean_Parser_Command_structure___closed__4;
|
||||
lean_object* l_Lean_Parser_Command_printAxioms___closed__2;
|
||||
|
|
@ -2547,7 +2548,6 @@ lean_object* l_Lean_Parser_Command_declValSimple___closed__8;
|
|||
lean_object* l_Lean_Parser_Command_declModifiers___closed__12;
|
||||
lean_object* l_Lean_Parser_Command_noncomputable___elambda__1___closed__9;
|
||||
lean_object* l_Lean_Parser_Command_attribute___closed__8;
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__2;
|
||||
lean_object* l_Lean_Parser_Command_structureTk___elambda__1(lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Parser_Command_reduce___elambda__1___closed__14;
|
||||
lean_object* l_Lean_Parser_Command_open___elambda__1(lean_object*, lean_object*);
|
||||
|
|
@ -35952,7 +35952,7 @@ _start:
|
|||
{
|
||||
lean_object* x_1; lean_object* x_2; lean_object* x_3;
|
||||
x_1 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1354____closed__3;
|
||||
x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__1;
|
||||
x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__1;
|
||||
x_3 = lean_name_mk_string(x_1, x_2);
|
||||
return x_3;
|
||||
}
|
||||
|
|
@ -35971,7 +35971,7 @@ static lean_object* _init_l_Lean_Parser_Command_set__option___elambda__1___close
|
|||
_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_23515____closed__1;
|
||||
x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__1;
|
||||
x_2 = l_Lean_Parser_Command_set__option___elambda__1___closed__2;
|
||||
x_3 = 1;
|
||||
x_4 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3);
|
||||
|
|
@ -36438,7 +36438,7 @@ static lean_object* _init_l_Lean_Parser_Command_set__option_formatter___closed__
|
|||
_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_23515____closed__1;
|
||||
x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__1;
|
||||
x_2 = l_Lean_Parser_Command_set__option___elambda__1___closed__2;
|
||||
x_3 = 1;
|
||||
x_4 = lean_box(x_3);
|
||||
|
|
@ -36584,7 +36584,7 @@ static lean_object* _init_l_Lean_Parser_Command_set__option_parenthesizer___clos
|
|||
_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_23515____closed__1;
|
||||
x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__1;
|
||||
x_2 = l_Lean_Parser_Command_set__option___elambda__1___closed__2;
|
||||
x_3 = 1;
|
||||
x_4 = lean_box(x_3);
|
||||
|
|
@ -44487,7 +44487,7 @@ _start:
|
|||
{
|
||||
lean_object* x_1; lean_object* x_2; lean_object* x_3;
|
||||
x_1 = l_Lean_myMacro____x40_Init_NotationExtra___hyg_1354____closed__3;
|
||||
x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__9;
|
||||
x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__9;
|
||||
x_3 = lean_name_mk_string(x_1, x_2);
|
||||
return x_3;
|
||||
}
|
||||
|
|
@ -46435,7 +46435,7 @@ _start:
|
|||
{
|
||||
lean_object* x_1; lean_object* x_2; lean_object* x_3;
|
||||
x_1 = l_myMacro____x40_Init_Notation___hyg_2278____closed__2;
|
||||
x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__1;
|
||||
x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__1;
|
||||
x_3 = lean_name_mk_string(x_1, x_2);
|
||||
return x_3;
|
||||
}
|
||||
|
|
@ -46454,7 +46454,7 @@ static lean_object* _init_l_Lean_Parser_Term_set__option___elambda__1___closed__
|
|||
_start:
|
||||
{
|
||||
lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4;
|
||||
x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__1;
|
||||
x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__1;
|
||||
x_2 = l_Lean_Parser_Term_set__option___elambda__1___closed__2;
|
||||
x_3 = 1;
|
||||
x_4 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3);
|
||||
|
|
@ -46882,7 +46882,7 @@ static lean_object* _init_l_Lean_Parser_Term_set__option_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_23515____closed__1;
|
||||
x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__1;
|
||||
x_2 = l_Lean_Parser_Term_set__option___elambda__1___closed__2;
|
||||
x_3 = 1;
|
||||
x_4 = lean_box(x_3);
|
||||
|
|
@ -46988,7 +46988,7 @@ static lean_object* _init_l_Lean_Parser_Term_set__option_parenthesizer___closed_
|
|||
_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_23515____closed__1;
|
||||
x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__1;
|
||||
x_2 = l_Lean_Parser_Term_set__option___elambda__1___closed__2;
|
||||
x_3 = 1;
|
||||
x_4 = lean_box(x_3);
|
||||
|
|
@ -47702,7 +47702,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_set__option___elambda__1___closed
|
|||
_start:
|
||||
{
|
||||
lean_object* x_1; lean_object* x_2;
|
||||
x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__2;
|
||||
x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__2;
|
||||
x_2 = lean_alloc_ctor(1, 1, 0);
|
||||
lean_ctor_set(x_2, 0, x_1);
|
||||
return x_2;
|
||||
|
|
@ -47712,7 +47712,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_set__option___elambda__1___closed
|
|||
_start:
|
||||
{
|
||||
lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4;
|
||||
x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__1;
|
||||
x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__1;
|
||||
x_2 = l_Lean_Parser_Tactic_set__option___elambda__1___closed__1;
|
||||
x_3 = 1;
|
||||
x_4 = l_Lean_Parser_mkAntiquot(x_1, x_2, x_3);
|
||||
|
|
@ -47771,7 +47771,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_set__option___elambda__1___closed
|
|||
_start:
|
||||
{
|
||||
lean_object* x_1; lean_object* x_2; lean_object* x_3;
|
||||
x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__2;
|
||||
x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__2;
|
||||
x_2 = l_Lean_Parser_Tactic_set__option___elambda__1___closed__6;
|
||||
x_3 = lean_alloc_closure((void*)(l_Lean_Parser_nodeFn), 4, 2);
|
||||
lean_closure_set(x_3, 0, x_1);
|
||||
|
|
@ -47879,7 +47879,7 @@ goto block_50;
|
|||
block_26:
|
||||
{
|
||||
lean_object* x_21; lean_object* x_22; lean_object* x_23; uint8_t x_24;
|
||||
x_21 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__2;
|
||||
x_21 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__2;
|
||||
x_22 = l_Lean_Parser_ParserState_mkNode(x_20, x_21, x_14);
|
||||
x_23 = lean_ctor_get(x_22, 4);
|
||||
lean_inc(x_23);
|
||||
|
|
@ -48065,7 +48065,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_set__option___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_23515____closed__2;
|
||||
x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__2;
|
||||
x_2 = l_Lean_Parser_Tactic_set__option___closed__4;
|
||||
x_3 = l_Lean_Parser_nodeInfo(x_1, x_2);
|
||||
return x_3;
|
||||
|
|
@ -48136,7 +48136,7 @@ _start:
|
|||
{
|
||||
lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7;
|
||||
x_2 = l_Lean_Parser_Tactic_tactic___x3c_x3b_x3e_____closed__6;
|
||||
x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__2;
|
||||
x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__2;
|
||||
x_4 = 1;
|
||||
x_5 = l_Lean_Parser_Tactic_set__option;
|
||||
x_6 = lean_unsigned_to_nat(1000u);
|
||||
|
|
@ -48148,7 +48148,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_set__option_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_23515____closed__1;
|
||||
x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__1;
|
||||
x_2 = l_Lean_Parser_Tactic_set__option___elambda__1___closed__1;
|
||||
x_3 = 1;
|
||||
x_4 = lean_box(x_3);
|
||||
|
|
@ -48211,7 +48211,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_set__option_formatter___closed__6
|
|||
_start:
|
||||
{
|
||||
lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4;
|
||||
x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__2;
|
||||
x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__2;
|
||||
x_2 = l_Lean_Parser_leadPrec;
|
||||
x_3 = l_Lean_Parser_Tactic_set__option_formatter___closed__5;
|
||||
x_4 = lean_alloc_closure((void*)(l_Lean_Parser_leadingNode_formatter___boxed), 8, 3);
|
||||
|
|
@ -48244,7 +48244,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_23515____closed__2;
|
||||
x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__2;
|
||||
x_4 = l___regBuiltin_Lean_Parser_Tactic_set__option_formatter___closed__1;
|
||||
x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1);
|
||||
return x_5;
|
||||
|
|
@ -48254,7 +48254,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_set__option_parenthesizer___close
|
|||
_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_23515____closed__1;
|
||||
x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__1;
|
||||
x_2 = l_Lean_Parser_Tactic_set__option___elambda__1___closed__1;
|
||||
x_3 = 1;
|
||||
x_4 = lean_box(x_3);
|
||||
|
|
@ -48317,7 +48317,7 @@ static lean_object* _init_l_Lean_Parser_Tactic_set__option_parenthesizer___close
|
|||
_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_23515____closed__2;
|
||||
x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__2;
|
||||
x_2 = l_Lean_Parser_leadPrec;
|
||||
x_3 = l_Lean_Parser_Tactic_set__option_parenthesizer___closed__5;
|
||||
x_4 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer___boxed), 8, 3);
|
||||
|
|
@ -48350,7 +48350,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_23515____closed__2;
|
||||
x_3 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__2;
|
||||
x_4 = l___regBuiltin_Lean_Parser_Tactic_set__option_parenthesizer___closed__1;
|
||||
x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1);
|
||||
return x_5;
|
||||
|
|
|
|||
8
stage0/stdlib/Lean/Parser/Do.c
generated
8
stage0/stdlib/Lean/Parser/Do.c
generated
|
|
@ -1095,6 +1095,7 @@ lean_object* l_Lean_Parser_Term_doIf_parenthesizer___closed__1;
|
|||
lean_object* l_Lean_Parser_Term_liftMethod___elambda__1___closed__9;
|
||||
lean_object* l_Lean_Parser_Term_doBreak___closed__4;
|
||||
lean_object* l_Lean_Parser_Term_termUnless___closed__2;
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__1;
|
||||
lean_object* l_Lean_Parser_Term_doDbgTrace___closed__7;
|
||||
lean_object* l_Lean_Parser_Term_doExpr___elambda__1___closed__5;
|
||||
lean_object* l_Lean_Parser_Term_doDbgTrace_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
|
|
@ -1267,7 +1268,6 @@ lean_object* l_Lean_Parser_Term_doLetArrow___closed__7;
|
|||
lean_object* l_Lean_Parser_Term_doElem_quot___elambda__1___closed__16;
|
||||
lean_object* l_Lean_Parser_Term_termFor_parenthesizer___closed__2;
|
||||
lean_object* l_Lean_Parser_Term_doBreak;
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__2;
|
||||
lean_object* l_Lean_Parser_Term_termTry___elambda__1(lean_object*, lean_object*);
|
||||
lean_object* l___regBuiltin_Lean_Parser_Term_doNested_parenthesizer___closed__1;
|
||||
extern lean_object* l_Lean_Parser_Term_letDecl_formatter___closed__3;
|
||||
|
|
@ -1359,7 +1359,6 @@ lean_object* l_Lean_Parser_Term_doFor___closed__3;
|
|||
lean_object* l_Lean_Parser_Term_doBreak_parenthesizer___closed__2;
|
||||
lean_object* l_Lean_Parser_Term_doIf_formatter___closed__4;
|
||||
lean_object* l_Lean_Parser_Term_doIfLetBind;
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__1;
|
||||
lean_object* l_Lean_Parser_Term_doIfLet___closed__7;
|
||||
lean_object* l_Lean_Parser_orelseFnCore(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*);
|
||||
extern lean_object* l_Lean_Parser_epsilonInfo;
|
||||
|
|
@ -1601,6 +1600,7 @@ lean_object* l_Lean_Parser_Term_doLet___elambda__1___closed__18;
|
|||
lean_object* l_Lean_Parser_Term_doNested___elambda__1___closed__1;
|
||||
lean_object* l_Lean_Parser_Term_doUnless___elambda__1___lambda__1(lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Parser_Term_doExpr___elambda__1___closed__13;
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__2;
|
||||
lean_object* l_Lean_Parser_Term_leftArrow___closed__1;
|
||||
lean_object* l_Lean_Parser_Term_notFollowedByRedefinedTermToken___elambda__1___closed__39;
|
||||
lean_object* l_Lean_Parser_Term_do___elambda__1___closed__6;
|
||||
|
|
@ -5493,7 +5493,7 @@ static lean_object* _init_l_Lean_Parser_Term_notFollowedByRedefinedTermToken___e
|
|||
_start:
|
||||
{
|
||||
lean_object* x_1; lean_object* x_2;
|
||||
x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__2;
|
||||
x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__2;
|
||||
x_2 = l_String_trim(x_1);
|
||||
return x_2;
|
||||
}
|
||||
|
|
@ -5714,7 +5714,7 @@ static lean_object* _init_l_Lean_Parser_Term_notFollowedByRedefinedTermToken___e
|
|||
_start:
|
||||
{
|
||||
lean_object* x_1; lean_object* x_2;
|
||||
x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__1;
|
||||
x_1 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__1;
|
||||
x_2 = l_String_trim(x_1);
|
||||
return x_2;
|
||||
}
|
||||
|
|
|
|||
408
stage0/stdlib/Lean/Parser/Term.c
generated
408
stage0/stdlib/Lean/Parser/Term.c
generated
File diff suppressed because it is too large
Load diff
9934
stage0/stdlib/Lean/ParserCompiler.c
generated
9934
stage0/stdlib/Lean/ParserCompiler.c
generated
File diff suppressed because it is too large
Load diff
|
|
@ -116,6 +116,7 @@ extern lean_object* l_Lean_identKind___closed__2;
|
|||
lean_object* l_Lean_PrettyPrinter_Delaborator_delabProjectionApp___closed__2;
|
||||
lean_object* l_Lean_PrettyPrinter_Delaborator_delabLetE___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
extern lean_object* l_Lean_Parser_Term_type___elambda__1___closed__2;
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__5;
|
||||
lean_object* l_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander_go___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_throwError___at_Lean_PrettyPrinter_Delaborator_delabAppMatch___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l___regBuiltin_Lean_PrettyPrinter_Delaborator_delabAppMatch(lean_object*);
|
||||
|
|
@ -216,6 +217,7 @@ lean_object* l_Lean_PrettyPrinter_Delaborator_delabAppImplicit___lambda__4(lean_
|
|||
lean_object* l_Lean_Expr_getRevArg_x21(lean_object*, lean_object*);
|
||||
extern lean_object* l_Lean_Parser_Term_tupleTail___elambda__1___closed__2;
|
||||
extern lean_object* l_myMacro____x40_Init_Notation___hyg_15342____closed__1;
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18784____closed__1;
|
||||
lean_object* l_Lean_ScopedEnvExtension_getState___at_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander_go___spec__1(lean_object*, lean_object*);
|
||||
lean_object* l_Lean_PrettyPrinter_Delaborator_delabDo___lambda__1___boxed__const__1;
|
||||
lean_object* l_Lean_PrettyPrinter_Delaborator_delabLam___closed__1;
|
||||
|
|
@ -254,7 +256,6 @@ uint8_t l_Lean_PrettyPrinter_Delaborator_AppMatchState_hasMotive___default;
|
|||
lean_object* l_Lean_Syntax_SepArray_ofElems(lean_object*, lean_object*);
|
||||
lean_object* l_Array_foldrMUnsafe_fold___at_Lean_PrettyPrinter_Delaborator_delabForall___spec__8___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_PrettyPrinter_Delaborator_delabProjectionApp_match__3___rarg(lean_object*, lean_object*, lean_object*);
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18810____closed__1;
|
||||
lean_object* l_Array_zip___rarg(lean_object*, lean_object*);
|
||||
lean_object* l___regBuiltin_Lean_PrettyPrinter_Delaborator_delabMVar___closed__1;
|
||||
extern lean_object* l_Lean_PrettyPrinter_Delaborator_getExprKind___closed__11;
|
||||
|
|
@ -357,9 +358,9 @@ lean_object* l___regBuiltin_Lean_PrettyPrinter_Delaborator_delabAppMatch___close
|
|||
lean_object* l_Lean_PrettyPrinter_Delaborator_delabSorryAx(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l___private_Lean_PrettyPrinter_Delaborator_Builtins_0__Lean_PrettyPrinter_Delaborator_skippingBinders___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l___regBuiltin_Lean_PrettyPrinter_Delaborator_delabNamedPattern___closed__2;
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18784____closed__2;
|
||||
lean_object* l_Lean_PrettyPrinter_Delaborator_delabStructureInstance(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_PrettyPrinter_Delaborator_delabSorryAx___lambda__1(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_18810____closed__2;
|
||||
lean_object* l_Lean_PrettyPrinter_Delaborator_delabProjectionApp_match__3(lean_object*);
|
||||
lean_object* l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_PrettyPrinter_Delaborator_delabOfScientific___closed__1;
|
||||
|
|
@ -432,7 +433,6 @@ lean_object* l_Lean_PrettyPrinter_Delaborator_getParamKinds___closed__1;
|
|||
uint8_t l_Lean_Expr_isAppOfArity(lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_PrettyPrinter_Delaborator_delabLetE___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_getRevAliases(lean_object*, lean_object*);
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__5;
|
||||
lean_object* l_Lean_ScopedEnvExtension_getState___at_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander_go___spec__1___boxed(lean_object*, lean_object*);
|
||||
lean_object* l___private_Lean_PrettyPrinter_Delaborator_Builtins_0__Lean_PrettyPrinter_Delaborator_delabPatterns_usingNames(lean_object*);
|
||||
lean_object* l_Lean_PrettyPrinter_Delaborator_delabDoElems___lambda__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
|
|
@ -584,7 +584,6 @@ lean_object* l_Lean_PrettyPrinter_Delaborator_delabStructureInstance_match__3___
|
|||
extern lean_object* l_Std_Range_myMacro____x40_Init_Data_Range___hyg_369____closed__2;
|
||||
lean_object* l_Array_foldrMUnsafe_fold___at_Lean_PrettyPrinter_Delaborator_delabForall___spec__1(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Meta_forallTelescope___at___private_Lean_PrettyPrinter_Delaborator_Builtins_0__Lean_PrettyPrinter_Delaborator_delabPatterns___spec__2(lean_object*);
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__8;
|
||||
extern lean_object* l_myMacro____x40_Init_Notation___hyg_16821____closed__4;
|
||||
uint8_t lean_nat_dec_le(lean_object*, lean_object*);
|
||||
lean_object* l_Lean_PrettyPrinter_Delaborator_delabForall___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
|
|
@ -634,6 +633,7 @@ lean_object* l_Lean_PrettyPrinter_Delaborator_delabLetE___closed__2;
|
|||
lean_object* l_Array_mapMUnsafe_map___at_Lean_PrettyPrinter_Delaborator_getParamKinds___spec__1___closed__2;
|
||||
lean_object* l_Lean_PrettyPrinter_Delaborator_delabLit_match__2(lean_object*);
|
||||
lean_object* l_Lean_PrettyPrinter_Delaborator_delabIte___closed__1;
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__8;
|
||||
lean_object* l_Std_AssocList_find_x3f___at_Lean_PrettyPrinter_Delaborator_delabAppWithUnexpander_go___spec__7(lean_object*, lean_object*);
|
||||
lean_object* l_Lean_PrettyPrinter_Delaborator_delabOfNat_match__1___rarg(lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_PrettyPrinter_Delaborator_delabOfScientific___lambda__1(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
|
|
@ -1389,7 +1389,7 @@ x_12 = l_Array_empty___closed__1;
|
|||
x_13 = lean_array_push(x_12, x_11);
|
||||
x_14 = lean_mk_syntax_ident(x_7);
|
||||
x_15 = lean_array_push(x_13, x_14);
|
||||
x_16 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20337____closed__5;
|
||||
x_16 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_20311____closed__5;
|
||||
x_17 = lean_alloc_ctor(1, 2, 0);
|
||||
lean_ctor_set(x_17, 0, x_16);
|
||||
lean_ctor_set(x_17, 1, x_15);
|
||||
|
|
@ -17983,7 +17983,7 @@ if (x_25 == 0)
|
|||
{
|
||||
lean_object* x_26; uint8_t x_27;
|
||||
lean_dec(x_2);
|
||||
x_26 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__8;
|
||||
x_26 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__8;
|
||||
x_27 = lean_string_dec_eq(x_11, x_26);
|
||||
if (x_27 == 0)
|
||||
{
|
||||
|
|
@ -18034,7 +18034,7 @@ if (x_38 == 0)
|
|||
{
|
||||
lean_object* x_39; uint8_t x_40;
|
||||
lean_dec(x_2);
|
||||
x_39 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__8;
|
||||
x_39 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__8;
|
||||
x_40 = lean_string_dec_eq(x_11, x_39);
|
||||
if (x_40 == 0)
|
||||
{
|
||||
|
|
@ -18117,7 +18117,7 @@ if (x_58 == 0)
|
|||
{
|
||||
lean_object* x_59; uint8_t x_60;
|
||||
lean_dec(x_2);
|
||||
x_59 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__8;
|
||||
x_59 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__8;
|
||||
x_60 = lean_string_dec_eq(x_11, x_59);
|
||||
if (x_60 == 0)
|
||||
{
|
||||
|
|
@ -18220,7 +18220,7 @@ if (x_83 == 0)
|
|||
{
|
||||
lean_object* x_84; uint8_t x_85;
|
||||
lean_dec(x_2);
|
||||
x_84 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__8;
|
||||
x_84 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__8;
|
||||
x_85 = lean_string_dec_eq(x_73, x_84);
|
||||
if (x_85 == 0)
|
||||
{
|
||||
|
|
@ -18642,7 +18642,7 @@ x_41 = lean_string_dec_eq(x_31, x_40);
|
|||
if (x_41 == 0)
|
||||
{
|
||||
lean_object* x_42; uint8_t x_43;
|
||||
x_42 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23515____closed__8;
|
||||
x_42 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_23499____closed__8;
|
||||
x_43 = lean_string_dec_eq(x_31, x_42);
|
||||
lean_dec(x_31);
|
||||
if (x_43 == 0)
|
||||
|
|
@ -25519,13 +25519,13 @@ if (x_9 == 0)
|
|||
{
|
||||
lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16;
|
||||
x_10 = lean_ctor_get(x_8, 0);
|
||||
x_11 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18810____closed__1;
|
||||
x_11 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18784____closed__1;
|
||||
x_12 = lean_alloc_ctor(2, 2, 0);
|
||||
lean_ctor_set(x_12, 0, x_10);
|
||||
lean_ctor_set(x_12, 1, x_11);
|
||||
x_13 = l_Array_empty___closed__1;
|
||||
x_14 = lean_array_push(x_13, x_12);
|
||||
x_15 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18810____closed__2;
|
||||
x_15 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18784____closed__2;
|
||||
x_16 = lean_alloc_ctor(1, 2, 0);
|
||||
lean_ctor_set(x_16, 0, x_15);
|
||||
lean_ctor_set(x_16, 1, x_14);
|
||||
|
|
@ -25540,13 +25540,13 @@ x_18 = lean_ctor_get(x_8, 1);
|
|||
lean_inc(x_18);
|
||||
lean_inc(x_17);
|
||||
lean_dec(x_8);
|
||||
x_19 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18810____closed__1;
|
||||
x_19 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18784____closed__1;
|
||||
x_20 = lean_alloc_ctor(2, 2, 0);
|
||||
lean_ctor_set(x_20, 0, x_17);
|
||||
lean_ctor_set(x_20, 1, x_19);
|
||||
x_21 = l_Array_empty___closed__1;
|
||||
x_22 = lean_array_push(x_21, x_20);
|
||||
x_23 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18810____closed__2;
|
||||
x_23 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18784____closed__2;
|
||||
x_24 = lean_alloc_ctor(1, 2, 0);
|
||||
lean_ctor_set(x_24, 0, x_23);
|
||||
lean_ctor_set(x_24, 1, x_22);
|
||||
|
|
|
|||
8
stage0/stdlib/Lean/PrettyPrinter/Formatter.c
generated
8
stage0/stdlib/Lean/PrettyPrinter/Formatter.c
generated
|
|
@ -27,6 +27,7 @@ lean_object* l_Lean_PrettyPrinter_Formatter_visitArgs(lean_object*, lean_object*
|
|||
size_t l_USize_add(size_t, size_t);
|
||||
extern lean_object* l_Lean_Name_getString_x21___closed__3;
|
||||
extern lean_object* l_Lean_fieldIdxKind;
|
||||
extern lean_object* l_Lean_Parser_Tactic_first___closed__8;
|
||||
lean_object* l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_2963_(lean_object*);
|
||||
lean_object* l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_3030_(lean_object*);
|
||||
lean_object* l_Lean_PrettyPrinter_Formatter_checkTailWs_formatter___rarg(lean_object*);
|
||||
|
|
@ -379,7 +380,6 @@ lean_object* l_Lean_Syntax_getArgs(lean_object*);
|
|||
lean_object* l_Lean_PrettyPrinter_Formatter_checkLinebreakBefore_formatter(lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_instInhabitedReaderT___rarg___boxed(lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Syntax_getKind(lean_object*);
|
||||
extern lean_object* l_Lean_Parser_Tactic_firstNew___closed__6;
|
||||
uint8_t l_Lean_Parser_isValidSyntaxNodeKind(lean_object*, lean_object*);
|
||||
lean_object* l_Lean_PrettyPrinter_Formatter_instMonadTraverserFormatterM;
|
||||
uint8_t l_Lean_Name_isAnonymous(lean_object*);
|
||||
|
|
@ -434,6 +434,7 @@ lean_object* l_Lean_PrettyPrinter_Formatter_identNoAntiquot_formatter_match__1(l
|
|||
lean_object* l_Lean_PrettyPrinter_Formatter_withoutInfo_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
extern lean_object* l_Std_instInhabitedFormat;
|
||||
lean_object* lean_array_pop(lean_object*);
|
||||
extern lean_object* l_Lean_Parser_Tactic_first___closed__6;
|
||||
lean_object* l_Lean_PrettyPrinter_Formatter_concat___lambda__1___boxed(lean_object*);
|
||||
lean_object* l_Lean_PrettyPrinter_Formatter_categoryParser_formatter___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_PrettyPrinter_Formatter_parserOfStack_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
|
|
@ -515,7 +516,6 @@ extern lean_object* l_Lean_MetavarContext_MkBinding_mkBinding___closed__1;
|
|||
uint8_t l_Std_Format_isNil(lean_object*);
|
||||
lean_object* l_Lean_PrettyPrinter_Formatter_pushTokenCore(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_PrettyPrinter_mkCombinatorFormatterAttribute___closed__2;
|
||||
extern lean_object* l_Lean_Parser_Tactic_firstNew___closed__8;
|
||||
lean_object* l_Lean_PrettyPrinter_Formatter_checkPrec_formatter(lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_PrettyPrinter_Formatter_checkKind___closed__4;
|
||||
extern lean_object* l___private_Init_Data_Format_Basic_0__Std_Format_be___closed__1;
|
||||
|
|
@ -9464,7 +9464,7 @@ lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21;
|
|||
x_18 = lean_ctor_get(x_17, 1);
|
||||
lean_inc(x_18);
|
||||
lean_dec(x_17);
|
||||
x_19 = l_Lean_Parser_Tactic_firstNew___closed__8;
|
||||
x_19 = l_Lean_Parser_Tactic_first___closed__8;
|
||||
x_20 = l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_3030____closed__12;
|
||||
x_21 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_19, x_20, x_18);
|
||||
if (lean_obj_tag(x_21) == 0)
|
||||
|
|
@ -9500,7 +9500,7 @@ lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37;
|
|||
x_34 = lean_ctor_get(x_33, 1);
|
||||
lean_inc(x_34);
|
||||
lean_dec(x_33);
|
||||
x_35 = l_Lean_Parser_Tactic_firstNew___closed__6;
|
||||
x_35 = l_Lean_Parser_Tactic_first___closed__6;
|
||||
x_36 = l_Lean_PrettyPrinter_Formatter_initFn____x40_Lean_PrettyPrinter_Formatter___hyg_3030____closed__22;
|
||||
x_37 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_35, x_36, x_34);
|
||||
if (lean_obj_tag(x_37) == 0)
|
||||
|
|
|
|||
12
stage0/stdlib/Lean/PrettyPrinter/Parenthesizer.c
generated
12
stage0/stdlib/Lean/PrettyPrinter/Parenthesizer.c
generated
|
|
@ -29,6 +29,7 @@ uint8_t l_Lean_Syntax_isAntiquotSuffixSplice(lean_object*);
|
|||
lean_object* l___regBuiltin_Lean_PrettyPrinter_Parenthesizer_term_parenthesizer___closed__1;
|
||||
size_t l_USize_add(size_t, size_t);
|
||||
lean_object* l_Lean_PrettyPrinter_mkCategoryParenthesizerAttribute___lambda__1___closed__1;
|
||||
extern lean_object* l_Lean_Parser_Tactic_first___closed__8;
|
||||
lean_object* l_Lean_PrettyPrinter_Parenthesizer_checkNoImmediateColon_parenthesizer___rarg(lean_object*);
|
||||
uint8_t l_Lean_Syntax_isTokenAntiquot(lean_object*);
|
||||
lean_object* l_Lean_registerTraceClass(lean_object*, lean_object*);
|
||||
|
|
@ -127,7 +128,6 @@ lean_object* l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter
|
|||
lean_object* l_Lean_PrettyPrinter_Parenthesizer_State_trailPrec___default;
|
||||
lean_object* l_Lean_PrettyPrinter_Parenthesizer_term_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_PrettyPrinter_mkCategoryParenthesizerAttribute___closed__8;
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__3;
|
||||
lean_object* l_Lean_PrettyPrinter_Parenthesizer_checkPrec_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_PrettyPrinter_Parenthesizer_symbolNoAntiquot_parenthesizer___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_PrettyPrinter_parenthesizeTerm(lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
|
|
@ -409,7 +409,6 @@ lean_object* l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter
|
|||
lean_object* l_Lean_PrettyPrinter_Parenthesizer_ite___rarg(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_PrettyPrinter_mkParenthesizerAttribute___closed__4;
|
||||
lean_object* l_Lean_Syntax_getKind(lean_object*);
|
||||
extern lean_object* l_Lean_Parser_Tactic_firstNew___closed__6;
|
||||
uint8_t l_Lean_Parser_isValidSyntaxNodeKind(lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Syntax_Traverser_right(lean_object*);
|
||||
lean_object* l_Lean_throwError___at_Lean_PrettyPrinter_mkParenthesizerAttribute___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
|
|
@ -472,6 +471,7 @@ lean_object* l_Lean_PrettyPrinter_Parenthesizer_checkLinebreakBefore_parenthesiz
|
|||
lean_object* l_Lean_PrettyPrinter_Parenthesizer_instMonadTraverserParenthesizerM_match__1___rarg(lean_object*, lean_object*);
|
||||
lean_object* l_Lean_PrettyPrinter_mkCategoryParenthesizerAttribute___closed__2;
|
||||
lean_object* l_Lean_PrettyPrinter_Parenthesizer_lookahead_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
extern lean_object* l_Lean_Parser_Tactic_first___closed__6;
|
||||
lean_object* l_Lean_PrettyPrinter_mkCombinatorParenthesizerAttribute(lean_object*);
|
||||
uint8_t l_Lean_Syntax_isOfKind(lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Syntax_MonadTraverser_goRight___at_Lean_PrettyPrinter_Parenthesizer_maybeParenthesize___spec__6___rarg(lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
|
|
@ -496,6 +496,7 @@ lean_object* l_Lean_PrettyPrinter_Parenthesizer_withPosition_parenthesizer(lean_
|
|||
lean_object* l_ReaderT_instMonadReaderT___rarg(lean_object*);
|
||||
lean_object* l_Lean_PrettyPrinter_Parenthesizer_State_contCat___default;
|
||||
lean_object* l_Lean_PrettyPrinter_instOrElseParenthesizerM___closed__1;
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__3;
|
||||
extern lean_object* l_Array_term_____x5b___x3a___x5d___closed__6;
|
||||
lean_object* l___private_Lean_Util_Trace_0__Lean_checkTraceOptionM___at_Lean_PrettyPrinter_parenthesize___spec__3(lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_PrettyPrinter_Parenthesizer_nonReservedSymbolNoAntiquot_parenthesizer___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
|
|
@ -572,7 +573,6 @@ lean_object* l_Lean_PrettyPrinter_Parenthesizer_liftCoreM___rarg(lean_object*, l
|
|||
lean_object* l_Lean_PrettyPrinter_parenthesize___closed__4;
|
||||
extern lean_object* l_Std_Format_paren___closed__3;
|
||||
lean_object* l_Lean_instMonadRef___rarg(lean_object*, lean_object*, lean_object*);
|
||||
extern lean_object* l_Lean_Parser_Tactic_firstNew___closed__8;
|
||||
lean_object* l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_3056____closed__26;
|
||||
lean_object* lean_mk_antiquot_parenthesizer(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_PrettyPrinter_mkCategoryParenthesizerAttribute___closed__5;
|
||||
|
|
@ -7696,7 +7696,7 @@ lean_ctor_set(x_6, 1, x_5);
|
|||
x_7 = l_Array_empty___closed__1;
|
||||
x_8 = lean_array_push(x_7, x_6);
|
||||
x_9 = lean_array_push(x_7, x_1);
|
||||
x_10 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__3;
|
||||
x_10 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__3;
|
||||
x_11 = lean_alloc_ctor(1, 2, 0);
|
||||
lean_ctor_set(x_11, 0, x_10);
|
||||
lean_ctor_set(x_11, 1, x_9);
|
||||
|
|
@ -10786,7 +10786,7 @@ lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21;
|
|||
x_18 = lean_ctor_get(x_17, 1);
|
||||
lean_inc(x_18);
|
||||
lean_dec(x_17);
|
||||
x_19 = l_Lean_Parser_Tactic_firstNew___closed__8;
|
||||
x_19 = l_Lean_Parser_Tactic_first___closed__8;
|
||||
x_20 = l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_3056____closed__12;
|
||||
x_21 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_19, x_20, x_18);
|
||||
if (lean_obj_tag(x_21) == 0)
|
||||
|
|
@ -10822,7 +10822,7 @@ lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37;
|
|||
x_34 = lean_ctor_get(x_33, 1);
|
||||
lean_inc(x_34);
|
||||
lean_dec(x_33);
|
||||
x_35 = l_Lean_Parser_Tactic_firstNew___closed__6;
|
||||
x_35 = l_Lean_Parser_Tactic_first___closed__6;
|
||||
x_36 = l_Lean_PrettyPrinter_Parenthesizer_initFn____x40_Lean_PrettyPrinter_Parenthesizer___hyg_3056____closed__22;
|
||||
x_37 = l_Lean_Parser_registerAliasCore___rarg(x_2, x_35, x_36, x_34);
|
||||
if (lean_obj_tag(x_37) == 0)
|
||||
|
|
|
|||
4
stage0/stdlib/Lean/Server/FileWorker.c
generated
4
stage0/stdlib/Lean/Server/FileWorker.c
generated
|
|
@ -356,9 +356,9 @@ lean_object* l_Lean_Server_FileWorker_unfoldCmdSnaps___lambda__1___boxed(lean_ob
|
|||
lean_object* l_Lean_Server_FileWorker_leanpkgSetupSearchPath_match__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Server_FileWorker_parseParams___at_Lean_Server_FileWorker_handleRequest___spec__18___boxed(lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Std_RBNode_appendTrees___rarg(lean_object*, lean_object*);
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18784____closed__2;
|
||||
lean_object* l_Lean_Server_FileWorker_handleCompletion_match__2(lean_object*);
|
||||
lean_object* l_Lean_Elab_Command_mkState(lean_object*, lean_object*, lean_object*);
|
||||
extern lean_object* l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18810____closed__2;
|
||||
lean_object* l_Lean_Server_FileWorker_leanpkgSetupSearchPath_processStderr___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
extern lean_object* l_Lean_Parser_Command_namespace___elambda__1___closed__2;
|
||||
lean_object* l_IO_AsyncList_waitFind_x3f___at_Lean_Server_FileWorker_withWaitFindSnap___spec__1(lean_object*, lean_object*, lean_object*);
|
||||
|
|
@ -25432,7 +25432,7 @@ _start:
|
|||
{
|
||||
lean_object* x_1; lean_object* x_2; lean_object* x_3;
|
||||
x_1 = l_Lean_Elab_Term_mkExplicitBinder___closed__1;
|
||||
x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18810____closed__2;
|
||||
x_2 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18784____closed__2;
|
||||
x_3 = lean_array_push(x_1, x_2);
|
||||
return x_3;
|
||||
}
|
||||
|
|
|
|||
8
stage0/stdlib/Lean/Server/InfoUtils.c
generated
8
stage0/stdlib/Lean/Server/InfoUtils.c
generated
|
|
@ -73,7 +73,6 @@ lean_object* l_Lean_Elab_Info_updateContext_x3f(lean_object*, lean_object*);
|
|||
extern lean_object* l_Lean_interpolatedStrKind;
|
||||
lean_object* l_Nat_max(lean_object*, lean_object*);
|
||||
lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_InfoTree_foldInfo_go___spec__7___rarg___boxed(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_18175____closed__3;
|
||||
lean_object* l_ReaderT_bind___at_Lean_Meta_instMonadLCtxMetaM___spec__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Elab_InfoTree_foldInfo_go_match__2(lean_object*);
|
||||
size_t l_USize_shiftRight(size_t, size_t);
|
||||
|
|
@ -133,6 +132,7 @@ extern lean_object* l_Lean_numLitKind;
|
|||
lean_object* l_Lean_Elab_InfoTree_goalsAt_x3f_hasNestedTactic_match__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* lean_nat_sub(lean_object*, lean_object*);
|
||||
lean_object* l___private_Std_Data_PersistentArray_0__Std_PersistentArray_foldlFromMAux___at_Lean_Elab_InfoTree_foldInfo_go___spec__2(lean_object*);
|
||||
extern lean_object* l_myMacro____x40_Init_Notation___hyg_23692____closed__2;
|
||||
lean_object* l_Lean_Elab_InfoTree_smallestInfo_x3f_match__1(lean_object*);
|
||||
extern lean_object* l_Lean_strLitKind;
|
||||
lean_object* l_Array_anyMUnsafe_any___at_Lean_Elab_InfoTree_goalsAt_x3f___spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
|
|
@ -150,7 +150,6 @@ lean_object* l_Lean_Elab_Info_isCompletion_match__1___rarg(lean_object*, lean_ob
|
|||
lean_object* l___private_Std_Data_PersistentArray_0__Std_PersistentArray_foldlMAux___at_Lean_Elab_InfoTree_foldInfo_go___spec__10(lean_object*);
|
||||
lean_object* l_Lean_Elab_Info_fmtHover_x3f___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l___private_Std_Data_PersistentArray_0__Std_PersistentArray_foldlFromMAux___at_Lean_Elab_InfoTree_foldInfo_go___spec__15___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
extern lean_object* l_myMacro____x40_Init_Notation___hyg_23708____closed__2;
|
||||
lean_object* l_Lean_Elab_Info_fmtHover_x3f___lambda__2___closed__2;
|
||||
lean_object* l_Lean_Elab_InfoTree_deepestNodes_go_match__1(lean_object*, lean_object*);
|
||||
lean_object* l_Std_PersistentArray_foldlM___at_Lean_Elab_InfoTree_foldInfo_go___spec__14___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
|
|
@ -263,6 +262,7 @@ lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_InfoTree_foldInfo_go___spe
|
|||
lean_object* l_Lean_Elab_InfoTree_deepestNodes_go_match__2(lean_object*);
|
||||
lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_InfoTree_foldInfo_go___spec__13(lean_object*);
|
||||
lean_object* l_Lean_Elab_Info_fmtHover_x3f___lambda__3___boxed(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_18139____closed__3;
|
||||
uint8_t l_Array_contains___at_Lean_Elab_InfoTree_hoverableInfoAt_x3f___spec__1(lean_object*, lean_object*);
|
||||
uint8_t l_Lean_Elab_Info_isTerm(lean_object*);
|
||||
lean_object* l_Lean_Syntax_getArg(lean_object*, lean_object*);
|
||||
|
|
@ -5508,7 +5508,7 @@ lean_inc(x_6);
|
|||
lean_dec(x_4);
|
||||
x_7 = lean_ctor_get(x_6, 2);
|
||||
lean_inc(x_7);
|
||||
x_8 = l_myMacro____x40_Init_Notation___hyg_23708____closed__2;
|
||||
x_8 = l_myMacro____x40_Init_Notation___hyg_23692____closed__2;
|
||||
lean_inc(x_7);
|
||||
x_9 = l_Lean_Syntax_isOfKind(x_7, x_8);
|
||||
if (x_9 == 0)
|
||||
|
|
@ -5527,7 +5527,7 @@ lean_object* x_12; lean_object* x_13; lean_object* x_14; uint8_t x_15;
|
|||
x_12 = lean_unsigned_to_nat(1u);
|
||||
x_13 = l_Lean_Syntax_getArg(x_7, x_12);
|
||||
lean_dec(x_7);
|
||||
x_14 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18175____closed__3;
|
||||
x_14 = l_Lean_Parser_Tactic_myMacro____x40_Init_Notation___hyg_18139____closed__3;
|
||||
x_15 = l_Lean_Syntax_isOfKind(x_13, x_14);
|
||||
if (x_15 == 0)
|
||||
{
|
||||
|
|
|
|||
33
stage0/stdlib/Std/Data/RBMap.c
generated
33
stage0/stdlib/Std/Data/RBMap.c
generated
|
|
@ -82,7 +82,6 @@ lean_object* lean_nat_add(lean_object*, lean_object*);
|
|||
lean_object* l_Std_RBMap_max_x21___rarg___boxed(lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Std_RBMap_instReprRBMap___boxed(lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Std_RBMap_find_x21___rarg___closed__3;
|
||||
lean_object* l_Std_RBMap_max_x21_match__1___rarg(lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Std_RBNode_balRight_match__2___rarg(lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Std_RBNode_balance2___rarg(lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Std_RBNode_revFold___rarg(lean_object*, lean_object*, lean_object*);
|
||||
|
|
@ -271,7 +270,6 @@ lean_object* l_Std_RBMap_foldM(lean_object*, lean_object*, lean_object*, lean_ob
|
|||
lean_object* l_Std_RBNode_fold___rarg(lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Std_RBMap_isEmpty(lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Std_RBNode_lowerBound_match__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Std_RBMap_max_x21_match__1(lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Std_RBNode_fold(lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Std_RBMap_max___rarg(lean_object*);
|
||||
lean_object* l_Std_RBNode_foldM___at_Std_RBMap_forM___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
|
|
@ -21711,37 +21709,6 @@ lean_dec(x_3);
|
|||
return x_4;
|
||||
}
|
||||
}
|
||||
lean_object* l_Std_RBMap_max_x21_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_Std_RBMap_max_x21_match__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) {
|
||||
_start:
|
||||
{
|
||||
lean_object* x_4;
|
||||
x_4 = lean_alloc_closure((void*)(l_Std_RBMap_max_x21_match__1___rarg), 3, 0);
|
||||
return x_4;
|
||||
}
|
||||
}
|
||||
static lean_object* _init_l_Std_RBMap_max_x21___rarg___closed__1() {
|
||||
_start:
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue