@internal
(environment: string)
| 375 | |
| 376 | /** @internal */ |
| 377 | _getModuleGraph(environment: string): EnvironmentModuleGraph { |
| 378 | switch (environment) { |
| 379 | case 'client': |
| 380 | return this._client |
| 381 | case 'ssr': |
| 382 | return this._ssr |
| 383 | default: |
| 384 | throw new Error(`Invalid module node environment ${environment}`) |
| 385 | } |
| 386 | } |
| 387 | |
| 388 | invalidateModule( |
| 389 | mod: ModuleNode, |
no outgoing calls
no test coverage detected