(b []byte)
| 42 | } |
| 43 | |
| 44 | func (fc *funcContext) Write(b []byte) (int, error) { |
| 45 | fc.writePos() |
| 46 | fc.output = append(fc.output, b...) |
| 47 | return len(b), nil |
| 48 | } |
| 49 | |
| 50 | func (fc *funcContext) Printf(format string, values ...any) { |
| 51 | fc.Write([]byte(fc.Indentation(0))) |