TOML Parser Utilities #
Generic parser utilities used by Lake's TOML parser.
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
@[inline]
ParserFn
combinator that runs f
with the current position.
Instances For
Match an arbitrary parser or do nothing.
Equations
Instances For
@[inline]
A sequence of n
repetitions of a parser function.
Instances For
@[specialize #[]]
Equations
Instances For
def
Lake.Toml.mkUnexpectedCharError
(s : Lean.Parser.ParserState)
(c : Char)
(expected : List String := [])
(pushMissing : Bool := true)
:
Equations
Instances For
@[inline]
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
Instances For
Consume a single digit (i.e., Char.isDigit
).
Instances For
Consume a two digits (i.e., Char.isDigit
).
Instances For
def
Lake.Toml.chFn
(c : Char)
(expected : List String := [toString "'" ++ toString c ++ toString "'"])
:
Consume a single matching character.
Equations
- Lake.Toml.chFn c expected = Lake.Toml.satisfyFn (fun (d : Char) => d == c) expected
Instances For
Push a new atom onto the syntax stack.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Match an arbitrary ParserFn
and return the consumed String in a Syntax.atom
.
Equations
Instances For
Equations
- Lake.Toml.atom p trailingFn = { info := { collectTokens := id, collectKinds := id, firstTokens := Lean.Parser.FirstTokens.unknown }, fn := Lake.Toml.atomFn p trailingFn }
Instances For
Equations
- Lake.Toml.getSyntaxExprPos? (Lean.Syntax.node info kind args) = Lake.Toml.getInfoExprPos? info
- Lake.Toml.getSyntaxExprPos? (Lean.Syntax.atom info val) = Lake.Toml.getInfoExprPos? info
- Lake.Toml.getSyntaxExprPos? (Lean.Syntax.ident info rawVal val preresolved) = Lake.Toml.getInfoExprPos? info
- Lake.Toml.getSyntaxExprPos? Lean.Syntax.missing = none
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
def
Lake.Toml.chAtom
(c : Char)
(expected : List String := [toString "'" ++ toString c ++ toString "'"])
(trailingFn : Lean.Parser.ParserFn := skipFn)
:
Parse a single character as an atom.
Equations
Instances For
def
Lake.Toml.strAtom
(s : String)
(expected : List String := [toString "'" ++ toString s ++ toString "'"])
(trailingFn : Lean.Parser.ParserFn := skipFn)
:
Parse the trimmed string as an atom (but use the full string for formatting).
Equations
Instances For
def
Lake.Toml.pushLit
(kind : Lean.SyntaxNodeKind)
(startPos : String.Pos)
(trailingFn : Lean.Parser.ParserFn := skipFn)
:
Push (Syntax.node kind <new-atom>)
onto the syntax stack.
Equations
- One or more equations did not get rendered due to their size.
Instances For
def
Lake.Toml.litFn
(kind : Lean.SyntaxNodeKind)
(p : Lean.Parser.ParserFn)
(trailingFn : Lean.Parser.ParserFn := skipFn)
:
Equations
Instances For
def
Lake.Toml.lit
(kind : Lean.SyntaxNodeKind)
(p : Lean.Parser.ParserFn)
(trailingFn : Lean.Parser.ParserFn := skipFn)
:
Equations
- Lake.Toml.lit kind p trailingFn = { info := { collectTokens := id, collectKinds := id, firstTokens := Lean.Parser.FirstTokens.unknown }, fn := Lake.Toml.litFn kind p trailingFn }
Instances For
def
Lake.Toml.litWithAntiquot
(name : String)
(kind : Lean.SyntaxNodeKind)
(p : Lean.Parser.ParserFn)
(trailingFn : Lean.Parser.ParserFn := skipFn)
(anonymous : Bool := false)
:
Equations
Instances For
@[inline]
Equations
Instances For
Equations
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- Lake.Toml.dynamicNode p = { info := { collectTokens := id, collectKinds := id, firstTokens := Lean.Parser.FirstTokens.unknown }, fn := p }
Instances For
@[reducible, inline]
Parser → Parser
hidden by an abbrev
.
Prevents the formatter/parenthesizer generator from transforming it.
Equations
Instances For
def
Lake.Toml.recNodeWithAntiquot
(name : String)
(kind : Lean.SyntaxNodeKind)
(f : ParserMapFn)
(anonymous : Bool := false)
:
Equations
- One or more equations did not get rendered due to their size.
Instances For
def
Lake.Toml.recNodeWithAntiquot.go
(name : String)
(kind : Lean.SyntaxNodeKind)
(f : ParserMapFn)
(anonymous : Bool := false)
(p : Lean.Parser.Parser)
:
Equations
Instances For
@[inline]
Equations
- One or more equations did not get rendered due to their size.
Instances For
@[inline]
Equations
- One or more equations did not get rendered due to their size.