(p []byte, off int64)
| 773 | func (b badFile) Name() string { return "" } |
| 774 | func (b badFile) Stat() (os.FileInfo, error) { return nil, errors.New("unsupported") } |
| 775 | func (b badFile) ReadAt(p []byte, off int64) (int, error) { return 0, nil } |
| 776 | func (b badFile) WriteAt(p []byte, off int64) (int, error) { return len(p), nil } |
| 777 | func (b badFile) Close() error { return nil } |
| 778 |
no outgoing calls
no test coverage detected