String implements formatStringInterpolator.String.
(arg ref.Val, locale string)
| 270 | |
| 271 | // String implements formatStringInterpolator.String. |
| 272 | func (c *stringFormatter) String(arg ref.Val, locale string) (string, error) { |
| 273 | return FormatString(arg, locale) |
| 274 | } |
| 275 | |
| 276 | // Decimal implements formatStringInterpolator.Decimal. |
| 277 | func (c *stringFormatter) Decimal(arg ref.Val, locale string) (string, error) { |
nothing calls this directly
no test coverage detected