parse_expression

Function parse_expression 

Source
pub fn parse_expression(source: String) -> Result<Expression, String>
Expand description

Instrumented wrapper for parsing CEL expressions with caching

This provides visibility into parsing operations while using the LALRPOP-generated parser internally. Parsing results are cached to avoid re-parsing the same expression multiple times.

ยงCaching

This is a cached function that uses the PARSE_EXPRESSION cached static.