()
| 154 | private _info?: KernelMessage.IInfoReplyMsg['content']; |
| 155 | private _startedAtLeastOnce?: boolean; |
| 156 | get info(): KernelMessage.IInfoReplyMsg['content'] | undefined { |
| 157 | return this._info; |
| 158 | } |
| 159 | get status(): KernelMessage.Status { |
| 160 | if (this._jupyterSessionPromise && !this._session) { |
| 161 | return 'starting'; |
nothing calls this directly
no outgoing calls
no test coverage detected