stringFormatValidator implements the cel.ASTValidator interface allowing for static validation of string.format calls.
| 411 | // stringFormatValidator implements the cel.ASTValidator interface allowing for static validation |
| 412 | // of string.format calls. |
| 413 | type stringFormatValidator struct { |
| 414 | maxPrecision int |
| 415 | } |
| 416 | |
| 417 | // Name returns the name of the validator. |
| 418 | func (stringFormatValidator) Name() string { |
nothing calls this directly
no outgoing calls
no test coverage detected