Expand description
Parser for the Poker Query Language (PQL).
Modules§
- ast
- Abstract syntax tree nodes for parsed PQL statements.
Enums§
- Error
- Parse failure produced while parsing a PQL source.
Traits§
- Spanned
- AST node carrying a source span.
Functions§
- parse_
expr - Parses a standalone expression.
- parse_
fn_ call - Parses a function call.
- parse_
from_ clause - Parses a
fromclause. - parse_
ident - Parses an identifier.
- parse_
num - Parses a numeric literal.
- parse_
pql - Parses a full PQL source into a list of statements.
- parse_
selector - Parses a single selector expression (e.g.
avg(equity(hero))). - parse_
str - Parses a quoted string literal.