* Helper to access private members for testing
(host: ExtensionHost, key: string)
| 53 | * Helper to access private members for testing |
| 54 | */ |
| 55 | function getPrivate<T>(host: ExtensionHost, key: string): T { |
| 56 | return (host as unknown as PrivateHost)[key] as T |
| 57 | } |
| 58 | |
| 59 | /** |
| 60 | * Helper to set private members for testing |
no outgoing calls
no test coverage detected