Classes
BlockParsingMixin
0
▼
Combined block parsing mixin.
Combines all block parsing functionality into a single mixin
that ca…
BlockParsingMixin
0
▼
Combined block parsing mixin.
Combines all block parsing functionality into a single mixin that can be inherited by the Parser class.
Required Host Attributes:
- _source: str
- _tokens: list[Token]
- _pos: int
- _current: Token | None
- _tables_enabled: bool
- _directive_registry: DirectiveRegistry | None
- _directive_stack: list[str]
- _strict_contracts: bool
Required Host Methods:
- _at_end() -> bool
- _advance() -> Token | None
- _parse_inline(text, location) -> tuple[Inline, ...]