Allows the runner to inject the expression source parsed from command-line flags.
| 107 | // Allows the runner to inject the expression source |
| 108 | // parsed from command-line flags. |
| 109 | void SetExpressionSource(CelExpressionSource source) { |
| 110 | expression_source_ = |
| 111 | std::make_unique<CelExpressionSource>(std::move(source)); |
| 112 | } |
| 113 | |
| 114 | // Allows the runner to inject an optional CEL compiler. |
| 115 | void SetCompiler(std::unique_ptr<const cel::Compiler> compiler) { |
no outgoing calls
no test coverage detected