| 18 | } |
| 19 | |
| 20 | export interface AttachRequestArguments extends DebugProtocol.AttachRequestArguments { |
| 21 | cwd: string; |
| 22 | target: string; |
| 23 | magomipath: string; |
| 24 | env: any; |
| 25 | debugger_args: string[]; |
| 26 | executable: string; |
| 27 | autorun: string[]; |
| 28 | stopAtConnect: boolean; |
| 29 | valuesFormatting: ValuesFormattingMode; |
| 30 | printCalls: boolean; |
| 31 | showDevDebugOutput: boolean; |
| 32 | } |
| 33 | |
| 34 | class MagoDebugSession extends MI2DebugSession { |
| 35 | public constructor(debuggerLinesStartAt1: boolean, isServer: boolean = false) { |
nothing calls this directly
no outgoing calls
no test coverage detected