(bytes []byte)
| 1321 | } |
| 1322 | |
| 1323 | func (b *Buffer) Write(bytes []byte) (n int, err error) { |
| 1324 | b.EventHandler.InsertBytes(b.End(), bytes) |
| 1325 | return len(bytes), nil |
| 1326 | } |
| 1327 | |
| 1328 | func (b *Buffer) updateDiff(synchronous bool) { |
| 1329 | b.diffLock.Lock() |
no test coverage detected