( session: vscode.DebugSession, source: Dap.Source, cursor: vscode.Position, )
| 196 | } |
| 197 | |
| 198 | const sendPrintCommand = ( |
| 199 | session: vscode.DebugSession, |
| 200 | source: Dap.Source, |
| 201 | cursor: vscode.Position, |
| 202 | ) => |
| 203 | session.customRequest('prettyPrintSource', { |
| 204 | source, |
| 205 | line: cursor.line, |
| 206 | column: cursor.character, |
| 207 | }); |
| 208 | |
| 209 | /** |
| 210 | * Gets the DAP source and session for a VS Code document URI. |
no test coverage detected