FmtAnnotations adds annotations to the FmtCtx.
(ann *Annotations)
| 333 | |
| 334 | // FmtAnnotations adds annotations to the FmtCtx. |
| 335 | func FmtAnnotations(ann *Annotations) FmtCtxOption { |
| 336 | return func(ctx *FmtCtx) { |
| 337 | ctx.ann = ann |
| 338 | } |
| 339 | } |
| 340 | |
| 341 | // FmtIndexedVarFormat modifies FmtCtx to customize the printing of |
| 342 | // IndexedVars using the provided function. |
no outgoing calls
no test coverage detected
searching dependent graphs…