stringFormatChecker implements the formatStringInterpolater interface
| 507 | |
| 508 | // stringFormatChecker implements the formatStringInterpolater interface |
| 509 | type stringFormatChecker struct { |
| 510 | args []ast.Expr |
| 511 | argsRequested int |
| 512 | currArgIndex int64 |
| 513 | ast *ast.AST |
| 514 | } |
| 515 | |
| 516 | // String implements formatStringInterpolator.String. |
| 517 | func (c *stringFormatChecker) String(arg ref.Val, locale string) (string, error) { |
nothing calls this directly
no outgoing calls
no test coverage detected