(options: { kernelSpec: IJupyterKernelSpec; interpreter: PythonEnvironment; id: string })
| 271 | public readonly interpreter: PythonEnvironment; |
| 272 | public readonly id: string; |
| 273 | private constructor(options: { kernelSpec: IJupyterKernelSpec; interpreter: PythonEnvironment; id: string }) { |
| 274 | this.kernelSpec = options.kernelSpec; |
| 275 | this.interpreter = options.interpreter; |
| 276 | this.id = options.id; |
| 277 | sendKernelTelemetry(this); |
| 278 | } |
| 279 | public static create(options: { kernelSpec: IJupyterKernelSpec; interpreter: PythonEnvironment; id: string }) { |
| 280 | return new PythonKernelConnectionMetadata(options); |
| 281 | } |
nothing calls this directly
no test coverage detected