()
| 1602 | } |
| 1603 | |
| 1604 | protected getResetCommands(): string[] { |
| 1605 | return this.args.overrideResetCommands != null ? this.args.overrideResetCommands.map(COMMAND_MAP) : |
| 1606 | this.args.overrideRestartCommands != null ? this.args.overrideRestartCommands.map(COMMAND_MAP) : |
| 1607 | this.serverController.restartCommands(); |
| 1608 | } |
| 1609 | |
| 1610 | protected async resetDevice(response: DebugProtocol.Response, args: any) { |
| 1611 | try { |
nothing calls this directly
no test coverage detected