(params: Dap.OutputEventParams, options?: ILogOptions)
| 105 | } |
| 106 | |
| 107 | async logOutput(params: Dap.OutputEventParams, options?: ILogOptions) { |
| 108 | if (params.group) { |
| 109 | this.logAsConsole(`# group: ${params.group}`); |
| 110 | } |
| 111 | |
| 112 | const prefix = `${params.category}> `; |
| 113 | if (params.output) { |
| 114 | this.logAsConsole(`${prefix}${params.output}`); |
| 115 | } |
| 116 | |
| 117 | if (params.variablesReference) { |
| 118 | const result = await this._dap.variables({ variablesReference: params.variablesReference }); |
| 119 | for (const variable of result.variables) await this.logVariable(variable, options, prefix); |
| 120 | } |
| 121 | } |
| 122 | |
| 123 | async logEvaluateResult( |
| 124 | result: Dap.EvaluateResult, |
no test coverage detected