(forced: string | null = null)
| 1190 | } |
| 1191 | |
| 1192 | private formatRadixGdbCommand(forced: string | null = null): string[] { |
| 1193 | // radix setting affects future interpretations of values, so format it unambiguously with hex values |
| 1194 | const radix = forced || (this.args.variableUseNaturalFormat ? '0xa' : '0x10'); |
| 1195 | // If we set just the output radix, it will affect setting values. Always leave input radix in decimal |
| 1196 | // Also, don't understand why setting the output-radix modifies the input radix as well |
| 1197 | const cmds = [ |
| 1198 | `interpreter-exec console "set output-radix ${radix}"`, |
| 1199 | 'interpreter-exec console "set input-radix 0xa"' |
| 1200 | ]; |
| 1201 | return cmds; |
| 1202 | } |
| 1203 | |
| 1204 | protected disassembleRequest( |
| 1205 | response: DebugProtocol.DisassembleResponse, |
no outgoing calls
no test coverage detected