()
| 153 | func (f *fakeFile) Size() int64 { return int64(f.buf.Len()) } |
| 154 | func (f *fakeFile) Mode() os.FileMode { return 0 } |
| 155 | func (f *fakeFile) ModTime() time.Time { return f.fs.times[f.path] } |
| 156 | func (f *fakeFile) IsDir() bool { return false } |
| 157 | func (f *fakeFile) Sys() interface{} { return nil } |
| 158 |