(
debugSession: TSessionImpl,
transport: IDapTransport | DapConnection,
)
| 152 | } |
| 153 | |
| 154 | public createNewRootSession( |
| 155 | debugSession: TSessionImpl, |
| 156 | transport: IDapTransport | DapConnection, |
| 157 | ) { |
| 158 | const root = new RootSession( |
| 159 | debugSession, |
| 160 | transport, |
| 161 | createTopLevelSessionContainer(this.globalContainer), |
| 162 | ); |
| 163 | root.createBinder(this); |
| 164 | this._sessions.set(debugSession.id, root); |
| 165 | return root; |
| 166 | } |
| 167 | |
| 168 | /** |
| 169 | * @inheritdoc |
no test coverage detected