* Boots the binder with the given API. Used for the dapDebugServer where * the launch/attach is intercepted before the binder is created.
(params: AnyResolvingConfiguration, dap: Dap.Api)
| 226 | * the launch/attach is intercepted before the binder is created. |
| 227 | */ |
| 228 | public async boot(params: AnyResolvingConfiguration, dap: Dap.Api) { |
| 229 | return this._boot(applyDefaults(params, this._rootServices.get(ExtensionLocation)), dap); |
| 230 | } |
| 231 | |
| 232 | private async _boot(params: AnyLaunchConfiguration, dap: Dap.Api) { |
| 233 | warnNightly(dap); |
no test coverage detected