bolt_control_flow#

Submodules#

Package Contents#

Classes#

CaseResult

Information about a match

CaseMatchType

The status of a match

BranchType

The type of multibranch being processed

BranchInfo

Information about the multibranch being processed

BinaryLogicalFallback

Return this from a binary logical operator to request fallback/default behaviour

WrappedCases

Marker class to indicate that it is safe for nested conditions to use return without making new functions

Attributes#

CasePartialResult

The yield type of a __case__ that doesn't implement all Case types

Case

The case being matched against

class bolt_control_flow.CaseResult#

Information about a match

class Codegen#

Helpers for generating code for accessing members of CaseResult

Danger

This is an internal helper, not meant for public usage

property match_type: str#

Generate code for accessing the match_type

name: str#

Name of the variable holding this CaseResult

binding(binding: str) str#

Generate code for accessing the given binding in the bindings

match_type: CaseMatchType#

The match status

bindings: dict[str, Any]#

Any bindings to be assigned in the condition caller's scope

Must contain all the bindings that the case pattern is expecting, and any extra bindings will be ignored

Note

If match_type is CaseMatchType.FAILED these bindings will be ignored

static failed() CaseResult#

yield this value to indicate that the match failed at build time

static matched(**bindings: Any) CaseResult#

yield this value to indicate that the match passed at build time and run the body of the condition

Parameters:

**bindings -- The bindings to be assigned in the condition caller's scope

static maybe(**bindings: Any) CaseResult#

yield this value to indicate that the match can't be determined until runtime

It is expected for the runtime check to wrap the yield, so that running the body of the condition will be wrapped in the check

Parameters:

**bindings -- The bindings to be assigned in the condition caller's scope

class bolt_control_flow.CaseMatchType#

Bases: enum.Enum

The status of a match

FAILED#

The match failed at build time

MATCHED#

The match succeeded at build time

MAYBE#

Whether the match passed isn't known until runtime

bolt_control_flow.CasePartialResult: TypeAlias#

The yield type of a __case__ that doesn't implement all Case types

Type:

CaseResult | NotImplementedType

bolt_control_flow.Case: TypeAlias#

The case being matched against

Possible values:

True

The if case of an if ... else

False

The else case of an if ... else

Anything else

A pattern used in a case within a match

Type:

bool | Any

Note

This type is currently a placeholder, it will be made more specific once pattern matching is implemented

class bolt_control_flow.BranchType#

Bases: enum.Enum

The type of multibranch being processed

property helper: str#

Get the name of the runtime helper for the MultibranchDriver of this type

Danger

This is an internal helper, not meant for public usage

IF_ELSE#

An if ... else

MATCH#

A match

class bolt_control_flow.BranchInfo#

Information about the multibranch being processed

branch_type: BranchType#

The type of multibranch being processed

parent_cases: Any | None#

The result of the parent __multibranch__

Will be None if any of these are true:
  • there is no parent

  • there are more cases in the parent following the current case

  • this conditional isn't the only piece of the body of the current case

Useful for merging separate nested multibranches into a single multibranch. e.g. elif or case _:

class bolt_control_flow.BinaryLogicalFallback#

Return this from a binary logical operator to request fallback/default behaviour

During fallback, it will attempt to call __rlogical_{op}__ on the right value, and if that also requests fallback it will use the plain-bolt implementation of the logical operator

right: Any#

The result of evaluating the lazy right value callback

This is so that the value isn't calculated again during fallback

class bolt_control_flow.WrappedCases#

Marker class to indicate that it is safe for nested conditions to use return without making new functions

i.e. there are no commands after the cases that must be run