Module logical_or

Module logical_or 

Source
Expand description

Logical expression parsing for | / || (OR).

This module defines AST nodes and parsers for logical OR over Equality and lower-precedence expressions. Operators are left-associative; AND binds tighter than OR.

Enums§

LogicalOr
Logical OR expression over LogicalAnd expressions.

Functions§

parse_or
Parse a left-associative | / || chain over LogicalAnd expressions.