RawExpression is an InputExpression which loads a CEL expression from a string.
| 556 | |
| 557 | // RawExpression is an InputExpression which loads a CEL expression from a string. |
| 558 | type RawExpression struct { |
| 559 | Value string |
| 560 | } |
| 561 | |
| 562 | // CreateAST creates a CEL AST from a raw CEL expression using the provided compiler. |
| 563 | func (r *RawExpression) CreateAST(compiler Compiler) (*cel.Ast, map[string]any, error) { |
nothing calls this directly
no outgoing calls
no test coverage detected