chore: update stage0
This commit is contained in:
parent
e863376be1
commit
474ee644d7
14 changed files with 1244 additions and 4419 deletions
12
stage0/src/Lean/Elab/App.lean
generated
12
stage0/src/Lean/Elab/App.lean
generated
|
|
@ -803,9 +803,13 @@ private partial def elabAppFn (f : Syntax) (lvals : List LVal) (namedArgs : Arra
|
|||
f.getArgs.foldlM (fun acc f => elabAppFn f lvals namedArgs args expectedType? explicit ellipsis true acc) acc
|
||||
else
|
||||
let elabFieldName (e field : Syntax) := do
|
||||
if field.isMissing then
|
||||
let e ← elabTerm e none
|
||||
unless e.isSorry do
|
||||
addDotCompletionInfo f e expectedType?
|
||||
let newLVals := field.getId.eraseMacroScopes.components.map fun n =>
|
||||
-- We use `none` here since `field` can't be part of a composite name
|
||||
LVal.fieldName field (toString n) none e
|
||||
-- We use `none` here since `field` can't be part of a composite name
|
||||
LVal.fieldName field (toString n) none e
|
||||
elabAppFn e (newLVals ++ lvals) namedArgs args expectedType? explicit ellipsis overloaded acc
|
||||
let elabFieldIdx (e idxStx : Syntax) := do
|
||||
let idx := idxStx.isFieldIdx?.get!
|
||||
|
|
@ -813,8 +817,8 @@ private partial def elabAppFn (f : Syntax) (lvals : List LVal) (namedArgs : Arra
|
|||
match f with
|
||||
| `($(e).$idx:fieldIdx) => elabFieldIdx e idx
|
||||
| `($e |>.$idx:fieldIdx) => elabFieldIdx e idx
|
||||
| `($(e).$field:ident) => elabFieldName e field
|
||||
| `($e |>.$field:ident) => elabFieldName e field
|
||||
| `($(e).$field) => elabFieldName e field
|
||||
| `($e |>.$field) => elabFieldName e field
|
||||
| `($e[%$bracket $idx]) => elabAppFn e (LVal.getOp bracket idx :: lvals) namedArgs args expectedType? explicit ellipsis overloaded acc
|
||||
| `($id:ident@$t:term) =>
|
||||
throwError "unexpected occurrence of named pattern"
|
||||
|
|
|
|||
2
stage0/src/Lean/Elab/InfoTree.lean
generated
2
stage0/src/Lean/Elab/InfoTree.lean
generated
|
|
@ -160,7 +160,7 @@ def TermInfo.format (ctx : ContextInfo) (info : TermInfo) : IO Format := do
|
|||
|
||||
def CompletionInfo.format (ctx : ContextInfo) (info : CompletionInfo) : IO Format :=
|
||||
match info with
|
||||
| CompletionInfo.dot i .. => return f!"[.] {← i.format ctx}"
|
||||
| CompletionInfo.dot i (expectedType? := expectedType?) .. => return f!"[.] {← i.format ctx} : {expectedType?}"
|
||||
| CompletionInfo.id stx lctx expectedType? => ctx.runMetaM lctx do return f!"[.] {stx} : {expectedType?} @ {formatStxRange ctx info.stx}"
|
||||
| _ => return f!"[.] {info.stx} @ {formatStxRange ctx info.stx}"
|
||||
|
||||
|
|
|
|||
6
stage0/src/Lean/Elab/Term.lean
generated
6
stage0/src/Lean/Elab/Term.lean
generated
|
|
@ -1230,15 +1230,13 @@ private def elabOptLevel (stx : Syntax) : TermElabM Level :=
|
|||
@[builtinTermElab «type»] def elabTypeStx : TermElab := fun stx _ =>
|
||||
return mkSort (mkLevelSucc (← elabOptLevel stx[1]))
|
||||
|
||||
@[builtinTermElab «completion»] def elabCompletion : TermElab := fun stx expectedType? => do
|
||||
@[builtinTermElab «pipeCompletion»] def elabPipeCompletion : TermElab := fun stx expectedType? => do
|
||||
let e ← elabTerm stx[0] none
|
||||
unless e.isSorry do
|
||||
-- dbg_trace "completion {stx} : {expectedType?}"
|
||||
addDotCompletionInfo stx e expectedType?
|
||||
throwErrorAt stx[1] "invalid field notation, identifier or numeral expected"
|
||||
|
||||
@[builtinTermElab «pipeCompletion»] def elabPipeCompletion : TermElab :=
|
||||
elabCompletion
|
||||
|
||||
@[builtinTermElab «hole»] def elabHole : TermElab := fun stx expectedType? => do
|
||||
let mvar ← mkFreshExprMVar expectedType?
|
||||
registerMVarErrorHoleInfo mvar.mvarId! stx
|
||||
|
|
|
|||
10
stage0/src/Lean/Parser/Module.lean
generated
10
stage0/src/Lean/Parser/Module.lean
generated
|
|
@ -88,15 +88,11 @@ partial def parseCommand (inputCtx : InputContext) (pmctx : ParserModuleContext)
|
|||
| some errorMsg =>
|
||||
-- advance at least one token to prevent infinite loops
|
||||
let pos := if s.pos == pos then consumeInput c s.pos else s.pos
|
||||
if recovering then
|
||||
let messages := if recovering && s.stxStack.isEmpty then messages else messages.add <| mkErrorMessage c s.pos (toString errorMsg)
|
||||
if s.stxStack.isEmpty then
|
||||
parse { pos := pos, recovering := true } messages
|
||||
else
|
||||
let msg := mkErrorMessage c s.pos (toString errorMsg)
|
||||
let messages := messages.add msg
|
||||
if s.stxStack.isEmpty then
|
||||
parse { pos := pos, recovering := true } messages
|
||||
else
|
||||
(s.stxStack.back, { pos := pos, recovering := true }, messages)
|
||||
(s.stxStack.back, { pos := pos, recovering := true }, messages)
|
||||
parse s messages
|
||||
|
||||
-- only useful for testing since most Lean files cannot be parsed without elaboration
|
||||
|
|
|
|||
1
stage0/src/Lean/Parser/Term.lean
generated
1
stage0/src/Lean/Parser/Term.lean
generated
|
|
@ -204,7 +204,6 @@ def argument :=
|
|||
@[builtinTermParser] def app := trailing_parser:leadPrec:maxPrec many1 argument
|
||||
|
||||
@[builtinTermParser] def proj := trailing_parser checkNoWsBefore >> "." >> checkNoWsBefore >> (fieldIdx <|> ident)
|
||||
@[builtinTermParser] def completion := trailing_parser checkNoWsBefore >> "."
|
||||
@[builtinTermParser] def arrayRef := trailing_parser checkNoWsBefore >> "[" >> termParser >>"]"
|
||||
@[builtinTermParser] def arrow := trailing_parser checkPrec 25 >> unicodeSymbol " → " " -> " >> termParser 25
|
||||
|
||||
|
|
|
|||
6
stage0/src/Lean/Server/Completion.lean
generated
6
stage0/src/Lean/Server/Completion.lean
generated
|
|
@ -196,8 +196,6 @@ private def dotCompletion (ctx : ContextInfo) (info : TermInfo) (expectedType? :
|
|||
| _ =>
|
||||
if info.stx.isIdent then
|
||||
idCompletionCore ctx info.stx expectedType?
|
||||
else if info.stx.getKind == ``Lean.Parser.Term.completion then
|
||||
idCompletionCore ctx info.stx[0] expectedType?
|
||||
else
|
||||
failure
|
||||
|
||||
|
|
@ -212,7 +210,7 @@ private def optionCompletion (ctx : ContextInfo) : IO (Option CompletionList) :=
|
|||
private def tacticCompletion (ctx : ContextInfo) : IO (Option CompletionList) :=
|
||||
-- Just return the list of tactics for now.
|
||||
ctx.runMetaM {} do
|
||||
let table := Parser.getCategory (Parser.parserExtension.getState (← getEnv)).categories `tactic |>. get!.tables.leadingTable
|
||||
let table := Parser.getCategory (Parser.parserExtension.getState (← getEnv)).categories `tactic |>.get!.tables.leadingTable
|
||||
let items : Array CompletionItem := table.fold (init := #[]) fun items tk parser =>
|
||||
-- TODO pretty print tactic syntax
|
||||
items.push { label := tk.toString, detail? := none, documentation? := none }
|
||||
|
|
@ -249,4 +247,4 @@ where
|
|||
else
|
||||
best?
|
||||
|
||||
end Lean.Server.Completion
|
||||
end Lean.Server.Completion
|
||||
|
|
|
|||
3912
stage0/stdlib/Lean/Elab/App.c
generated
3912
stage0/stdlib/Lean/Elab/App.c
generated
File diff suppressed because it is too large
Load diff
6
stage0/stdlib/Lean/Elab/Extra.c
generated
6
stage0/stdlib/Lean/Elab/Extra.c
generated
|
|
@ -50,7 +50,6 @@ lean_object* l_Lean_Elab_Term_elabForIn___lambda__1___closed__2;
|
|||
lean_object* l_Lean_Elab_Term_elabForIn_match__1(lean_object*);
|
||||
extern lean_object* l_term___u2218_____closed__5;
|
||||
lean_object* l_Lean_Elab_Term_elabBinRel___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_throwError___at_Lean_Elab_Term_elabCompletion___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Elab_Term_elabTerm(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_replaceRef(lean_object*, lean_object*);
|
||||
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*);
|
||||
|
|
@ -104,6 +103,7 @@ extern lean_object* l_Lean_Meta_evalNat_visit___closed__3;
|
|||
lean_object* l___regBuiltin_Lean_Elab_Term_elabBinRel(lean_object*);
|
||||
lean_object* l_Lean_Meta_inferType(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_mkFreshExprMVarImpl(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_throwError___at_Lean_Elab_Term_elabPipeCompletion___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
uint8_t l_Lean_Syntax_isOfKind(lean_object*, lean_object*);
|
||||
lean_object* l_Lean_throwUnknownConstant___at_Lean_Elab_Term_elabBinRel___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_tryPostpone(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
|
|
@ -3223,7 +3223,7 @@ x_112 = l_Lean_KernelException_toMessageData___closed__15;
|
|||
x_113 = lean_alloc_ctor(10, 2, 0);
|
||||
lean_ctor_set(x_113, 0, x_111);
|
||||
lean_ctor_set(x_113, 1, x_112);
|
||||
x_114 = l_Lean_throwError___at_Lean_Elab_Term_elabCompletion___spec__2(x_113, x_3, x_4, x_5, x_6, x_7, x_8, x_104);
|
||||
x_114 = l_Lean_throwError___at_Lean_Elab_Term_elabPipeCompletion___spec__2(x_113, x_3, x_4, x_5, x_6, x_7, x_8, x_104);
|
||||
lean_dec(x_8);
|
||||
lean_dec(x_7);
|
||||
lean_dec(x_6);
|
||||
|
|
@ -3509,7 +3509,7 @@ x_174 = l_Lean_KernelException_toMessageData___closed__15;
|
|||
x_175 = lean_alloc_ctor(10, 2, 0);
|
||||
lean_ctor_set(x_175, 0, x_173);
|
||||
lean_ctor_set(x_175, 1, x_174);
|
||||
x_176 = l_Lean_throwError___at_Lean_Elab_Term_elabCompletion___spec__2(x_175, x_3, x_4, x_5, x_6, x_7, x_8, x_166);
|
||||
x_176 = l_Lean_throwError___at_Lean_Elab_Term_elabPipeCompletion___spec__2(x_175, x_3, x_4, x_5, x_6, x_7, x_8, x_166);
|
||||
lean_dec(x_8);
|
||||
lean_dec(x_7);
|
||||
lean_dec(x_6);
|
||||
|
|
|
|||
281
stage0/stdlib/Lean/Elab/InfoTree.c
generated
281
stage0/stdlib/Lean/Elab/InfoTree.c
generated
|
|
@ -43,6 +43,7 @@ lean_object* l_Lean_Elab_assignInfoHoleId___rarg(lean_object*, lean_object*, lea
|
|||
lean_object* l_Std_PersistentArray_getAux___at_Lean_Elab_withInfoHole___spec__2(lean_object*, size_t, size_t);
|
||||
lean_object* l_Lean_mkConstWithLevelParams___rarg(lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Elab_assignInfoHoleId___rarg___lambda__2___closed__1;
|
||||
lean_object* l_Std_fmt___at_Lean_Elab_CompletionInfo_format___spec__1___boxed(lean_object*);
|
||||
lean_object* l_Lean_Elab_instInhabitedTermInfo;
|
||||
lean_object* l_Lean_Elab_assignInfoHoleId___rarg___lambda__2___closed__4;
|
||||
lean_object* l_List_forIn_loop___at_Lean_Elab_resolveGlobalConstWithInfos___spec__1___rarg___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
|
|
@ -216,7 +217,6 @@ lean_object* l_Lean_Elab_getInfoTrees(lean_object*);
|
|||
lean_object* l___private_Lean_Elab_InfoTree_0__Lean_Elab_formatStxRange(lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Elab_getInfoHoleIdAssignment_x3f___rarg(lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Elab_enableInfoTree___rarg___boxed(lean_object*, lean_object*);
|
||||
lean_object* l_Std_fmt___at_Lean_Elab_CompletionInfo_format___spec__2___boxed(lean_object*);
|
||||
size_t lean_usize_of_nat(lean_object*);
|
||||
extern lean_object* l_Lean_NameSet_empty;
|
||||
lean_object* l_Lean_Elab_ContextInfo_currNamespace___default;
|
||||
|
|
@ -2824,17 +2824,6 @@ return x_2;
|
|||
lean_object* l_Std_fmt___at_Lean_Elab_CompletionInfo_format___spec__1(lean_object* x_1) {
|
||||
_start:
|
||||
{
|
||||
lean_object* x_2; uint8_t x_3; lean_object* x_4; lean_object* x_5;
|
||||
x_2 = lean_box(0);
|
||||
x_3 = 0;
|
||||
x_4 = lean_unsigned_to_nat(0u);
|
||||
x_5 = l_Lean_Syntax_formatStxAux(x_2, x_3, x_4, x_1);
|
||||
return x_5;
|
||||
}
|
||||
}
|
||||
lean_object* l_Std_fmt___at_Lean_Elab_CompletionInfo_format___spec__2(lean_object* x_1) {
|
||||
_start:
|
||||
{
|
||||
if (lean_obj_tag(x_1) == 0)
|
||||
{
|
||||
lean_object* x_2;
|
||||
|
|
@ -2854,6 +2843,17 @@ return x_6;
|
|||
}
|
||||
}
|
||||
}
|
||||
lean_object* l_Std_fmt___at_Lean_Elab_CompletionInfo_format___spec__2(lean_object* x_1) {
|
||||
_start:
|
||||
{
|
||||
lean_object* x_2; uint8_t x_3; lean_object* x_4; lean_object* x_5;
|
||||
x_2 = lean_box(0);
|
||||
x_3 = 0;
|
||||
x_4 = lean_unsigned_to_nat(0u);
|
||||
x_5 = l_Lean_Syntax_formatStxAux(x_2, x_3, x_4, x_1);
|
||||
return x_5;
|
||||
}
|
||||
}
|
||||
lean_object* l_ReaderT_pure___at_Lean_Elab_CompletionInfo_format___spec__3___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) {
|
||||
_start:
|
||||
{
|
||||
|
|
@ -2896,157 +2896,178 @@ _start:
|
|||
switch (lean_obj_tag(x_2)) {
|
||||
case 0:
|
||||
{
|
||||
lean_object* x_4; lean_object* x_5;
|
||||
lean_object* x_4; lean_object* x_5; lean_object* x_6;
|
||||
x_4 = lean_ctor_get(x_2, 0);
|
||||
lean_inc(x_4);
|
||||
x_5 = lean_ctor_get(x_2, 2);
|
||||
lean_inc(x_5);
|
||||
lean_dec(x_2);
|
||||
x_5 = l_Lean_Elab_TermInfo_format(x_1, x_4, x_3);
|
||||
if (lean_obj_tag(x_5) == 0)
|
||||
x_6 = l_Lean_Elab_TermInfo_format(x_1, x_4, x_3);
|
||||
if (lean_obj_tag(x_6) == 0)
|
||||
{
|
||||
uint8_t x_6;
|
||||
x_6 = !lean_is_exclusive(x_5);
|
||||
if (x_6 == 0)
|
||||
uint8_t x_7;
|
||||
x_7 = !lean_is_exclusive(x_6);
|
||||
if (x_7 == 0)
|
||||
{
|
||||
lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11;
|
||||
x_7 = lean_ctor_get(x_5, 0);
|
||||
x_8 = l_Lean_Elab_CompletionInfo_format___closed__2;
|
||||
x_9 = lean_alloc_ctor(4, 2, 0);
|
||||
lean_ctor_set(x_9, 0, x_8);
|
||||
lean_ctor_set(x_9, 1, x_7);
|
||||
x_10 = l_Std_Format_join___closed__1;
|
||||
x_11 = lean_alloc_ctor(4, 2, 0);
|
||||
lean_ctor_set(x_11, 0, x_9);
|
||||
lean_ctor_set(x_11, 1, x_10);
|
||||
lean_ctor_set(x_5, 0, x_11);
|
||||
return x_5;
|
||||
}
|
||||
else
|
||||
{
|
||||
lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18;
|
||||
x_12 = lean_ctor_get(x_5, 0);
|
||||
x_13 = lean_ctor_get(x_5, 1);
|
||||
lean_inc(x_13);
|
||||
lean_inc(x_12);
|
||||
lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16;
|
||||
x_8 = lean_ctor_get(x_6, 0);
|
||||
x_9 = l_Lean_Elab_CompletionInfo_format___closed__2;
|
||||
x_10 = lean_alloc_ctor(4, 2, 0);
|
||||
lean_ctor_set(x_10, 0, x_9);
|
||||
lean_ctor_set(x_10, 1, x_8);
|
||||
x_11 = l_Lean_Meta_ppGoal_ppVars___closed__1;
|
||||
x_12 = lean_alloc_ctor(4, 2, 0);
|
||||
lean_ctor_set(x_12, 0, x_10);
|
||||
lean_ctor_set(x_12, 1, x_11);
|
||||
x_13 = l_Std_fmt___at_Lean_Elab_CompletionInfo_format___spec__1(x_5);
|
||||
lean_dec(x_5);
|
||||
x_14 = l_Lean_Elab_CompletionInfo_format___closed__2;
|
||||
x_15 = lean_alloc_ctor(4, 2, 0);
|
||||
lean_ctor_set(x_15, 0, x_14);
|
||||
lean_ctor_set(x_15, 1, x_12);
|
||||
x_16 = l_Std_Format_join___closed__1;
|
||||
x_17 = lean_alloc_ctor(4, 2, 0);
|
||||
lean_ctor_set(x_17, 0, x_15);
|
||||
lean_ctor_set(x_17, 1, x_16);
|
||||
x_18 = lean_alloc_ctor(0, 2, 0);
|
||||
lean_ctor_set(x_18, 0, x_17);
|
||||
lean_ctor_set(x_18, 1, x_13);
|
||||
return x_18;
|
||||
}
|
||||
x_14 = lean_alloc_ctor(4, 2, 0);
|
||||
lean_ctor_set(x_14, 0, x_12);
|
||||
lean_ctor_set(x_14, 1, x_13);
|
||||
x_15 = l_Std_Format_join___closed__1;
|
||||
x_16 = lean_alloc_ctor(4, 2, 0);
|
||||
lean_ctor_set(x_16, 0, x_14);
|
||||
lean_ctor_set(x_16, 1, x_15);
|
||||
lean_ctor_set(x_6, 0, x_16);
|
||||
return x_6;
|
||||
}
|
||||
else
|
||||
{
|
||||
uint8_t x_19;
|
||||
x_19 = !lean_is_exclusive(x_5);
|
||||
if (x_19 == 0)
|
||||
{
|
||||
return x_5;
|
||||
}
|
||||
else
|
||||
{
|
||||
lean_object* x_20; lean_object* x_21; lean_object* x_22;
|
||||
x_20 = lean_ctor_get(x_5, 0);
|
||||
x_21 = lean_ctor_get(x_5, 1);
|
||||
lean_inc(x_21);
|
||||
lean_inc(x_20);
|
||||
lean_dec(x_5);
|
||||
x_22 = lean_alloc_ctor(1, 2, 0);
|
||||
lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27;
|
||||
x_17 = lean_ctor_get(x_6, 0);
|
||||
x_18 = lean_ctor_get(x_6, 1);
|
||||
lean_inc(x_18);
|
||||
lean_inc(x_17);
|
||||
lean_dec(x_6);
|
||||
x_19 = l_Lean_Elab_CompletionInfo_format___closed__2;
|
||||
x_20 = lean_alloc_ctor(4, 2, 0);
|
||||
lean_ctor_set(x_20, 0, x_19);
|
||||
lean_ctor_set(x_20, 1, x_17);
|
||||
x_21 = l_Lean_Meta_ppGoal_ppVars___closed__1;
|
||||
x_22 = lean_alloc_ctor(4, 2, 0);
|
||||
lean_ctor_set(x_22, 0, x_20);
|
||||
lean_ctor_set(x_22, 1, x_21);
|
||||
return x_22;
|
||||
x_23 = l_Std_fmt___at_Lean_Elab_CompletionInfo_format___spec__1(x_5);
|
||||
lean_dec(x_5);
|
||||
x_24 = lean_alloc_ctor(4, 2, 0);
|
||||
lean_ctor_set(x_24, 0, x_22);
|
||||
lean_ctor_set(x_24, 1, x_23);
|
||||
x_25 = l_Std_Format_join___closed__1;
|
||||
x_26 = lean_alloc_ctor(4, 2, 0);
|
||||
lean_ctor_set(x_26, 0, x_24);
|
||||
lean_ctor_set(x_26, 1, x_25);
|
||||
x_27 = lean_alloc_ctor(0, 2, 0);
|
||||
lean_ctor_set(x_27, 0, x_26);
|
||||
lean_ctor_set(x_27, 1, x_18);
|
||||
return x_27;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
uint8_t x_28;
|
||||
lean_dec(x_5);
|
||||
x_28 = !lean_is_exclusive(x_6);
|
||||
if (x_28 == 0)
|
||||
{
|
||||
return x_6;
|
||||
}
|
||||
else
|
||||
{
|
||||
lean_object* x_29; lean_object* x_30; lean_object* x_31;
|
||||
x_29 = lean_ctor_get(x_6, 0);
|
||||
x_30 = lean_ctor_get(x_6, 1);
|
||||
lean_inc(x_30);
|
||||
lean_inc(x_29);
|
||||
lean_dec(x_6);
|
||||
x_31 = lean_alloc_ctor(1, 2, 0);
|
||||
lean_ctor_set(x_31, 0, x_29);
|
||||
lean_ctor_set(x_31, 1, x_30);
|
||||
return x_31;
|
||||
}
|
||||
}
|
||||
}
|
||||
case 1:
|
||||
{
|
||||
lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41;
|
||||
x_23 = lean_ctor_get(x_2, 0);
|
||||
lean_inc(x_23);
|
||||
x_24 = lean_ctor_get(x_2, 1);
|
||||
lean_inc(x_24);
|
||||
x_25 = lean_ctor_get(x_2, 2);
|
||||
lean_inc(x_25);
|
||||
x_26 = l_Std_fmt___at_Lean_Elab_CompletionInfo_format___spec__1(x_23);
|
||||
x_27 = l_Lean_Elab_CompletionInfo_format___closed__2;
|
||||
x_28 = lean_alloc_ctor(4, 2, 0);
|
||||
lean_ctor_set(x_28, 0, x_27);
|
||||
lean_ctor_set(x_28, 1, x_26);
|
||||
x_29 = l_Lean_Meta_ppGoal_ppVars___closed__1;
|
||||
x_30 = lean_alloc_ctor(4, 2, 0);
|
||||
lean_ctor_set(x_30, 0, x_28);
|
||||
lean_ctor_set(x_30, 1, x_29);
|
||||
x_31 = l_Std_fmt___at_Lean_Elab_CompletionInfo_format___spec__2(x_25);
|
||||
lean_dec(x_25);
|
||||
x_32 = lean_alloc_ctor(4, 2, 0);
|
||||
lean_ctor_set(x_32, 0, x_30);
|
||||
lean_ctor_set(x_32, 1, x_31);
|
||||
x_33 = l_Lean_Elab_TermInfo_format___lambda__1___closed__2;
|
||||
x_34 = lean_alloc_ctor(4, 2, 0);
|
||||
lean_ctor_set(x_34, 0, x_32);
|
||||
lean_ctor_set(x_34, 1, x_33);
|
||||
x_35 = l_Lean_Elab_CompletionInfo_stx(x_2);
|
||||
lean_dec(x_2);
|
||||
x_36 = l___private_Lean_Elab_InfoTree_0__Lean_Elab_formatStxRange(x_1, x_35);
|
||||
lean_dec(x_35);
|
||||
lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50;
|
||||
x_32 = lean_ctor_get(x_2, 0);
|
||||
lean_inc(x_32);
|
||||
x_33 = lean_ctor_get(x_2, 1);
|
||||
lean_inc(x_33);
|
||||
x_34 = lean_ctor_get(x_2, 2);
|
||||
lean_inc(x_34);
|
||||
x_35 = l_Std_fmt___at_Lean_Elab_CompletionInfo_format___spec__2(x_32);
|
||||
x_36 = l_Lean_Elab_CompletionInfo_format___closed__2;
|
||||
x_37 = lean_alloc_ctor(4, 2, 0);
|
||||
lean_ctor_set(x_37, 0, x_34);
|
||||
lean_ctor_set(x_37, 1, x_36);
|
||||
x_38 = l_Std_Format_join___closed__1;
|
||||
lean_ctor_set(x_37, 0, x_36);
|
||||
lean_ctor_set(x_37, 1, x_35);
|
||||
x_38 = l_Lean_Meta_ppGoal_ppVars___closed__1;
|
||||
x_39 = lean_alloc_ctor(4, 2, 0);
|
||||
lean_ctor_set(x_39, 0, x_37);
|
||||
lean_ctor_set(x_39, 1, x_38);
|
||||
x_40 = lean_alloc_closure((void*)(l_ReaderT_pure___at_Lean_Elab_CompletionInfo_format___spec__3___rarg___boxed), 6, 1);
|
||||
lean_closure_set(x_40, 0, x_39);
|
||||
x_41 = l_Lean_Elab_ContextInfo_runMetaM___rarg(x_1, x_24, x_40, x_3);
|
||||
x_40 = l_Std_fmt___at_Lean_Elab_CompletionInfo_format___spec__1(x_34);
|
||||
lean_dec(x_34);
|
||||
x_41 = lean_alloc_ctor(4, 2, 0);
|
||||
lean_ctor_set(x_41, 0, x_39);
|
||||
lean_ctor_set(x_41, 1, x_40);
|
||||
x_42 = l_Lean_Elab_TermInfo_format___lambda__1___closed__2;
|
||||
x_43 = lean_alloc_ctor(4, 2, 0);
|
||||
lean_ctor_set(x_43, 0, x_41);
|
||||
lean_ctor_set(x_43, 1, x_42);
|
||||
x_44 = l_Lean_Elab_CompletionInfo_stx(x_2);
|
||||
lean_dec(x_2);
|
||||
x_45 = l___private_Lean_Elab_InfoTree_0__Lean_Elab_formatStxRange(x_1, x_44);
|
||||
lean_dec(x_44);
|
||||
x_46 = lean_alloc_ctor(4, 2, 0);
|
||||
lean_ctor_set(x_46, 0, x_43);
|
||||
lean_ctor_set(x_46, 1, x_45);
|
||||
x_47 = l_Std_Format_join___closed__1;
|
||||
x_48 = lean_alloc_ctor(4, 2, 0);
|
||||
lean_ctor_set(x_48, 0, x_46);
|
||||
lean_ctor_set(x_48, 1, x_47);
|
||||
x_49 = lean_alloc_closure((void*)(l_ReaderT_pure___at_Lean_Elab_CompletionInfo_format___spec__3___rarg___boxed), 6, 1);
|
||||
lean_closure_set(x_49, 0, x_48);
|
||||
x_50 = l_Lean_Elab_ContextInfo_runMetaM___rarg(x_1, x_33, x_49, x_3);
|
||||
lean_dec(x_1);
|
||||
return x_41;
|
||||
return x_50;
|
||||
}
|
||||
default:
|
||||
{
|
||||
lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52;
|
||||
x_42 = l_Lean_Elab_CompletionInfo_stx(x_2);
|
||||
lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61;
|
||||
x_51 = l_Lean_Elab_CompletionInfo_stx(x_2);
|
||||
lean_dec(x_2);
|
||||
lean_inc(x_42);
|
||||
x_43 = l_Std_fmt___at_Lean_Elab_CompletionInfo_format___spec__1(x_42);
|
||||
x_44 = l_Lean_Elab_CompletionInfo_format___closed__2;
|
||||
x_45 = lean_alloc_ctor(4, 2, 0);
|
||||
lean_ctor_set(x_45, 0, x_44);
|
||||
lean_ctor_set(x_45, 1, x_43);
|
||||
x_46 = l_Lean_Elab_TermInfo_format___lambda__1___closed__2;
|
||||
x_47 = lean_alloc_ctor(4, 2, 0);
|
||||
lean_ctor_set(x_47, 0, x_45);
|
||||
lean_ctor_set(x_47, 1, x_46);
|
||||
x_48 = l___private_Lean_Elab_InfoTree_0__Lean_Elab_formatStxRange(x_1, x_42);
|
||||
lean_dec(x_42);
|
||||
lean_inc(x_51);
|
||||
x_52 = l_Std_fmt___at_Lean_Elab_CompletionInfo_format___spec__2(x_51);
|
||||
x_53 = l_Lean_Elab_CompletionInfo_format___closed__2;
|
||||
x_54 = lean_alloc_ctor(4, 2, 0);
|
||||
lean_ctor_set(x_54, 0, x_53);
|
||||
lean_ctor_set(x_54, 1, x_52);
|
||||
x_55 = l_Lean_Elab_TermInfo_format___lambda__1___closed__2;
|
||||
x_56 = lean_alloc_ctor(4, 2, 0);
|
||||
lean_ctor_set(x_56, 0, x_54);
|
||||
lean_ctor_set(x_56, 1, x_55);
|
||||
x_57 = l___private_Lean_Elab_InfoTree_0__Lean_Elab_formatStxRange(x_1, x_51);
|
||||
lean_dec(x_51);
|
||||
lean_dec(x_1);
|
||||
x_49 = lean_alloc_ctor(4, 2, 0);
|
||||
lean_ctor_set(x_49, 0, x_47);
|
||||
lean_ctor_set(x_49, 1, x_48);
|
||||
x_50 = l_Std_Format_join___closed__1;
|
||||
x_51 = lean_alloc_ctor(4, 2, 0);
|
||||
lean_ctor_set(x_51, 0, x_49);
|
||||
lean_ctor_set(x_51, 1, x_50);
|
||||
x_52 = lean_alloc_ctor(0, 2, 0);
|
||||
lean_ctor_set(x_52, 0, x_51);
|
||||
lean_ctor_set(x_52, 1, x_3);
|
||||
return x_52;
|
||||
x_58 = lean_alloc_ctor(4, 2, 0);
|
||||
lean_ctor_set(x_58, 0, x_56);
|
||||
lean_ctor_set(x_58, 1, x_57);
|
||||
x_59 = l_Std_Format_join___closed__1;
|
||||
x_60 = lean_alloc_ctor(4, 2, 0);
|
||||
lean_ctor_set(x_60, 0, x_58);
|
||||
lean_ctor_set(x_60, 1, x_59);
|
||||
x_61 = lean_alloc_ctor(0, 2, 0);
|
||||
lean_ctor_set(x_61, 0, x_60);
|
||||
lean_ctor_set(x_61, 1, x_3);
|
||||
return x_61;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
lean_object* l_Std_fmt___at_Lean_Elab_CompletionInfo_format___spec__2___boxed(lean_object* x_1) {
|
||||
lean_object* l_Std_fmt___at_Lean_Elab_CompletionInfo_format___spec__1___boxed(lean_object* x_1) {
|
||||
_start:
|
||||
{
|
||||
lean_object* x_2;
|
||||
x_2 = l_Std_fmt___at_Lean_Elab_CompletionInfo_format___spec__2(x_1);
|
||||
x_2 = l_Std_fmt___at_Lean_Elab_CompletionInfo_format___spec__1(x_1);
|
||||
lean_dec(x_1);
|
||||
return x_2;
|
||||
}
|
||||
|
|
|
|||
4
stage0/stdlib/Lean/Elab/StructInst.c
generated
4
stage0/stdlib/Lean/Elab/StructInst.c
generated
|
|
@ -273,7 +273,6 @@ lean_object* l___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_group
|
|||
lean_object* l_Lean_Elab_Term_StructInst_Struct_fields___boxed(lean_object*);
|
||||
lean_object* l___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_elabModifyOp___closed__1;
|
||||
lean_object* l_Lean_Elab_Term_StructInst_DefaultFields_Context_structs___default;
|
||||
lean_object* l_Lean_throwError___at_Lean_Elab_Term_elabCompletion___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_mkStructView___spec__1___boxed(lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_expandStruct___spec__11(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_toFieldLHS___closed__2;
|
||||
|
|
@ -571,6 +570,7 @@ lean_object* l_Lean_Meta_mkFreshLevelMVars(lean_object*, lean_object*, lean_obje
|
|||
lean_object* l___private_Lean_Elab_StructInst_0__Lean_Elab_Term_StructInst_elabStructInstAux___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_List_forIn_loop___at_Lean_Elab_Term_StructInst_DefaultFields_step___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_mk_array(lean_object*, lean_object*);
|
||||
lean_object* l_Lean_throwError___at_Lean_Elab_Term_elabPipeCompletion___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Elab_Term_StructInst_Struct_modifyFieldsM___rarg(lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Elab_Term_StructInst_setStructSourceSyntax_match__1(lean_object*);
|
||||
uint8_t l_Lean_Elab_Term_StructInst_Source_isNone(lean_object*);
|
||||
|
|
@ -26657,7 +26657,7 @@ x_15 = lean_alloc_ctor(2, 1, 0);
|
|||
lean_ctor_set(x_15, 0, x_14);
|
||||
x_16 = lean_alloc_ctor(0, 1, 0);
|
||||
lean_ctor_set(x_16, 0, x_15);
|
||||
x_17 = l_Lean_throwError___at_Lean_Elab_Term_elabCompletion___spec__2(x_16, x_6, x_7, x_8, x_9, x_10, x_11, x_12);
|
||||
x_17 = l_Lean_throwError___at_Lean_Elab_Term_elabPipeCompletion___spec__2(x_16, x_6, x_7, x_8, x_9, x_10, x_11, x_12);
|
||||
lean_dec(x_11);
|
||||
lean_dec(x_10);
|
||||
lean_dec(x_9);
|
||||
|
|
|
|||
116
stage0/stdlib/Lean/Elab/Term.c
generated
116
stage0/stdlib/Lean/Elab/Term.c
generated
|
|
@ -153,7 +153,6 @@ lean_object* l_List_forIn_loop___at_Lean_Elab_Term_logUnassignedUsingErrorInfos_
|
|||
lean_object* l_Lean_Elab_Term_throwErrorIfErrors___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Elab_Term_getDeclName_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
extern lean_object* l_Lean_Syntax_mkAntiquotNode___closed__7;
|
||||
lean_object* l_Lean_Elab_Term_elabCompletion___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_getFVarLocalDecl_x21___closed__2;
|
||||
extern lean_object* l_Std_Format_defWidth;
|
||||
lean_object* l_Lean_Elab_logTrace___at_Lean_Elab_Term_traceAtCmdPos___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
|
|
@ -291,6 +290,7 @@ lean_object* l_Lean_Elab_Term_instMonadLogTermElabM___closed__4;
|
|||
size_t l_Lean_Level_hash(lean_object*);
|
||||
lean_object* l_Lean_Elab_Term_withAutoBoundImplicit_loop_match__1(lean_object*);
|
||||
lean_object* l_Lean_Meta_isMonad_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_12067____closed__1;
|
||||
lean_object* l___private_Lean_Elab_Open_0__Lean_Elab_OpenDecl_elabOpenSimple___at_Lean_Elab_Term_elabOpen___spec__16___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_Term_elabOpen___spec__15___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_elabTermAux_match__1(lean_object*);
|
||||
|
|
@ -342,7 +342,6 @@ extern lean_object* l_Lean_Expr_getAppArgs___closed__1;
|
|||
lean_object* l_Lean_Elab_Term_registerCustomErrorIfMVar___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_instMonadMacroAdapterTermElabM___closed__3;
|
||||
lean_object* l_Lean_Elab_Level_elabLevel(lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_12070____closed__1;
|
||||
lean_object* l_Lean_Elab_Term_mkAuxName(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Std_mkHashSetImp___rarg(lean_object*);
|
||||
lean_object* l_Lean_Elab_Term_mkTermElabAttributeUnsafe___closed__7;
|
||||
|
|
@ -411,7 +410,6 @@ lean_object* l_Lean_Meta_ppGoal(lean_object*, lean_object*, lean_object*, lean_o
|
|||
lean_object* l_Lean_Elab_Term_resolveLocalName_loop_match__1___rarg(lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_isExplicit___boxed(lean_object*);
|
||||
lean_object* l_Array_forInUnsafe_loop___at_Lean_Elab_Term_addAutoBoundImplicits___spec__5(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_elabCompletion(lean_object*);
|
||||
lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_elabImplicitLambda_match__1(lean_object*);
|
||||
lean_object* l_Lean_Elab_Term_ensureHasType(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_throwUnknownConstant___rarg___closed__2;
|
||||
|
|
@ -436,7 +434,6 @@ lean_object* l_Std_HashSetImp_moveEntries___at___private_Lean_Elab_Term_0__Lean_
|
|||
lean_object* l_Lean_Elab_Term_isLetRecAuxMVar___closed__4;
|
||||
extern lean_object* l_myMacro____x40_Init_Notation___hyg_22692____closed__2;
|
||||
extern lean_object* l_Lean_maxRecDepth;
|
||||
lean_object* l_Lean_Elab_Term_elabCompletion___lambda__1___closed__2;
|
||||
lean_object* l_Lean_Elab_pushInfoLeaf___at_Lean_Elab_Term_resolveName___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_throwError___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabTermAux___spec__4___boxed(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_elabOpen___spec__13(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*);
|
||||
|
|
@ -512,7 +509,6 @@ lean_object* l_Lean_Elab_Term_instMonadLogTermElabM___closed__7;
|
|||
lean_object* l_Lean_Elab_Term_instMonadInfoTreeTermElabM___lambda__3(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__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_mkConsts___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_throwErrorAt___at_Lean_Elab_Term_elabCompletion___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Elab_Term_instMonadInfoTreeTermElabM___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
uint8_t l_Lean_Level_normLtAux(lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_List_map___at_Lean_resolveGlobalConstNoOverload___spec__1(lean_object*, lean_object*);
|
||||
|
|
@ -543,6 +539,7 @@ extern lean_object* l_myMacro____x40_Init_Notation___hyg_13856____closed__8;
|
|||
extern lean_object* l_Array_forInUnsafe_loop___at_myMacro____x40_Init_NotationExtra___hyg_5662____spec__3___closed__2;
|
||||
lean_object* lean_st_ref_take(lean_object*, lean_object*);
|
||||
lean_object* l_Lean_getOptionDecl(lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Elab_Term_elabPipeCompletion___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_MVarErrorInfo_logError___closed__2;
|
||||
lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_throwStuckAtUniverseCnstr_match__2(lean_object*);
|
||||
extern lean_object* l_Lean_numLitKind;
|
||||
|
|
@ -550,12 +547,10 @@ lean_object* l_Lean_Elab_Term_getSyntheticMVarDecl_x3f(lean_object*, lean_object
|
|||
lean_object* l_Lean_MetavarContext_levelMVarToParam(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Elab_Term_registerCustomErrorIfMVar(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Elab_withMacroExpansionInfo___at___private_Lean_Elab_Term_0__Lean_Elab_Term_elabTermAux___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_Lean_Elab_Term_elabCompletion___lambda__1___closed__1;
|
||||
lean_object* l_Lean_Elab_Term_isLocalIdent_x3f___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Elab_Term_instMetaEvalTermElabM___rarg___closed__3;
|
||||
lean_object* l_Lean_Elab_Term_instMonadLogTermElabM;
|
||||
extern lean_object* l_term___u2218_____closed__5;
|
||||
lean_object* l_Lean_throwError___at_Lean_Elab_Term_elabCompletion___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_List_map___at_Lean_Elab_Term_isLetRecAuxMVar___spec__2(lean_object*);
|
||||
lean_object* lean_nat_sub(lean_object*, lean_object*);
|
||||
lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Elab_Term_0__Lean_Elab_Term_applyAttributesCore___spec__2(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*);
|
||||
|
|
@ -563,13 +558,13 @@ lean_object* l_Lean_mkConstWithLevelParams___at_Lean_Elab_Term_elabDoubleQuotedN
|
|||
lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_mkTacticMVar___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_mkConst___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_resolveName_match__1(lean_object*);
|
||||
lean_object* l_Lean_Elab_Term_elabCompletion___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Elab_Term_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*);
|
||||
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_Lean_throwError___at_Lean_Elab_Term_elabPipeCompletion___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Elab_Term_TermElabM_run(lean_object*);
|
||||
uint8_t l_Array_contains___at_Lean_Elab_Term_logUnassignedUsingErrorInfos___spec__1(lean_object*, lean_object*);
|
||||
lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_saveContext(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
|
|
@ -590,7 +585,6 @@ lean_object* l_Lean_Elab_Term_synthesizeInstMVarCore___closed__3;
|
|||
lean_object* l_Lean_Meta_mkHasTypeButIsExpectedMsg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Elab_Term_instMetaEvalTermElabM___rarg___closed__2;
|
||||
extern lean_object* l_Lean_Parser_Term_quotedName___elambda__1___closed__2;
|
||||
lean_object* l_Lean_throwError___at_Lean_Elab_Term_elabCompletion___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Elab_Term_withMacroExpansion___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Elab_Term_elabByTactic___closed__2;
|
||||
lean_object* l_Lean_KernelException_toMessageData(lean_object*, lean_object*);
|
||||
|
|
@ -599,6 +593,7 @@ lean_object* l___regBuiltin_Lean_Elab_Term_elabSetOption___closed__1;
|
|||
lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_useImplicitLambda_x3f___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_mkConst___closed__2;
|
||||
lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_mkSyntheticSorryFor___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_throwErrorAt___at_Lean_Elab_Term_elabPipeCompletion___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
extern lean_object* l_Lean_instQuoteProd___rarg___closed__1;
|
||||
lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_elabUsingElabFns_match__1(lean_object*);
|
||||
lean_object* l_Lean_Meta_expandCoe(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
|
|
@ -672,7 +667,6 @@ lean_object* l_Lean_Elab_Term_assignLevelMVar(lean_object*, lean_object*, lean_o
|
|||
lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_tryLiftAndCoe___closed__5;
|
||||
lean_object* l_Lean_Elab_Term_resolveLocalName___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_3342____closed__4;
|
||||
lean_object* l_Lean_throwErrorAt___at_Lean_Elab_Term_elabCompletion___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Elab_Term_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;
|
||||
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*);
|
||||
|
|
@ -856,7 +850,6 @@ uint8_t l_Lean_Expr_Data_binderInfo(uint64_t);
|
|||
lean_object* l_Lean_Meta_mkPure(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Elab_Term_getFVarLocalDecl_x21___closed__1;
|
||||
lean_object* l_Lean_pushScope___at_Lean_Elab_Term_elabOpen___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
extern lean_object* l_Lean_Parser_Term_completion___elambda__1___closed__2;
|
||||
lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_tryLiftAndCoe_match__3___rarg(lean_object*, lean_object*, lean_object*);
|
||||
extern lean_object* l_Lean_KernelException_toMessageData___closed__3;
|
||||
size_t lean_usize_of_nat(lean_object*);
|
||||
|
|
@ -879,7 +872,6 @@ lean_object* l_Lean_Elab_Term_elabSyntheticHole___closed__4;
|
|||
extern lean_object* l_Lean_Parser_Term_cdot___elambda__1___closed__2;
|
||||
lean_object* l_List_replace___at___private_Lean_Elab_Term_0__Lean_Elab_Term_throwStuckAtUniverseCnstr___spec__8___boxed(lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Elab_Term_resolveName___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* l___regBuiltin_Lean_Elab_Term_elabCompletion___closed__1;
|
||||
lean_object* l_instBEqProd___rarg(lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Elab_Term_instMonadInfoTreeTermElabM___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_addTrace___at___private_Lean_Elab_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*);
|
||||
|
|
@ -1186,6 +1178,7 @@ lean_object* l_Lean_Elab_Term_Context_currMacroScope___default;
|
|||
lean_object* l_Lean_Elab_Term_observing___rarg___lambda__1___boxed(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_elabQuotedName(lean_object*);
|
||||
lean_object* l_Lean_Elab_Term_instAddErrorMessageContextTermElabM___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_elabPipeCompletion___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Elab_Term_resolveName_x27_match__6(lean_object*);
|
||||
uint8_t l___private_Lean_Attributes_0__Lean_beqAttributeApplicationTime____x40_Lean_Attributes___hyg_11_(uint8_t, uint8_t);
|
||||
lean_object* l_Lean_Elab_Term_getFVarLocalDecl_x21___closed__3;
|
||||
|
|
@ -1196,6 +1189,7 @@ lean_object* l_Lean_Elab_Term_instMonadLogTermElabM___lambda__3(lean_object*, le
|
|||
lean_object* l_Lean_Elab_addCompletionInfo___at_Lean_Elab_Term_resolveName___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_addMessageContextFull___at_Lean_Meta_instAddMessageContextMetaM___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l___regBuiltin_Lean_Elab_Term_elabDoubleQuotedName(lean_object*);
|
||||
lean_object* l_Lean_Elab_Term_elabPipeCompletion___lambda__1___closed__1;
|
||||
lean_object* l_Lean_Meta_mkSyntheticSorry(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
extern lean_object* l_Lean_instInhabitedName;
|
||||
lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_elabUsingElabFns___closed__3;
|
||||
|
|
@ -1252,6 +1246,8 @@ lean_object* l_Lean_Meta_mkFreshLevelMVars(lean_object*, lean_object*, lean_obje
|
|||
lean_object* lean_mk_array(lean_object*, lean_object*);
|
||||
extern size_t l_Std_PersistentHashMap_insertAux___rarg___closed__2;
|
||||
lean_object* l_Lean_Elab_Term_mkExplicitBinder___closed__1;
|
||||
lean_object* l_Lean_Elab_Term_elabPipeCompletion___lambda__1___closed__2;
|
||||
lean_object* l_Lean_throwError___at_Lean_Elab_Term_elabPipeCompletion___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Elab_Term_registerSyntheticMVarWithCurrRef(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_elabImplicitLambdaAux(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_Term_elabSetOption(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
|
|
@ -1331,7 +1327,7 @@ lean_object* l_Lean_Elab_Term_applyResult___rarg(lean_object*, lean_object*, lea
|
|||
lean_object* l_IO_println___at_Lean_instEval___spec__1(lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Elab_Term_throwErrorIfErrors(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
uint8_t l_Lean_NameSet_contains(lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_12070_(lean_object*);
|
||||
lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_12067_(lean_object*);
|
||||
lean_object* l_Lean_Elab_Term_initFn____x40_Lean_Elab_Term___hyg_3320____closed__2;
|
||||
lean_object* l_Lean_Elab_Term_addAutoBoundImplicits(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Meta_whnfD(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
|
|
@ -1421,7 +1417,6 @@ lean_object* l_Lean_Elab_Term_mkAuxName___boxed(lean_object*, lean_object*, lean
|
|||
lean_object* l_Lean_mkAppB(lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_MetavarContext_findUserName_x3f(lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Elab_addMacroStack___at_Lean_Elab_Term_instAddErrorMessageContextTermElabM___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Elab_Term_elabCompletion(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Elab_pushInfoLeaf___at_Lean_Elab_Term_addTermInfo___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_elabScientificLit_match__1(lean_object*);
|
||||
lean_object* l_Lean_Meta_setMCtx(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
|
|
@ -1433,6 +1428,7 @@ lean_object* l_Lean_Elab_Term_elabStrLit(lean_object*, lean_object*, lean_object
|
|||
lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_throwStuckAtUniverseCnstr_mkMessage_match__1(lean_object*);
|
||||
lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_tryCoe_match__1___rarg(lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_throwError___at_Lean_Elab_Term_resolveName_x27___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_throwErrorAt___at_Lean_Elab_Term_elabPipeCompletion___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l___private_Lean_Elab_Term_0__Lean_Elab_Term_tryCoeSort___closed__2;
|
||||
lean_object* l_Lean_Elab_Term_MVarErrorInfo_logError___closed__4;
|
||||
lean_object* l_Lean_Elab_Term_synthesizeCoeInstMVarCore(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
|
|
@ -32779,7 +32775,7 @@ x_5 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_1);
|
|||
return x_5;
|
||||
}
|
||||
}
|
||||
lean_object* l_Lean_throwError___at_Lean_Elab_Term_elabCompletion___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) {
|
||||
lean_object* l_Lean_throwError___at_Lean_Elab_Term_elabPipeCompletion___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) {
|
||||
_start:
|
||||
{
|
||||
lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; uint8_t x_16;
|
||||
|
|
@ -32827,7 +32823,7 @@ return x_22;
|
|||
}
|
||||
}
|
||||
}
|
||||
lean_object* l_Lean_throwErrorAt___at_Lean_Elab_Term_elabCompletion___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) {
|
||||
lean_object* l_Lean_throwErrorAt___at_Lean_Elab_Term_elabPipeCompletion___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) {
|
||||
_start:
|
||||
{
|
||||
uint8_t x_10;
|
||||
|
|
@ -32839,7 +32835,7 @@ x_11 = lean_ctor_get(x_7, 3);
|
|||
x_12 = l_Lean_replaceRef(x_1, x_11);
|
||||
lean_dec(x_11);
|
||||
lean_ctor_set(x_7, 3, x_12);
|
||||
x_13 = l_Lean_throwError___at_Lean_Elab_Term_elabCompletion___spec__2(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9);
|
||||
x_13 = l_Lean_throwError___at_Lean_Elab_Term_elabPipeCompletion___spec__2(x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9);
|
||||
lean_dec(x_7);
|
||||
return x_13;
|
||||
}
|
||||
|
|
@ -32874,13 +32870,13 @@ lean_ctor_set(x_23, 4, x_18);
|
|||
lean_ctor_set(x_23, 5, x_19);
|
||||
lean_ctor_set(x_23, 6, x_20);
|
||||
lean_ctor_set(x_23, 7, x_21);
|
||||
x_24 = l_Lean_throwError___at_Lean_Elab_Term_elabCompletion___spec__2(x_2, x_3, x_4, x_5, x_6, x_23, x_8, x_9);
|
||||
x_24 = l_Lean_throwError___at_Lean_Elab_Term_elabPipeCompletion___spec__2(x_2, x_3, x_4, x_5, x_6, x_23, x_8, x_9);
|
||||
lean_dec(x_23);
|
||||
return x_24;
|
||||
}
|
||||
}
|
||||
}
|
||||
static lean_object* _init_l_Lean_Elab_Term_elabCompletion___lambda__1___closed__1() {
|
||||
static lean_object* _init_l_Lean_Elab_Term_elabPipeCompletion___lambda__1___closed__1() {
|
||||
_start:
|
||||
{
|
||||
lean_object* x_1;
|
||||
|
|
@ -32888,28 +32884,28 @@ x_1 = lean_mk_string("invalid field notation, identifier or numeral expected");
|
|||
return x_1;
|
||||
}
|
||||
}
|
||||
static lean_object* _init_l_Lean_Elab_Term_elabCompletion___lambda__1___closed__2() {
|
||||
static lean_object* _init_l_Lean_Elab_Term_elabPipeCompletion___lambda__1___closed__2() {
|
||||
_start:
|
||||
{
|
||||
lean_object* x_1; lean_object* x_2;
|
||||
x_1 = l_Lean_Elab_Term_elabCompletion___lambda__1___closed__1;
|
||||
x_1 = l_Lean_Elab_Term_elabPipeCompletion___lambda__1___closed__1;
|
||||
x_2 = l_Lean_stringToMessageData(x_1);
|
||||
return x_2;
|
||||
}
|
||||
}
|
||||
lean_object* l_Lean_Elab_Term_elabCompletion___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* l_Lean_Elab_Term_elabPipeCompletion___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) {
|
||||
_start:
|
||||
{
|
||||
lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13;
|
||||
x_10 = lean_unsigned_to_nat(1u);
|
||||
x_11 = l_Lean_Syntax_getArg(x_1, x_10);
|
||||
x_12 = l_Lean_Elab_Term_elabCompletion___lambda__1___closed__2;
|
||||
x_13 = l_Lean_throwErrorAt___at_Lean_Elab_Term_elabCompletion___spec__1(x_11, x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9);
|
||||
x_12 = l_Lean_Elab_Term_elabPipeCompletion___lambda__1___closed__2;
|
||||
x_13 = l_Lean_throwErrorAt___at_Lean_Elab_Term_elabPipeCompletion___spec__1(x_11, x_12, x_3, x_4, x_5, x_6, x_7, x_8, x_9);
|
||||
lean_dec(x_11);
|
||||
return x_13;
|
||||
}
|
||||
}
|
||||
lean_object* l_Lean_Elab_Term_elabCompletion(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) {
|
||||
lean_object* l_Lean_Elab_Term_elabPipeCompletion(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) {
|
||||
_start:
|
||||
{
|
||||
lean_object* x_10; lean_object* x_11; lean_object* x_12; uint8_t x_13; lean_object* x_14;
|
||||
|
|
@ -32943,7 +32939,7 @@ lean_inc(x_19);
|
|||
x_20 = lean_ctor_get(x_18, 1);
|
||||
lean_inc(x_20);
|
||||
lean_dec(x_18);
|
||||
x_21 = l_Lean_Elab_Term_elabCompletion___lambda__1(x_1, x_19, x_3, x_4, x_5, x_6, x_7, x_8, x_20);
|
||||
x_21 = l_Lean_Elab_Term_elabPipeCompletion___lambda__1(x_1, x_19, x_3, x_4, x_5, x_6, x_7, x_8, x_20);
|
||||
lean_dec(x_8);
|
||||
lean_dec(x_6);
|
||||
lean_dec(x_5);
|
||||
|
|
@ -32958,7 +32954,7 @@ lean_object* x_22; lean_object* x_23;
|
|||
lean_dec(x_15);
|
||||
lean_dec(x_2);
|
||||
x_22 = lean_box(0);
|
||||
x_23 = l_Lean_Elab_Term_elabCompletion___lambda__1(x_1, x_22, x_3, x_4, x_5, x_6, x_7, x_8, x_16);
|
||||
x_23 = l_Lean_Elab_Term_elabPipeCompletion___lambda__1(x_1, x_22, x_3, x_4, x_5, x_6, x_7, x_8, x_16);
|
||||
lean_dec(x_8);
|
||||
lean_dec(x_6);
|
||||
lean_dec(x_5);
|
||||
|
|
@ -32999,11 +32995,11 @@ return x_27;
|
|||
}
|
||||
}
|
||||
}
|
||||
lean_object* l_Lean_throwError___at_Lean_Elab_Term_elabCompletion___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) {
|
||||
lean_object* l_Lean_throwError___at_Lean_Elab_Term_elabPipeCompletion___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) {
|
||||
_start:
|
||||
{
|
||||
lean_object* x_9;
|
||||
x_9 = l_Lean_throwError___at_Lean_Elab_Term_elabCompletion___spec__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8);
|
||||
x_9 = l_Lean_throwError___at_Lean_Elab_Term_elabPipeCompletion___spec__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8);
|
||||
lean_dec(x_7);
|
||||
lean_dec(x_6);
|
||||
lean_dec(x_5);
|
||||
|
|
@ -33012,11 +33008,11 @@ lean_dec(x_3);
|
|||
return x_9;
|
||||
}
|
||||
}
|
||||
lean_object* l_Lean_throwErrorAt___at_Lean_Elab_Term_elabCompletion___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) {
|
||||
lean_object* l_Lean_throwErrorAt___at_Lean_Elab_Term_elabPipeCompletion___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) {
|
||||
_start:
|
||||
{
|
||||
lean_object* x_10;
|
||||
x_10 = l_Lean_throwErrorAt___at_Lean_Elab_Term_elabCompletion___spec__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9);
|
||||
x_10 = l_Lean_throwErrorAt___at_Lean_Elab_Term_elabPipeCompletion___spec__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9);
|
||||
lean_dec(x_8);
|
||||
lean_dec(x_6);
|
||||
lean_dec(x_5);
|
||||
|
|
@ -33025,11 +33021,11 @@ lean_dec(x_1);
|
|||
return x_10;
|
||||
}
|
||||
}
|
||||
lean_object* l_Lean_Elab_Term_elabCompletion___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* l_Lean_Elab_Term_elabPipeCompletion___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) {
|
||||
_start:
|
||||
{
|
||||
lean_object* x_10;
|
||||
x_10 = l_Lean_Elab_Term_elabCompletion___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9);
|
||||
x_10 = l_Lean_Elab_Term_elabPipeCompletion___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9);
|
||||
lean_dec(x_8);
|
||||
lean_dec(x_6);
|
||||
lean_dec(x_5);
|
||||
|
|
@ -33039,33 +33035,6 @@ lean_dec(x_1);
|
|||
return x_10;
|
||||
}
|
||||
}
|
||||
static lean_object* _init_l___regBuiltin_Lean_Elab_Term_elabCompletion___closed__1() {
|
||||
_start:
|
||||
{
|
||||
lean_object* x_1;
|
||||
x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Term_elabCompletion), 9, 0);
|
||||
return x_1;
|
||||
}
|
||||
}
|
||||
lean_object* l___regBuiltin_Lean_Elab_Term_elabCompletion(lean_object* x_1) {
|
||||
_start:
|
||||
{
|
||||
lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5;
|
||||
x_2 = l_Lean_Elab_Term_termElabAttribute;
|
||||
x_3 = l_Lean_Parser_Term_completion___elambda__1___closed__2;
|
||||
x_4 = l___regBuiltin_Lean_Elab_Term_elabCompletion___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_Term_elabPipeCompletion(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) {
|
||||
_start:
|
||||
{
|
||||
lean_object* x_10;
|
||||
x_10 = l_Lean_Elab_Term_elabCompletion(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9);
|
||||
return x_10;
|
||||
}
|
||||
}
|
||||
static lean_object* _init_l___regBuiltin_Lean_Elab_Term_elabPipeCompletion___closed__1() {
|
||||
_start:
|
||||
{
|
||||
|
|
@ -37325,7 +37294,7 @@ _start:
|
|||
lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6;
|
||||
x_1 = l_Lean_Elab_Term_getFVarLocalDecl_x21___closed__2;
|
||||
x_2 = l_List_mapM___at_Lean_Elab_Term_resolveName_x27___spec__6___closed__2;
|
||||
x_3 = lean_unsigned_to_nat(1383u);
|
||||
x_3 = lean_unsigned_to_nat(1381u);
|
||||
x_4 = lean_unsigned_to_nat(31u);
|
||||
x_5 = l_Lean_Name_getString_x21___closed__3;
|
||||
x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5);
|
||||
|
|
@ -53506,7 +53475,7 @@ lean_dec(x_3);
|
|||
return x_11;
|
||||
}
|
||||
}
|
||||
static lean_object* _init_l_Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_12070____closed__1() {
|
||||
static lean_object* _init_l_Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_12067____closed__1() {
|
||||
_start:
|
||||
{
|
||||
lean_object* x_1; lean_object* x_2; lean_object* x_3;
|
||||
|
|
@ -53516,7 +53485,7 @@ x_3 = lean_name_mk_string(x_1, x_2);
|
|||
return x_3;
|
||||
}
|
||||
}
|
||||
lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_12070_(lean_object* x_1) {
|
||||
lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_12067_(lean_object* x_1) {
|
||||
_start:
|
||||
{
|
||||
lean_object* x_2; lean_object* x_3;
|
||||
|
|
@ -53528,7 +53497,7 @@ lean_object* x_4; lean_object* x_5; lean_object* x_6;
|
|||
x_4 = lean_ctor_get(x_3, 1);
|
||||
lean_inc(x_4);
|
||||
lean_dec(x_3);
|
||||
x_5 = l_Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_12070____closed__1;
|
||||
x_5 = l_Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_12067____closed__1;
|
||||
x_6 = l_Lean_registerTraceClass(x_5, x_4);
|
||||
if (lean_obj_tag(x_6) == 0)
|
||||
{
|
||||
|
|
@ -54023,15 +53992,10 @@ lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_elabTypeStx___closed__1);
|
|||
res = l___regBuiltin_Lean_Elab_Term_elabTypeStx(lean_io_mk_world());
|
||||
if (lean_io_result_is_error(res)) return res;
|
||||
lean_dec_ref(res);
|
||||
l_Lean_Elab_Term_elabCompletion___lambda__1___closed__1 = _init_l_Lean_Elab_Term_elabCompletion___lambda__1___closed__1();
|
||||
lean_mark_persistent(l_Lean_Elab_Term_elabCompletion___lambda__1___closed__1);
|
||||
l_Lean_Elab_Term_elabCompletion___lambda__1___closed__2 = _init_l_Lean_Elab_Term_elabCompletion___lambda__1___closed__2();
|
||||
lean_mark_persistent(l_Lean_Elab_Term_elabCompletion___lambda__1___closed__2);
|
||||
l___regBuiltin_Lean_Elab_Term_elabCompletion___closed__1 = _init_l___regBuiltin_Lean_Elab_Term_elabCompletion___closed__1();
|
||||
lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_elabCompletion___closed__1);
|
||||
res = l___regBuiltin_Lean_Elab_Term_elabCompletion(lean_io_mk_world());
|
||||
if (lean_io_result_is_error(res)) return res;
|
||||
lean_dec_ref(res);
|
||||
l_Lean_Elab_Term_elabPipeCompletion___lambda__1___closed__1 = _init_l_Lean_Elab_Term_elabPipeCompletion___lambda__1___closed__1();
|
||||
lean_mark_persistent(l_Lean_Elab_Term_elabPipeCompletion___lambda__1___closed__1);
|
||||
l_Lean_Elab_Term_elabPipeCompletion___lambda__1___closed__2 = _init_l_Lean_Elab_Term_elabPipeCompletion___lambda__1___closed__2();
|
||||
lean_mark_persistent(l_Lean_Elab_Term_elabPipeCompletion___lambda__1___closed__2);
|
||||
l___regBuiltin_Lean_Elab_Term_elabPipeCompletion___closed__1 = _init_l___regBuiltin_Lean_Elab_Term_elabPipeCompletion___closed__1();
|
||||
lean_mark_persistent(l___regBuiltin_Lean_Elab_Term_elabPipeCompletion___closed__1);
|
||||
res = l___regBuiltin_Lean_Elab_Term_elabPipeCompletion(lean_io_mk_world());
|
||||
|
|
@ -54229,9 +54193,9 @@ l___private_Lean_Elab_Term_0__Lean_Elab_Term_throwStuckAtUniverseCnstr___closed_
|
|||
lean_mark_persistent(l___private_Lean_Elab_Term_0__Lean_Elab_Term_throwStuckAtUniverseCnstr___closed__3);
|
||||
l___private_Lean_Elab_Term_0__Lean_Elab_Term_throwStuckAtUniverseCnstr___closed__4 = _init_l___private_Lean_Elab_Term_0__Lean_Elab_Term_throwStuckAtUniverseCnstr___closed__4();
|
||||
lean_mark_persistent(l___private_Lean_Elab_Term_0__Lean_Elab_Term_throwStuckAtUniverseCnstr___closed__4);
|
||||
l_Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_12070____closed__1 = _init_l_Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_12070____closed__1();
|
||||
lean_mark_persistent(l_Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_12070____closed__1);
|
||||
res = l_Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_12070_(lean_io_mk_world());
|
||||
l_Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_12067____closed__1 = _init_l_Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_12067____closed__1();
|
||||
lean_mark_persistent(l_Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_12067____closed__1);
|
||||
res = l_Lean_Elab_initFn____x40_Lean_Elab_Term___hyg_12067_(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));
|
||||
|
|
|
|||
554
stage0/stdlib/Lean/Parser/Module.c
generated
554
stage0/stdlib/Lean/Parser/Module.c
generated
|
|
@ -2970,7 +2970,7 @@ return x_25;
|
|||
}
|
||||
else
|
||||
{
|
||||
lean_object* x_26; lean_object* x_27; uint8_t x_28;
|
||||
lean_object* x_26; lean_object* x_27; uint8_t x_28; lean_object* x_29; uint8_t x_30;
|
||||
x_26 = lean_ctor_get(x_19, 0);
|
||||
lean_inc(x_26);
|
||||
lean_dec(x_19);
|
||||
|
|
@ -2978,32 +2978,32 @@ x_27 = lean_ctor_get(x_18, 2);
|
|||
lean_inc(x_27);
|
||||
x_28 = lean_nat_dec_eq(x_27, x_5);
|
||||
lean_dec(x_5);
|
||||
x_29 = lean_ctor_get(x_18, 0);
|
||||
lean_inc(x_29);
|
||||
lean_dec(x_18);
|
||||
x_30 = l_Array_isEmpty___rarg(x_29);
|
||||
if (x_28 == 0)
|
||||
{
|
||||
if (x_6 == 0)
|
||||
{
|
||||
lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; uint8_t x_33;
|
||||
x_29 = l_Lean_Parser_Error_toString(x_26);
|
||||
x_30 = l___private_Lean_Parser_Module_0__Lean_Parser_mkErrorMessage(x_11, x_27, x_29);
|
||||
lean_object* x_31; lean_object* x_32; lean_object* x_33;
|
||||
x_31 = l_Lean_Parser_Error_toString(x_26);
|
||||
x_32 = l___private_Lean_Parser_Module_0__Lean_Parser_mkErrorMessage(x_11, x_27, x_31);
|
||||
lean_dec(x_11);
|
||||
x_31 = l_Std_PersistentArray_push___rarg(x_4, x_30);
|
||||
x_32 = lean_ctor_get(x_18, 0);
|
||||
lean_inc(x_32);
|
||||
lean_dec(x_18);
|
||||
x_33 = l_Array_isEmpty___rarg(x_32);
|
||||
if (x_33 == 0)
|
||||
x_33 = l_Std_PersistentArray_push___rarg(x_4, x_32);
|
||||
if (x_30 == 0)
|
||||
{
|
||||
lean_object* x_34; uint8_t x_35; lean_object* x_36; lean_object* x_37;
|
||||
lean_dec(x_2);
|
||||
lean_dec(x_1);
|
||||
x_34 = l_Array_back___at_Lean_Syntax_Traverser_up___spec__2(x_32);
|
||||
lean_dec(x_32);
|
||||
x_34 = l_Array_back___at_Lean_Syntax_Traverser_up___spec__2(x_29);
|
||||
lean_dec(x_29);
|
||||
x_35 = 1;
|
||||
lean_ctor_set(x_3, 0, x_27);
|
||||
lean_ctor_set_uint8(x_3, sizeof(void*)*1, x_35);
|
||||
x_36 = lean_alloc_ctor(0, 2, 0);
|
||||
lean_ctor_set(x_36, 0, x_3);
|
||||
lean_ctor_set(x_36, 1, x_31);
|
||||
lean_ctor_set(x_36, 1, x_33);
|
||||
x_37 = lean_alloc_ctor(0, 2, 0);
|
||||
lean_ctor_set(x_37, 0, x_34);
|
||||
lean_ctor_set(x_37, 1, x_36);
|
||||
|
|
@ -3012,289 +3012,385 @@ return x_37;
|
|||
else
|
||||
{
|
||||
uint8_t x_38;
|
||||
lean_dec(x_32);
|
||||
lean_dec(x_29);
|
||||
x_38 = 1;
|
||||
lean_ctor_set(x_3, 0, x_27);
|
||||
lean_ctor_set_uint8(x_3, sizeof(void*)*1, x_38);
|
||||
x_4 = x_31;
|
||||
x_4 = x_33;
|
||||
goto _start;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
uint8_t x_40;
|
||||
lean_dec(x_26);
|
||||
lean_dec(x_18);
|
||||
lean_dec(x_11);
|
||||
x_40 = 1;
|
||||
lean_ctor_set(x_3, 0, x_27);
|
||||
lean_ctor_set_uint8(x_3, sizeof(void*)*1, x_40);
|
||||
goto _start;
|
||||
}
|
||||
}
|
||||
else
|
||||
if (x_30 == 0)
|
||||
{
|
||||
lean_object* x_42;
|
||||
lean_inc(x_27);
|
||||
lean_inc(x_11);
|
||||
x_42 = l___private_Lean_Parser_Module_0__Lean_Parser_consumeInput(x_11, x_27);
|
||||
if (x_6 == 0)
|
||||
{
|
||||
lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; uint8_t x_47;
|
||||
x_43 = l_Lean_Parser_Error_toString(x_26);
|
||||
x_44 = l___private_Lean_Parser_Module_0__Lean_Parser_mkErrorMessage(x_11, x_27, x_43);
|
||||
lean_dec(x_27);
|
||||
lean_dec(x_11);
|
||||
x_45 = l_Std_PersistentArray_push___rarg(x_4, x_44);
|
||||
x_46 = lean_ctor_get(x_18, 0);
|
||||
lean_inc(x_46);
|
||||
lean_dec(x_18);
|
||||
x_47 = l_Array_isEmpty___rarg(x_46);
|
||||
if (x_47 == 0)
|
||||
{
|
||||
lean_object* x_48; uint8_t x_49; lean_object* x_50; lean_object* x_51;
|
||||
lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; uint8_t x_44; lean_object* x_45; lean_object* x_46;
|
||||
lean_dec(x_2);
|
||||
lean_dec(x_1);
|
||||
x_48 = l_Array_back___at_Lean_Syntax_Traverser_up___spec__2(x_46);
|
||||
lean_dec(x_46);
|
||||
x_49 = 1;
|
||||
lean_ctor_set(x_3, 0, x_42);
|
||||
lean_ctor_set_uint8(x_3, sizeof(void*)*1, x_49);
|
||||
x_50 = lean_alloc_ctor(0, 2, 0);
|
||||
lean_ctor_set(x_50, 0, x_3);
|
||||
lean_ctor_set(x_50, 1, x_45);
|
||||
x_51 = lean_alloc_ctor(0, 2, 0);
|
||||
lean_ctor_set(x_51, 0, x_48);
|
||||
lean_ctor_set(x_51, 1, x_50);
|
||||
return x_51;
|
||||
x_40 = l_Lean_Parser_Error_toString(x_26);
|
||||
x_41 = l___private_Lean_Parser_Module_0__Lean_Parser_mkErrorMessage(x_11, x_27, x_40);
|
||||
lean_dec(x_11);
|
||||
x_42 = l_Std_PersistentArray_push___rarg(x_4, x_41);
|
||||
x_43 = l_Array_back___at_Lean_Syntax_Traverser_up___spec__2(x_29);
|
||||
lean_dec(x_29);
|
||||
x_44 = 1;
|
||||
lean_ctor_set(x_3, 0, x_27);
|
||||
lean_ctor_set_uint8(x_3, sizeof(void*)*1, x_44);
|
||||
x_45 = lean_alloc_ctor(0, 2, 0);
|
||||
lean_ctor_set(x_45, 0, x_3);
|
||||
lean_ctor_set(x_45, 1, x_42);
|
||||
x_46 = lean_alloc_ctor(0, 2, 0);
|
||||
lean_ctor_set(x_46, 0, x_43);
|
||||
lean_ctor_set(x_46, 1, x_45);
|
||||
return x_46;
|
||||
}
|
||||
else
|
||||
{
|
||||
uint8_t x_52;
|
||||
lean_dec(x_46);
|
||||
x_52 = 1;
|
||||
lean_ctor_set(x_3, 0, x_42);
|
||||
lean_ctor_set_uint8(x_3, sizeof(void*)*1, x_52);
|
||||
x_4 = x_45;
|
||||
uint8_t x_47;
|
||||
lean_dec(x_29);
|
||||
lean_dec(x_26);
|
||||
lean_dec(x_11);
|
||||
x_47 = 1;
|
||||
lean_ctor_set(x_3, 0, x_27);
|
||||
lean_ctor_set_uint8(x_3, sizeof(void*)*1, x_47);
|
||||
goto _start;
|
||||
}
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
lean_object* x_49;
|
||||
lean_inc(x_27);
|
||||
lean_inc(x_11);
|
||||
x_49 = l___private_Lean_Parser_Module_0__Lean_Parser_consumeInput(x_11, x_27);
|
||||
if (x_6 == 0)
|
||||
{
|
||||
lean_object* x_50; lean_object* x_51; lean_object* x_52;
|
||||
x_50 = l_Lean_Parser_Error_toString(x_26);
|
||||
x_51 = l___private_Lean_Parser_Module_0__Lean_Parser_mkErrorMessage(x_11, x_27, x_50);
|
||||
lean_dec(x_27);
|
||||
lean_dec(x_11);
|
||||
x_52 = l_Std_PersistentArray_push___rarg(x_4, x_51);
|
||||
if (x_30 == 0)
|
||||
{
|
||||
lean_object* x_53; uint8_t x_54; lean_object* x_55; lean_object* x_56;
|
||||
lean_dec(x_2);
|
||||
lean_dec(x_1);
|
||||
x_53 = l_Array_back___at_Lean_Syntax_Traverser_up___spec__2(x_29);
|
||||
lean_dec(x_29);
|
||||
x_54 = 1;
|
||||
lean_ctor_set(x_3, 0, x_49);
|
||||
lean_ctor_set_uint8(x_3, sizeof(void*)*1, x_54);
|
||||
x_55 = lean_alloc_ctor(0, 2, 0);
|
||||
lean_ctor_set(x_55, 0, x_3);
|
||||
lean_ctor_set(x_55, 1, x_52);
|
||||
x_56 = lean_alloc_ctor(0, 2, 0);
|
||||
lean_ctor_set(x_56, 0, x_53);
|
||||
lean_ctor_set(x_56, 1, x_55);
|
||||
return x_56;
|
||||
}
|
||||
else
|
||||
{
|
||||
uint8_t x_57;
|
||||
lean_dec(x_29);
|
||||
x_57 = 1;
|
||||
lean_ctor_set(x_3, 0, x_49);
|
||||
lean_ctor_set_uint8(x_3, sizeof(void*)*1, x_57);
|
||||
x_4 = x_52;
|
||||
goto _start;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
uint8_t x_54;
|
||||
if (x_30 == 0)
|
||||
{
|
||||
lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; uint8_t x_63; lean_object* x_64; lean_object* x_65;
|
||||
lean_dec(x_2);
|
||||
lean_dec(x_1);
|
||||
x_59 = l_Lean_Parser_Error_toString(x_26);
|
||||
x_60 = l___private_Lean_Parser_Module_0__Lean_Parser_mkErrorMessage(x_11, x_27, x_59);
|
||||
lean_dec(x_27);
|
||||
lean_dec(x_11);
|
||||
x_61 = l_Std_PersistentArray_push___rarg(x_4, x_60);
|
||||
x_62 = l_Array_back___at_Lean_Syntax_Traverser_up___spec__2(x_29);
|
||||
lean_dec(x_29);
|
||||
x_63 = 1;
|
||||
lean_ctor_set(x_3, 0, x_49);
|
||||
lean_ctor_set_uint8(x_3, sizeof(void*)*1, x_63);
|
||||
x_64 = lean_alloc_ctor(0, 2, 0);
|
||||
lean_ctor_set(x_64, 0, x_3);
|
||||
lean_ctor_set(x_64, 1, x_61);
|
||||
x_65 = lean_alloc_ctor(0, 2, 0);
|
||||
lean_ctor_set(x_65, 0, x_62);
|
||||
lean_ctor_set(x_65, 1, x_64);
|
||||
return x_65;
|
||||
}
|
||||
else
|
||||
{
|
||||
uint8_t x_66;
|
||||
lean_dec(x_29);
|
||||
lean_dec(x_27);
|
||||
lean_dec(x_26);
|
||||
lean_dec(x_18);
|
||||
lean_dec(x_11);
|
||||
x_54 = 1;
|
||||
lean_ctor_set(x_3, 0, x_42);
|
||||
lean_ctor_set_uint8(x_3, sizeof(void*)*1, x_54);
|
||||
x_66 = 1;
|
||||
lean_ctor_set(x_3, 0, x_49);
|
||||
lean_ctor_set_uint8(x_3, sizeof(void*)*1, x_66);
|
||||
goto _start;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64;
|
||||
lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76;
|
||||
lean_dec(x_3);
|
||||
lean_inc(x_2);
|
||||
lean_inc(x_1);
|
||||
x_56 = l_Lean_Parser_mkParserContext(x_1, x_2);
|
||||
x_57 = l_Lean_Parser_initCacheForInput(x_7);
|
||||
x_68 = l_Lean_Parser_mkParserContext(x_1, x_2);
|
||||
x_69 = l_Lean_Parser_initCacheForInput(x_7);
|
||||
lean_dec(x_7);
|
||||
x_58 = lean_box(0);
|
||||
x_59 = l_Array_empty___closed__1;
|
||||
x_60 = lean_unsigned_to_nat(0u);
|
||||
x_70 = lean_box(0);
|
||||
x_71 = l_Array_empty___closed__1;
|
||||
x_72 = lean_unsigned_to_nat(0u);
|
||||
lean_inc(x_5);
|
||||
x_61 = lean_alloc_ctor(0, 5, 0);
|
||||
lean_ctor_set(x_61, 0, x_59);
|
||||
lean_ctor_set(x_61, 1, x_60);
|
||||
lean_ctor_set(x_61, 2, x_5);
|
||||
lean_ctor_set(x_61, 3, x_57);
|
||||
lean_ctor_set(x_61, 4, x_58);
|
||||
x_62 = l_Lean_Parser_whitespace(x_56, x_61);
|
||||
lean_inc(x_56);
|
||||
x_63 = l_Lean_Parser_topLevelCommandParserFn(x_56, x_62);
|
||||
x_64 = lean_ctor_get(x_63, 4);
|
||||
lean_inc(x_64);
|
||||
if (lean_obj_tag(x_64) == 0)
|
||||
x_73 = lean_alloc_ctor(0, 5, 0);
|
||||
lean_ctor_set(x_73, 0, x_71);
|
||||
lean_ctor_set(x_73, 1, x_72);
|
||||
lean_ctor_set(x_73, 2, x_5);
|
||||
lean_ctor_set(x_73, 3, x_69);
|
||||
lean_ctor_set(x_73, 4, x_70);
|
||||
x_74 = l_Lean_Parser_whitespace(x_68, x_73);
|
||||
lean_inc(x_68);
|
||||
x_75 = l_Lean_Parser_topLevelCommandParserFn(x_68, x_74);
|
||||
x_76 = lean_ctor_get(x_75, 4);
|
||||
lean_inc(x_76);
|
||||
if (lean_obj_tag(x_76) == 0)
|
||||
{
|
||||
lean_object* x_65; lean_object* x_66; lean_object* x_67; uint8_t x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71;
|
||||
lean_dec(x_56);
|
||||
lean_object* x_77; lean_object* x_78; lean_object* x_79; uint8_t x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83;
|
||||
lean_dec(x_68);
|
||||
lean_dec(x_5);
|
||||
lean_dec(x_2);
|
||||
lean_dec(x_1);
|
||||
x_65 = lean_ctor_get(x_63, 0);
|
||||
lean_inc(x_65);
|
||||
x_66 = l_Array_back___at_Lean_Syntax_Traverser_up___spec__2(x_65);
|
||||
lean_dec(x_65);
|
||||
x_67 = lean_ctor_get(x_63, 2);
|
||||
lean_inc(x_67);
|
||||
lean_dec(x_63);
|
||||
x_68 = 0;
|
||||
x_69 = lean_alloc_ctor(0, 1, 1);
|
||||
lean_ctor_set(x_69, 0, x_67);
|
||||
lean_ctor_set_uint8(x_69, sizeof(void*)*1, x_68);
|
||||
x_70 = lean_alloc_ctor(0, 2, 0);
|
||||
lean_ctor_set(x_70, 0, x_69);
|
||||
lean_ctor_set(x_70, 1, x_4);
|
||||
x_71 = lean_alloc_ctor(0, 2, 0);
|
||||
lean_ctor_set(x_71, 0, x_66);
|
||||
lean_ctor_set(x_71, 1, x_70);
|
||||
return x_71;
|
||||
}
|
||||
else
|
||||
{
|
||||
lean_object* x_72; lean_object* x_73; uint8_t x_74;
|
||||
x_72 = lean_ctor_get(x_64, 0);
|
||||
lean_inc(x_72);
|
||||
lean_dec(x_64);
|
||||
x_73 = lean_ctor_get(x_63, 2);
|
||||
lean_inc(x_73);
|
||||
x_74 = lean_nat_dec_eq(x_73, x_5);
|
||||
lean_dec(x_5);
|
||||
if (x_74 == 0)
|
||||
{
|
||||
if (x_6 == 0)
|
||||
{
|
||||
lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; uint8_t x_79;
|
||||
x_75 = l_Lean_Parser_Error_toString(x_72);
|
||||
x_76 = l___private_Lean_Parser_Module_0__Lean_Parser_mkErrorMessage(x_56, x_73, x_75);
|
||||
lean_dec(x_56);
|
||||
x_77 = l_Std_PersistentArray_push___rarg(x_4, x_76);
|
||||
x_78 = lean_ctor_get(x_63, 0);
|
||||
lean_inc(x_78);
|
||||
lean_dec(x_63);
|
||||
x_79 = l_Array_isEmpty___rarg(x_78);
|
||||
if (x_79 == 0)
|
||||
{
|
||||
lean_object* x_80; uint8_t x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84;
|
||||
lean_dec(x_2);
|
||||
lean_dec(x_1);
|
||||
x_80 = l_Array_back___at_Lean_Syntax_Traverser_up___spec__2(x_78);
|
||||
lean_dec(x_78);
|
||||
x_81 = 1;
|
||||
x_82 = lean_alloc_ctor(0, 1, 1);
|
||||
lean_ctor_set(x_82, 0, x_73);
|
||||
lean_ctor_set_uint8(x_82, sizeof(void*)*1, x_81);
|
||||
x_77 = lean_ctor_get(x_75, 0);
|
||||
lean_inc(x_77);
|
||||
x_78 = l_Array_back___at_Lean_Syntax_Traverser_up___spec__2(x_77);
|
||||
lean_dec(x_77);
|
||||
x_79 = lean_ctor_get(x_75, 2);
|
||||
lean_inc(x_79);
|
||||
lean_dec(x_75);
|
||||
x_80 = 0;
|
||||
x_81 = lean_alloc_ctor(0, 1, 1);
|
||||
lean_ctor_set(x_81, 0, x_79);
|
||||
lean_ctor_set_uint8(x_81, sizeof(void*)*1, x_80);
|
||||
x_82 = lean_alloc_ctor(0, 2, 0);
|
||||
lean_ctor_set(x_82, 0, x_81);
|
||||
lean_ctor_set(x_82, 1, x_4);
|
||||
x_83 = lean_alloc_ctor(0, 2, 0);
|
||||
lean_ctor_set(x_83, 0, x_82);
|
||||
lean_ctor_set(x_83, 1, x_77);
|
||||
x_84 = lean_alloc_ctor(0, 2, 0);
|
||||
lean_ctor_set(x_84, 0, x_80);
|
||||
lean_ctor_set(x_84, 1, x_83);
|
||||
return x_84;
|
||||
lean_ctor_set(x_83, 0, x_78);
|
||||
lean_ctor_set(x_83, 1, x_82);
|
||||
return x_83;
|
||||
}
|
||||
else
|
||||
{
|
||||
uint8_t x_85; lean_object* x_86;
|
||||
lean_dec(x_78);
|
||||
x_85 = 1;
|
||||
x_86 = lean_alloc_ctor(0, 1, 1);
|
||||
lean_ctor_set(x_86, 0, x_73);
|
||||
lean_ctor_set_uint8(x_86, sizeof(void*)*1, x_85);
|
||||
x_3 = x_86;
|
||||
x_4 = x_77;
|
||||
goto _start;
|
||||
}
|
||||
}
|
||||
else
|
||||
lean_object* x_84; lean_object* x_85; uint8_t x_86; lean_object* x_87; uint8_t x_88;
|
||||
x_84 = lean_ctor_get(x_76, 0);
|
||||
lean_inc(x_84);
|
||||
lean_dec(x_76);
|
||||
x_85 = lean_ctor_get(x_75, 2);
|
||||
lean_inc(x_85);
|
||||
x_86 = lean_nat_dec_eq(x_85, x_5);
|
||||
lean_dec(x_5);
|
||||
x_87 = lean_ctor_get(x_75, 0);
|
||||
lean_inc(x_87);
|
||||
lean_dec(x_75);
|
||||
x_88 = l_Array_isEmpty___rarg(x_87);
|
||||
if (x_86 == 0)
|
||||
{
|
||||
uint8_t x_88; lean_object* x_89;
|
||||
lean_dec(x_72);
|
||||
lean_dec(x_63);
|
||||
lean_dec(x_56);
|
||||
x_88 = 1;
|
||||
x_89 = lean_alloc_ctor(0, 1, 1);
|
||||
lean_ctor_set(x_89, 0, x_73);
|
||||
lean_ctor_set_uint8(x_89, sizeof(void*)*1, x_88);
|
||||
x_3 = x_89;
|
||||
goto _start;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
lean_object* x_91;
|
||||
lean_inc(x_73);
|
||||
lean_inc(x_56);
|
||||
x_91 = l___private_Lean_Parser_Module_0__Lean_Parser_consumeInput(x_56, x_73);
|
||||
if (x_6 == 0)
|
||||
{
|
||||
lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; uint8_t x_96;
|
||||
x_92 = l_Lean_Parser_Error_toString(x_72);
|
||||
x_93 = l___private_Lean_Parser_Module_0__Lean_Parser_mkErrorMessage(x_56, x_73, x_92);
|
||||
lean_dec(x_73);
|
||||
lean_dec(x_56);
|
||||
x_94 = l_Std_PersistentArray_push___rarg(x_4, x_93);
|
||||
x_95 = lean_ctor_get(x_63, 0);
|
||||
lean_inc(x_95);
|
||||
lean_dec(x_63);
|
||||
x_96 = l_Array_isEmpty___rarg(x_95);
|
||||
if (x_96 == 0)
|
||||
lean_object* x_89; lean_object* x_90; lean_object* x_91;
|
||||
x_89 = l_Lean_Parser_Error_toString(x_84);
|
||||
x_90 = l___private_Lean_Parser_Module_0__Lean_Parser_mkErrorMessage(x_68, x_85, x_89);
|
||||
lean_dec(x_68);
|
||||
x_91 = l_Std_PersistentArray_push___rarg(x_4, x_90);
|
||||
if (x_88 == 0)
|
||||
{
|
||||
lean_object* x_97; uint8_t x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101;
|
||||
lean_object* x_92; uint8_t x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96;
|
||||
lean_dec(x_2);
|
||||
lean_dec(x_1);
|
||||
x_97 = l_Array_back___at_Lean_Syntax_Traverser_up___spec__2(x_95);
|
||||
lean_dec(x_95);
|
||||
x_98 = 1;
|
||||
x_99 = lean_alloc_ctor(0, 1, 1);
|
||||
lean_ctor_set(x_99, 0, x_91);
|
||||
lean_ctor_set_uint8(x_99, sizeof(void*)*1, x_98);
|
||||
x_100 = lean_alloc_ctor(0, 2, 0);
|
||||
lean_ctor_set(x_100, 0, x_99);
|
||||
lean_ctor_set(x_100, 1, x_94);
|
||||
x_101 = lean_alloc_ctor(0, 2, 0);
|
||||
lean_ctor_set(x_101, 0, x_97);
|
||||
lean_ctor_set(x_101, 1, x_100);
|
||||
return x_101;
|
||||
x_92 = l_Array_back___at_Lean_Syntax_Traverser_up___spec__2(x_87);
|
||||
lean_dec(x_87);
|
||||
x_93 = 1;
|
||||
x_94 = lean_alloc_ctor(0, 1, 1);
|
||||
lean_ctor_set(x_94, 0, x_85);
|
||||
lean_ctor_set_uint8(x_94, sizeof(void*)*1, x_93);
|
||||
x_95 = lean_alloc_ctor(0, 2, 0);
|
||||
lean_ctor_set(x_95, 0, x_94);
|
||||
lean_ctor_set(x_95, 1, x_91);
|
||||
x_96 = lean_alloc_ctor(0, 2, 0);
|
||||
lean_ctor_set(x_96, 0, x_92);
|
||||
lean_ctor_set(x_96, 1, x_95);
|
||||
return x_96;
|
||||
}
|
||||
else
|
||||
{
|
||||
uint8_t x_102; lean_object* x_103;
|
||||
lean_dec(x_95);
|
||||
x_102 = 1;
|
||||
x_103 = lean_alloc_ctor(0, 1, 1);
|
||||
lean_ctor_set(x_103, 0, x_91);
|
||||
lean_ctor_set_uint8(x_103, sizeof(void*)*1, x_102);
|
||||
x_3 = x_103;
|
||||
x_4 = x_94;
|
||||
uint8_t x_97; lean_object* x_98;
|
||||
lean_dec(x_87);
|
||||
x_97 = 1;
|
||||
x_98 = lean_alloc_ctor(0, 1, 1);
|
||||
lean_ctor_set(x_98, 0, x_85);
|
||||
lean_ctor_set_uint8(x_98, sizeof(void*)*1, x_97);
|
||||
x_3 = x_98;
|
||||
x_4 = x_91;
|
||||
goto _start;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
uint8_t x_105; lean_object* x_106;
|
||||
lean_dec(x_73);
|
||||
lean_dec(x_72);
|
||||
lean_dec(x_63);
|
||||
lean_dec(x_56);
|
||||
x_105 = 1;
|
||||
x_106 = lean_alloc_ctor(0, 1, 1);
|
||||
lean_ctor_set(x_106, 0, x_91);
|
||||
lean_ctor_set_uint8(x_106, sizeof(void*)*1, x_105);
|
||||
x_3 = x_106;
|
||||
if (x_88 == 0)
|
||||
{
|
||||
lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; uint8_t x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107;
|
||||
lean_dec(x_2);
|
||||
lean_dec(x_1);
|
||||
x_100 = l_Lean_Parser_Error_toString(x_84);
|
||||
x_101 = l___private_Lean_Parser_Module_0__Lean_Parser_mkErrorMessage(x_68, x_85, x_100);
|
||||
lean_dec(x_68);
|
||||
x_102 = l_Std_PersistentArray_push___rarg(x_4, x_101);
|
||||
x_103 = l_Array_back___at_Lean_Syntax_Traverser_up___spec__2(x_87);
|
||||
lean_dec(x_87);
|
||||
x_104 = 1;
|
||||
x_105 = lean_alloc_ctor(0, 1, 1);
|
||||
lean_ctor_set(x_105, 0, x_85);
|
||||
lean_ctor_set_uint8(x_105, sizeof(void*)*1, x_104);
|
||||
x_106 = lean_alloc_ctor(0, 2, 0);
|
||||
lean_ctor_set(x_106, 0, x_105);
|
||||
lean_ctor_set(x_106, 1, x_102);
|
||||
x_107 = lean_alloc_ctor(0, 2, 0);
|
||||
lean_ctor_set(x_107, 0, x_103);
|
||||
lean_ctor_set(x_107, 1, x_106);
|
||||
return x_107;
|
||||
}
|
||||
else
|
||||
{
|
||||
uint8_t x_108; lean_object* x_109;
|
||||
lean_dec(x_87);
|
||||
lean_dec(x_84);
|
||||
lean_dec(x_68);
|
||||
x_108 = 1;
|
||||
x_109 = lean_alloc_ctor(0, 1, 1);
|
||||
lean_ctor_set(x_109, 0, x_85);
|
||||
lean_ctor_set_uint8(x_109, sizeof(void*)*1, x_108);
|
||||
x_3 = x_109;
|
||||
goto _start;
|
||||
}
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
lean_object* x_111;
|
||||
lean_inc(x_85);
|
||||
lean_inc(x_68);
|
||||
x_111 = l___private_Lean_Parser_Module_0__Lean_Parser_consumeInput(x_68, x_85);
|
||||
if (x_6 == 0)
|
||||
{
|
||||
lean_object* x_112; lean_object* x_113; lean_object* x_114;
|
||||
x_112 = l_Lean_Parser_Error_toString(x_84);
|
||||
x_113 = l___private_Lean_Parser_Module_0__Lean_Parser_mkErrorMessage(x_68, x_85, x_112);
|
||||
lean_dec(x_85);
|
||||
lean_dec(x_68);
|
||||
x_114 = l_Std_PersistentArray_push___rarg(x_4, x_113);
|
||||
if (x_88 == 0)
|
||||
{
|
||||
lean_object* x_115; uint8_t x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119;
|
||||
lean_dec(x_2);
|
||||
lean_dec(x_1);
|
||||
x_115 = l_Array_back___at_Lean_Syntax_Traverser_up___spec__2(x_87);
|
||||
lean_dec(x_87);
|
||||
x_116 = 1;
|
||||
x_117 = lean_alloc_ctor(0, 1, 1);
|
||||
lean_ctor_set(x_117, 0, x_111);
|
||||
lean_ctor_set_uint8(x_117, sizeof(void*)*1, x_116);
|
||||
x_118 = lean_alloc_ctor(0, 2, 0);
|
||||
lean_ctor_set(x_118, 0, x_117);
|
||||
lean_ctor_set(x_118, 1, x_114);
|
||||
x_119 = lean_alloc_ctor(0, 2, 0);
|
||||
lean_ctor_set(x_119, 0, x_115);
|
||||
lean_ctor_set(x_119, 1, x_118);
|
||||
return x_119;
|
||||
}
|
||||
else
|
||||
{
|
||||
uint8_t x_120; lean_object* x_121;
|
||||
lean_dec(x_87);
|
||||
x_120 = 1;
|
||||
x_121 = lean_alloc_ctor(0, 1, 1);
|
||||
lean_ctor_set(x_121, 0, x_111);
|
||||
lean_ctor_set_uint8(x_121, sizeof(void*)*1, x_120);
|
||||
x_3 = x_121;
|
||||
x_4 = x_114;
|
||||
goto _start;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
if (x_88 == 0)
|
||||
{
|
||||
lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; uint8_t x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130;
|
||||
lean_dec(x_2);
|
||||
lean_dec(x_1);
|
||||
x_123 = l_Lean_Parser_Error_toString(x_84);
|
||||
x_124 = l___private_Lean_Parser_Module_0__Lean_Parser_mkErrorMessage(x_68, x_85, x_123);
|
||||
lean_dec(x_85);
|
||||
lean_dec(x_68);
|
||||
x_125 = l_Std_PersistentArray_push___rarg(x_4, x_124);
|
||||
x_126 = l_Array_back___at_Lean_Syntax_Traverser_up___spec__2(x_87);
|
||||
lean_dec(x_87);
|
||||
x_127 = 1;
|
||||
x_128 = lean_alloc_ctor(0, 1, 1);
|
||||
lean_ctor_set(x_128, 0, x_111);
|
||||
lean_ctor_set_uint8(x_128, sizeof(void*)*1, x_127);
|
||||
x_129 = lean_alloc_ctor(0, 2, 0);
|
||||
lean_ctor_set(x_129, 0, x_128);
|
||||
lean_ctor_set(x_129, 1, x_125);
|
||||
x_130 = lean_alloc_ctor(0, 2, 0);
|
||||
lean_ctor_set(x_130, 0, x_126);
|
||||
lean_ctor_set(x_130, 1, x_129);
|
||||
return x_130;
|
||||
}
|
||||
else
|
||||
{
|
||||
uint8_t x_131; lean_object* x_132;
|
||||
lean_dec(x_87);
|
||||
lean_dec(x_85);
|
||||
lean_dec(x_84);
|
||||
lean_dec(x_68);
|
||||
x_131 = 1;
|
||||
x_132 = lean_alloc_ctor(0, 1, 1);
|
||||
lean_ctor_set(x_132, 0, x_111);
|
||||
lean_ctor_set_uint8(x_132, sizeof(void*)*1, x_131);
|
||||
x_3 = x_132;
|
||||
goto _start;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
lean_object* x_108; lean_object* x_109; lean_object* x_110;
|
||||
lean_object* x_134; lean_object* x_135; lean_object* x_136;
|
||||
lean_dec(x_7);
|
||||
lean_dec(x_2);
|
||||
lean_dec(x_1);
|
||||
x_108 = l___private_Lean_Parser_Module_0__Lean_Parser_mkEOI(x_5);
|
||||
x_109 = lean_alloc_ctor(0, 2, 0);
|
||||
lean_ctor_set(x_109, 0, x_3);
|
||||
lean_ctor_set(x_109, 1, x_4);
|
||||
x_110 = lean_alloc_ctor(0, 2, 0);
|
||||
lean_ctor_set(x_110, 0, x_108);
|
||||
lean_ctor_set(x_110, 1, x_109);
|
||||
return x_110;
|
||||
x_134 = l___private_Lean_Parser_Module_0__Lean_Parser_mkEOI(x_5);
|
||||
x_135 = lean_alloc_ctor(0, 2, 0);
|
||||
lean_ctor_set(x_135, 0, x_3);
|
||||
lean_ctor_set(x_135, 1, x_4);
|
||||
x_136 = lean_alloc_ctor(0, 2, 0);
|
||||
lean_ctor_set(x_136, 0, x_134);
|
||||
lean_ctor_set(x_136, 1, x_135);
|
||||
return x_136;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
654
stage0/stdlib/Lean/Parser/Term.c
generated
654
stage0/stdlib/Lean/Parser/Term.c
generated
File diff suppressed because it is too large
Load diff
99
stage0/stdlib/Lean/Server/Completion.c
generated
99
stage0/stdlib/Lean/Server/Completion.c
generated
|
|
@ -99,6 +99,7 @@ lean_object* l_Std_PersistentHashMap_foldlMAux___at___private_Lean_Server_Comple
|
|||
lean_object* l___private_Lean_Server_Completion_0__Lean_Server_Completion_addCompletionItem___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* lean_nat_add(lean_object*, lean_object*);
|
||||
extern lean_object* l_Lean_LocalContext_mkEmpty___closed__1;
|
||||
lean_object* l___private_Lean_Server_Completion_0__Lean_Server_Completion_dotCompletion___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* l_Lean_SMap_forM___at___private_Lean_Server_Completion_0__Lean_Server_Completion_idCompletionCore___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Name_toStringWithSep(lean_object*, lean_object*);
|
||||
extern lean_object* l_Lean_Parser_instInhabitedParserCategory;
|
||||
|
|
@ -209,7 +210,6 @@ lean_object* l_Std_PersistentArray_forIn___at___private_Lean_Server_Completion_0
|
|||
lean_object* l_Std_PersistentArray_forInAux___at___private_Lean_Server_Completion_0__Lean_Server_Completion_idCompletionCore___spec__38___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
uint8_t l_Lean_Expr_Data_binderInfo(uint64_t);
|
||||
lean_object* l___private_Lean_Server_Completion_0__Lean_Server_Completion_optionCompletion___boxed(lean_object*, lean_object*);
|
||||
extern lean_object* l_Lean_Parser_Term_completion___elambda__1___closed__2;
|
||||
lean_object* l_Lean_isRec___at___private_Lean_Server_Completion_0__Lean_Server_Completion_isBlackListed___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
size_t lean_usize_of_nat(lean_object*);
|
||||
lean_object* l_Lean_Meta_getExpectedNumArgsAux(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
|
|
@ -260,7 +260,6 @@ lean_object* l___private_Lean_Server_Completion_0__Lean_Server_Completion_isType
|
|||
lean_object* l_Lean_Elab_Info_tailPos_x3f(lean_object*);
|
||||
lean_object* l_Std_PersistentHashMap_foldlM___at___private_Lean_Server_Completion_0__Lean_Server_Completion_idCompletionCore___spec__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l___private_Lean_Server_Completion_0__Lean_Server_Completion_matchDecl_x3f(lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Syntax_getKind(lean_object*);
|
||||
lean_object* l___private_Lean_Server_Completion_0__Lean_Server_Completion_isTypeApplicable_match__3___rarg(lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Std_PersistentHashMap_foldlMAux___at___private_Lean_Server_Completion_0__Lean_Server_Completion_idCompletionCore___spec__30(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l___private_Lean_Server_Completion_0__Lean_Server_Completion_sortCompletionItems(lean_object*);
|
||||
|
|
@ -312,7 +311,6 @@ lean_object* l_List_forIn_loop___at___private_Lean_Server_Completion_0__Lean_Ser
|
|||
lean_object* l_Std_PersistentHashMap_foldlM___at___private_Lean_Server_Completion_0__Lean_Server_Completion_idCompletionCore___spec__6___boxed(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;
|
||||
lean_object* l_Array_forInUnsafe_loop___at___private_Lean_Server_Completion_0__Lean_Server_Completion_idCompletionCore___spec__39___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*);
|
||||
lean_object* l_Lean_Syntax_getArg(lean_object*, lean_object*);
|
||||
lean_object* l_List_forIn_loop___at___private_Lean_Server_Completion_0__Lean_Server_Completion_idCompletionCore___spec__19___closed__1;
|
||||
lean_object* l___private_Lean_Server_Completion_0__Lean_Server_Completion_dotCompletion___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_List_forIn_loop___at___private_Lean_Server_Completion_0__Lean_Server_Completion_idCompletionCore___spec__1___closed__1;
|
||||
|
|
@ -11149,21 +11147,10 @@ if (lean_obj_tag(x_4) == 0)
|
|||
{
|
||||
lean_object* x_11; uint8_t x_12;
|
||||
x_11 = lean_ctor_get(x_1, 2);
|
||||
lean_inc(x_11);
|
||||
lean_dec(x_1);
|
||||
x_12 = l_Lean_Syntax_isIdent(x_11);
|
||||
if (x_12 == 0)
|
||||
{
|
||||
lean_object* x_13; lean_object* x_14; uint8_t x_15;
|
||||
lean_inc(x_11);
|
||||
x_13 = l_Lean_Syntax_getKind(x_11);
|
||||
x_14 = l_Lean_Parser_Term_completion___elambda__1___closed__2;
|
||||
x_15 = lean_name_eq(x_13, x_14);
|
||||
lean_dec(x_13);
|
||||
if (x_15 == 0)
|
||||
{
|
||||
lean_object* x_16; lean_object* x_17;
|
||||
lean_dec(x_11);
|
||||
lean_object* x_13; lean_object* x_14;
|
||||
lean_dec(x_9);
|
||||
lean_dec(x_8);
|
||||
lean_dec(x_7);
|
||||
|
|
@ -11171,57 +11158,44 @@ lean_dec(x_6);
|
|||
lean_dec(x_5);
|
||||
lean_dec(x_3);
|
||||
lean_dec(x_2);
|
||||
x_16 = lean_box(0);
|
||||
x_17 = lean_alloc_ctor(0, 2, 0);
|
||||
lean_ctor_set(x_17, 0, x_16);
|
||||
lean_ctor_set(x_17, 1, x_10);
|
||||
return x_17;
|
||||
x_13 = lean_box(0);
|
||||
x_14 = lean_alloc_ctor(0, 2, 0);
|
||||
lean_ctor_set(x_14, 0, x_13);
|
||||
lean_ctor_set(x_14, 1, x_10);
|
||||
return x_14;
|
||||
}
|
||||
else
|
||||
{
|
||||
lean_object* x_18; lean_object* x_19; lean_object* x_20;
|
||||
x_18 = lean_unsigned_to_nat(0u);
|
||||
x_19 = l_Lean_Syntax_getArg(x_11, x_18);
|
||||
lean_dec(x_11);
|
||||
x_20 = l___private_Lean_Server_Completion_0__Lean_Server_Completion_idCompletionCore(x_2, x_19, x_3, x_5, x_6, x_7, x_8, x_9, x_10);
|
||||
lean_dec(x_19);
|
||||
return x_20;
|
||||
lean_object* x_15;
|
||||
x_15 = l___private_Lean_Server_Completion_0__Lean_Server_Completion_idCompletionCore(x_2, x_11, x_3, x_5, x_6, x_7, x_8, x_9, x_10);
|
||||
return x_15;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
lean_object* x_21;
|
||||
x_21 = l___private_Lean_Server_Completion_0__Lean_Server_Completion_idCompletionCore(x_2, x_11, x_3, x_5, x_6, x_7, x_8, x_9, x_10);
|
||||
lean_dec(x_11);
|
||||
return x_21;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29;
|
||||
lean_object* x_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_dec(x_2);
|
||||
lean_dec(x_1);
|
||||
x_22 = lean_ctor_get(x_4, 0);
|
||||
lean_inc(x_22);
|
||||
x_16 = lean_ctor_get(x_4, 0);
|
||||
lean_inc(x_16);
|
||||
lean_dec(x_4);
|
||||
x_23 = lean_st_ref_get(x_9, x_10);
|
||||
x_24 = lean_ctor_get(x_23, 0);
|
||||
lean_inc(x_24);
|
||||
x_25 = lean_ctor_get(x_23, 1);
|
||||
lean_inc(x_25);
|
||||
lean_dec(x_23);
|
||||
x_26 = lean_ctor_get(x_24, 0);
|
||||
lean_inc(x_26);
|
||||
lean_dec(x_24);
|
||||
x_27 = lean_ctor_get(x_26, 1);
|
||||
lean_inc(x_27);
|
||||
lean_dec(x_26);
|
||||
x_28 = lean_alloc_closure((void*)(l___private_Lean_Server_Completion_0__Lean_Server_Completion_dotCompletion___lambda__1___boxed), 10, 2);
|
||||
lean_closure_set(x_28, 0, x_22);
|
||||
lean_closure_set(x_28, 1, x_3);
|
||||
x_29 = l_Lean_SMap_forM___at___private_Lean_Server_Completion_0__Lean_Server_Completion_idCompletionCore___spec__3(x_27, x_28, x_5, x_6, x_7, x_8, x_9, x_25);
|
||||
lean_dec(x_27);
|
||||
return x_29;
|
||||
x_17 = lean_st_ref_get(x_9, x_10);
|
||||
x_18 = lean_ctor_get(x_17, 0);
|
||||
lean_inc(x_18);
|
||||
x_19 = lean_ctor_get(x_17, 1);
|
||||
lean_inc(x_19);
|
||||
lean_dec(x_17);
|
||||
x_20 = lean_ctor_get(x_18, 0);
|
||||
lean_inc(x_20);
|
||||
lean_dec(x_18);
|
||||
x_21 = lean_ctor_get(x_20, 1);
|
||||
lean_inc(x_21);
|
||||
lean_dec(x_20);
|
||||
x_22 = lean_alloc_closure((void*)(l___private_Lean_Server_Completion_0__Lean_Server_Completion_dotCompletion___lambda__1___boxed), 10, 2);
|
||||
lean_closure_set(x_22, 0, x_16);
|
||||
lean_closure_set(x_22, 1, x_3);
|
||||
x_23 = l_Lean_SMap_forM___at___private_Lean_Server_Completion_0__Lean_Server_Completion_idCompletionCore___spec__3(x_21, x_22, x_5, x_6, x_7, x_8, x_9, x_19);
|
||||
lean_dec(x_21);
|
||||
return x_23;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -11530,7 +11504,7 @@ x_5 = lean_ctor_get(x_2, 0);
|
|||
lean_inc(x_5);
|
||||
lean_inc(x_1);
|
||||
lean_inc(x_2);
|
||||
x_6 = lean_alloc_closure((void*)(l___private_Lean_Server_Completion_0__Lean_Server_Completion_dotCompletion___lambda__2), 10, 3);
|
||||
x_6 = lean_alloc_closure((void*)(l___private_Lean_Server_Completion_0__Lean_Server_Completion_dotCompletion___lambda__2___boxed), 10, 3);
|
||||
lean_closure_set(x_6, 0, x_2);
|
||||
lean_closure_set(x_6, 1, x_1);
|
||||
lean_closure_set(x_6, 2, x_3);
|
||||
|
|
@ -11575,6 +11549,15 @@ lean_dec(x_1);
|
|||
return x_11;
|
||||
}
|
||||
}
|
||||
lean_object* l___private_Lean_Server_Completion_0__Lean_Server_Completion_dotCompletion___lambda__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) {
|
||||
_start:
|
||||
{
|
||||
lean_object* x_11;
|
||||
x_11 = l___private_Lean_Server_Completion_0__Lean_Server_Completion_dotCompletion___lambda__2(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;
|
||||
}
|
||||
}
|
||||
lean_object* l___private_Lean_Server_Completion_0__Lean_Server_Completion_dotCompletion___lambda__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) {
|
||||
_start:
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue