appendStringQuoted appends a string value to the buffer, escaping and quoting it as necessary.
(data string)
| 73 | |
| 74 | // appendStringQuoted appends a string value to the buffer, escaping and quoting it as necessary. |
| 75 | func (b *buffer) appendStringQuoted(data string) { |
| 76 | *b = strconv.AppendQuote(*b, data) |
| 77 | } |
| 78 | |
| 79 | // appendInt appends an integer value to the buffer. |
| 80 | func (b *buffer) appendInt(data int64) { |
no outgoing calls
no test coverage detected