MCPcopy Create free account
hub / github.com/cosdata/cosdata / parse_binary_expression_or_highier

Function parse_binary_expression_or_highier

src/cosql/expression.rs:133–140  ·  view source on GitHub ↗
(
    input: &str,
    lhs_precedence: Precedence,
)

Source from the content-addressed store, hash-verified

131}
132
133pub fn parse_binary_expression_or_highier(
134 input: &str,
135 lhs_precedence: Precedence,
136) -> IResult<&str, Expression> {
137 let (input, lhs) = parse_unary_expression_or_higher(input)?;
138
139 parse_binary_expression_rest(input, lhs, lhs_precedence)
140}
141
142pub fn parse_binary_expression_rest(
143 mut input: &str,

Callers 2

parse_expressionFunction · 0.85

Tested by

no test coverage detected