bolt_control_flow.parse#

Parsing and codegen logic

Danger

This is an internal module, not meant for public usage

Module Contents#

Classes#

Codegen

Ast dispatcher.

class bolt_control_flow.parse.Codegen#

Bases: mecha.Dispatcher[Any]

Ast dispatcher.

cases_vars: list[str]#
is_conditional_only_in_last_case: bool#
binary_logical(
node: bolt.ast.AstExpressionBinary,
acc: bolt.Accumulator,
) collections.abc.Generator[mecha.AstNode, list[str] | None, list[str] | None]#
if_statement(
node: mecha.AstCommand,
acc: bolt.Accumulator,
) collections.abc.Generator[mecha.AstNode, list[str] | None, list[str] | None]#
else_statement(
node: mecha.AstCommand,
acc: bolt.Accumulator,
) collections.abc.Generator[mecha.AstNode, list[str] | None, list[str] | None]#