(response: DebugProtocol.AttachResponse, args: ConfigurationArguments)
| 423 | } |
| 424 | |
| 425 | protected attachRequest(response: DebugProtocol.AttachResponse, args: ConfigurationArguments): void { |
| 426 | this.launchAttachInit(args); |
| 427 | this.processLaunchAttachRequest(response, true); |
| 428 | } |
| 429 | |
| 430 | private normalizeArguments(args: ConfigurationArguments): ConfigurationArguments { |
| 431 | args.graphConfig = args.graphConfig || []; |
nothing calls this directly
no test coverage detected