(target ast.Expr)
| 401 | } |
| 402 | |
| 403 | func isCELNamespace(target ast.Expr) bool { |
| 404 | return target.Kind() == ast.IdentKind && target.AsIdent() == "cel" |
| 405 | } |
| 406 | |
| 407 | func isNonNegativeInt(expr ast.Expr) bool { |
| 408 | if expr.Kind() != ast.LiteralKind { |
no test coverage detected