| 5 | import { SSHArguments, ValuesFormattingMode } from './backend/backend'; |
| 6 | |
| 7 | export interface LaunchRequestArguments extends DebugProtocol.LaunchRequestArguments { |
| 8 | cwd: string; |
| 9 | target: string; |
| 10 | magomipath: string; |
| 11 | env: any; |
| 12 | debugger_args: string[]; |
| 13 | arguments: string; |
| 14 | autorun: string[]; |
| 15 | valuesFormatting: ValuesFormattingMode; |
| 16 | printCalls: boolean; |
| 17 | showDevDebugOutput: boolean; |
| 18 | } |
| 19 | |
| 20 | export interface AttachRequestArguments extends DebugProtocol.AttachRequestArguments { |
| 21 | cwd: string; |
nothing calls this directly
no outgoing calls
no test coverage detected