()
| 102 | } |
| 103 | |
| 104 | async _init(): Promise<Dap.InitializeResult> { |
| 105 | const [r] = await Promise.all([ |
| 106 | this.dap.initialize({ |
| 107 | clientID: 'pwa-test', |
| 108 | adapterID: 'pwa', |
| 109 | linesStartAt1: true, |
| 110 | columnsStartAt1: true, |
| 111 | pathFormat: 'path', |
| 112 | supportsVariablePaging: true, |
| 113 | supportsANSIStyling: true, |
| 114 | }), |
| 115 | this.dap.once('initialized'), |
| 116 | ]); |
| 117 | return r; |
| 118 | } |
| 119 | } |
| 120 | |
| 121 | /** |
nothing calls this directly
no test coverage detected