|
@@ -19,42 +19,42 @@ type errorFilesystem struct {
|
|
uri string
|
|
uri string
|
|
}
|
|
}
|
|
|
|
|
|
-func (fs *errorFilesystem) Chmod(name string, mode FileMode) error { return fs.err }
|
|
|
|
-func (fs *errorFilesystem) Lchown(name, uid, gid string) error { return fs.err }
|
|
|
|
-func (fs *errorFilesystem) Chtimes(name string, atime time.Time, mtime time.Time) error {
|
|
|
|
|
|
+func (fs *errorFilesystem) Chmod(_ string, _ FileMode) error { return fs.err }
|
|
|
|
+func (fs *errorFilesystem) Lchown(_, _, _ string) error { return fs.err }
|
|
|
|
+func (fs *errorFilesystem) Chtimes(_ string, _ time.Time, _ time.Time) error {
|
|
return fs.err
|
|
return fs.err
|
|
}
|
|
}
|
|
-func (fs *errorFilesystem) Create(name string) (File, error) { return nil, fs.err }
|
|
|
|
-func (fs *errorFilesystem) CreateSymlink(target, name string) error { return fs.err }
|
|
|
|
-func (fs *errorFilesystem) DirNames(name string) ([]string, error) { return nil, fs.err }
|
|
|
|
-func (fs *errorFilesystem) Lstat(name string) (FileInfo, error) { return nil, fs.err }
|
|
|
|
-func (fs *errorFilesystem) Mkdir(name string, perm FileMode) error { return fs.err }
|
|
|
|
-func (fs *errorFilesystem) MkdirAll(name string, perm FileMode) error { return fs.err }
|
|
|
|
-func (fs *errorFilesystem) Open(name string) (File, error) { return nil, fs.err }
|
|
|
|
|
|
+func (fs *errorFilesystem) Create(_ string) (File, error) { return nil, fs.err }
|
|
|
|
+func (fs *errorFilesystem) CreateSymlink(_, _ string) error { return fs.err }
|
|
|
|
+func (fs *errorFilesystem) DirNames(_ string) ([]string, error) { return nil, fs.err }
|
|
|
|
+func (fs *errorFilesystem) Lstat(_ string) (FileInfo, error) { return nil, fs.err }
|
|
|
|
+func (fs *errorFilesystem) Mkdir(_ string, _ FileMode) error { return fs.err }
|
|
|
|
+func (fs *errorFilesystem) MkdirAll(_ string, _ FileMode) error { return fs.err }
|
|
|
|
+func (fs *errorFilesystem) Open(_ string) (File, error) { return nil, fs.err }
|
|
func (fs *errorFilesystem) OpenFile(string, int, FileMode) (File, error) { return nil, fs.err }
|
|
func (fs *errorFilesystem) OpenFile(string, int, FileMode) (File, error) { return nil, fs.err }
|
|
-func (fs *errorFilesystem) ReadSymlink(name string) (string, error) { return "", fs.err }
|
|
|
|
-func (fs *errorFilesystem) Remove(name string) error { return fs.err }
|
|
|
|
-func (fs *errorFilesystem) RemoveAll(name string) error { return fs.err }
|
|
|
|
-func (fs *errorFilesystem) Rename(oldname, newname string) error { return fs.err }
|
|
|
|
-func (fs *errorFilesystem) Stat(name string) (FileInfo, error) { return nil, fs.err }
|
|
|
|
|
|
+func (fs *errorFilesystem) ReadSymlink(_ string) (string, error) { return "", fs.err }
|
|
|
|
+func (fs *errorFilesystem) Remove(_ string) error { return fs.err }
|
|
|
|
+func (fs *errorFilesystem) RemoveAll(_ string) error { return fs.err }
|
|
|
|
+func (fs *errorFilesystem) Rename(_, _ string) error { return fs.err }
|
|
|
|
+func (fs *errorFilesystem) Stat(_ string) (FileInfo, error) { return nil, fs.err }
|
|
func (fs *errorFilesystem) SymlinksSupported() bool { return false }
|
|
func (fs *errorFilesystem) SymlinksSupported() bool { return false }
|
|
-func (fs *errorFilesystem) Walk(root string, walkFn WalkFunc) error { return fs.err }
|
|
|
|
-func (fs *errorFilesystem) Unhide(name string) error { return fs.err }
|
|
|
|
-func (fs *errorFilesystem) Hide(name string) error { return fs.err }
|
|
|
|
-func (fs *errorFilesystem) Glob(pattern string) ([]string, error) { return nil, fs.err }
|
|
|
|
-func (fs *errorFilesystem) SyncDir(name string) error { return fs.err }
|
|
|
|
|
|
+func (fs *errorFilesystem) Walk(_ string, _ WalkFunc) error { return fs.err }
|
|
|
|
+func (fs *errorFilesystem) Unhide(_ string) error { return fs.err }
|
|
|
|
+func (fs *errorFilesystem) Hide(_ string) error { return fs.err }
|
|
|
|
+func (fs *errorFilesystem) Glob(_ string) ([]string, error) { return nil, fs.err }
|
|
|
|
+func (fs *errorFilesystem) SyncDir(_ string) error { return fs.err }
|
|
func (fs *errorFilesystem) Roots() ([]string, error) { return nil, fs.err }
|
|
func (fs *errorFilesystem) Roots() ([]string, error) { return nil, fs.err }
|
|
-func (fs *errorFilesystem) Usage(name string) (Usage, error) { return Usage{}, fs.err }
|
|
|
|
|
|
+func (fs *errorFilesystem) Usage(_ string) (Usage, error) { return Usage{}, fs.err }
|
|
func (fs *errorFilesystem) Type() FilesystemType { return fs.fsType }
|
|
func (fs *errorFilesystem) Type() FilesystemType { return fs.fsType }
|
|
func (fs *errorFilesystem) URI() string { return fs.uri }
|
|
func (fs *errorFilesystem) URI() string { return fs.uri }
|
|
func (fs *errorFilesystem) Options() []Option {
|
|
func (fs *errorFilesystem) Options() []Option {
|
|
return nil
|
|
return nil
|
|
}
|
|
}
|
|
-func (fs *errorFilesystem) SameFile(fi1, fi2 FileInfo) bool { return false }
|
|
|
|
-func (fs *errorFilesystem) Watch(path string, ignore Matcher, ctx context.Context, ignorePerms bool) (<-chan Event, <-chan error, error) {
|
|
|
|
|
|
+func (fs *errorFilesystem) SameFile(_, _ FileInfo) bool { return false }
|
|
|
|
+func (fs *errorFilesystem) Watch(_ string, _ Matcher, _ context.Context, _ bool) (<-chan Event, <-chan error, error) {
|
|
return nil, nil, fs.err
|
|
return nil, nil, fs.err
|
|
}
|
|
}
|
|
-func (fs *errorFilesystem) PlatformData(name string) (protocol.PlatformData, error) {
|
|
|
|
|
|
+func (fs *errorFilesystem) PlatformData(_ string) (protocol.PlatformData, error) {
|
|
return protocol.PlatformData{}, fs.err
|
|
return protocol.PlatformData{}, fs.err
|
|
}
|
|
}
|
|
|
|
|