* @inheritdoc
(target: ITarget)
| 233 | * @inheritdoc |
| 234 | */ |
| 235 | public releaseDap(target: ITarget) { |
| 236 | this._sessionForTarget.delete(target); |
| 237 | const callbacks = this._sessionForTargetCallbacks.get(target); |
| 238 | if (callbacks) callbacks.reject(new Error('Target gone')); |
| 239 | this._sessionForTargetCallbacks.delete(target); |
| 240 | } |
| 241 | |
| 242 | /** |
| 243 | * @inheritdoc |