()
| 232 | func (f *file) Name() string { _, elem, _ := split(f.name); return elem } |
| 233 | func (f *file) Size() int64 { return int64(len(f.data)) } |
| 234 | func (f *file) ModTime() time.Time { return f.modTime } |
| 235 | func (f *file) IsDir() bool { _, _, isDir := split(f.name); return isDir } |
| 236 | func (f *file) Sys() any { return nil } |
| 237 | func (f *file) Type() fs.FileMode { return f.Mode().Type() } |
nothing calls this directly
no outgoing calls
no test coverage detected