stringFormatCheckerV2 implements the formatStringInterpolater interface
| 448 | |
| 449 | // stringFormatCheckerV2 implements the formatStringInterpolater interface |
| 450 | type stringFormatCheckerV2 struct { |
| 451 | args []ast.Expr |
| 452 | argsRequested int |
| 453 | currArgIndex int64 |
| 454 | ast *ast.AST |
| 455 | } |
| 456 | |
| 457 | // String implements formatStringInterpolatorV2.String. |
| 458 | func (c *stringFormatCheckerV2) String(arg ref.Val) (string, error) { |
nothing calls this directly
no outgoing calls
no test coverage detected