WriteIdentityQuote write out an identity using given quote character
(i string, quote byte)
| 125 | |
| 126 | // WriteIdentityQuote write out an identity using given quote character |
| 127 | func (w *defaultDialect) WriteIdentityQuote(i string, quote byte) { |
| 128 | if len(i) == 1 && i == "*" { |
| 129 | w.WriteByte('*') |
| 130 | return |
| 131 | } |
| 132 | LiteralQuoteEscapeBuf(&w.Buffer, rune(w.IdentityQuote), i) |
| 133 | } |
| 134 | func (w *defaultDialect) WriteNumber(n string) { |
| 135 | io.WriteString(w, n) |
| 136 | } |
nothing calls this directly
no test coverage detected