DevelopmentNodeEnvironment_MicrosoftVSCodeDependency_22NodeVersion_Bundle_Clean_Debug_ElectronProfile_EsbuildCompiler_Mountain/IPC/WindServiceHandlers/ExtensionHost/mod.rs
1//! ExtensionHost atoms - VS Code extension-host lifecycle handlers.
2//!
3//! Starter: `extensionHostStarter:*` channel (create/start/kill/exit/wait).
4//! DebugService: `extensionhostdebugservice:*` channel (reload/close).
5
6pub mod DebugServiceClose;
7
8pub mod DebugServiceReload;
9
10pub mod StarterCreate;
11
12pub mod StarterGetExitInfo;
13
14pub mod StarterKill;
15
16pub mod StarterStart;
17
18pub mod StarterWaitForExit;