| 759 | } |
| 760 | |
| 761 | type stringContext struct { |
| 762 | sb strings.Builder |
| 763 | ct string |
| 764 | } |
| 765 | |
| 766 | func (c *stringContext) Write(s string) (int, error) { |
| 767 | return c.sb.WriteString(s) |
nothing calls this directly
no outgoing calls
no test coverage detected