(fileName string)
| 116 | } |
| 117 | |
| 118 | func (s *SnapshotFS) isOpenFile(fileName string) bool { |
| 119 | path := s.toPath(fileName) |
| 120 | _, ok := s.overlays[path] |
| 121 | return ok |
| 122 | } |
| 123 | |
| 124 | func (s *SnapshotFS) isFile(path tspath.Path) bool { |
| 125 | if _, ok := s.diskFiles[path]; ok { |