chore: update stage0
This commit is contained in:
parent
d618bf5b16
commit
c03b98e46e
2 changed files with 4783 additions and 4001 deletions
7
stage0/src/Lean/Elab/Syntax.lean
generated
7
stage0/src/Lean/Elab/Syntax.lean
generated
|
|
@ -131,6 +131,13 @@ partial def toParserDescrAux (stx : Syntax) : ToParserDescrM Syntax := do
|
|||
else if kind == `Lean.Parser.Syntax.try then
|
||||
let d ← withoutLeftRec $ toParserDescrAux stx[1]
|
||||
`(ParserDescr.try $d)
|
||||
else if kind == `Lean.Parser.Syntax.withPosition then
|
||||
let d ← withoutLeftRec $ toParserDescrAux stx[1]
|
||||
`(ParserDescr.withPosition $d)
|
||||
else if kind == `Lean.Parser.Syntax.checkColGt then
|
||||
`(ParserDescr.checkCol true)
|
||||
else if kind == `Lean.Parser.Syntax.checkColGe then
|
||||
`(ParserDescr.checkCol false)
|
||||
else if kind == `Lean.Parser.Syntax.notFollowedBy then
|
||||
let d ← withoutLeftRec $ toParserDescrAux stx[1]
|
||||
`(ParserDescr.notFollowedBy $d)
|
||||
|
|
|
|||
8777
stage0/stdlib/Lean/Elab/Syntax.c
generated
8777
stage0/stdlib/Lean/Elab/Syntax.c
generated
File diff suppressed because it is too large
Load diff
Loading…
Add table
Reference in a new issue