isCELStringExpr indicates whether the expression is a supported string expression
(e ast.Expr)
| 731 | |
| 732 | // isCELStringExpr indicates whether the expression is a supported string expression |
| 733 | func isCELStringExpr(e ast.Expr) bool { |
| 734 | return isCELStringLiteral(e) || isCELCaddyPlaceholderCall(e) || isCELConcatCall(e) |
| 735 | } |
| 736 | |
| 737 | // isCELStringLiteral returns whether the expression is a CEL string literal. |
| 738 | func isCELStringLiteral(e ast.Expr) bool { |
nothing calls this directly
no test coverage detected