Skip to main content

DevelopmentNodeEnvironment_MicrosoftVSCodeDependency_22NodeVersion_Bundle_Clean_Debug_ElectronProfile_EsbuildCompiler_Mountain/Cache/PathCanon/
Invalidate.rs

1//! Force-evict an entry. Called from `notify` watchers when a path rename is
2//! observed inside the workspace, or by the dev-mode hot-reload signal.
3
4use std::path::Path;
5
6use crate::Cache::PathCanon::Cache::CACHE;
7
8pub fn Fn(Path:&Path) { CACHE.invalidate(Path); }