(ch byte)
| 66 | func (fs *flagScanner) AppendString(str string) { fs.buf = append(fs.buf, str...) } |
| 67 | |
| 68 | func (fs *flagScanner) AppendChar(ch byte) { fs.buf = append(fs.buf, ch) } |
| 69 | |
| 70 | func (fs *flagScanner) String() string { return string(fs.buf) } |
| 71 |
no outgoing calls
no test coverage detected