(bytes string)
| 196 | } |
| 197 | |
| 198 | func (b *unicodeStringBuilder) writeASCIIString(bytes string) { |
| 199 | for _, c := range bytes { |
| 200 | b.buf = append(b.buf, uint16(c)) |
| 201 | } |
| 202 | } |
| 203 | |
| 204 | func (b *unicodeStringBuilder) writeUnicodeString(str unicodeString) { |
| 205 | b.buf = append(b.buf, str[1:]...) |
no outgoing calls
no test coverage detected