(format string, a ...any)
| 1504 | } |
| 1505 | |
| 1506 | func (fc *funcContext) formatExpr(format string, a ...any) *expression { |
| 1507 | return fc.formatExprInternal(format, a, false) |
| 1508 | } |
| 1509 | |
| 1510 | func (fc *funcContext) formatParenExpr(format string, a ...any) *expression { |
| 1511 | return fc.formatExprInternal(format, a, true) |
no test coverage detected