(path, line, options)
| 278 | this.output.write(this.encoder.encode(string)); |
| 279 | } |
| 280 | doSetBreakpoint(path, line, options) { |
| 281 | if (options && (options.condition || options.hitCount || options.trace)) { |
| 282 | let string = `\r\n<set-breakpoint path="${path}" line="${line}" id="@1">`; |
| 283 | if (options.condition) |
| 284 | string += `<breakpoint-condition path="${options.condition}"/>`; |
| 285 | if (options.hitCount) |
| 286 | string += `<breakpoint-hit-count path="${options.hitCount}"/>`; |
| 287 | if (options.trace) |
| 288 | string += `<breakpoint-trace path="${options.trace}"/>`; |
| 289 | string += `</set-breakpoint>\r\n`; |
| 290 | this.output.write(this.encoder.encode(string)); |
| 291 | } |
| 292 | else { |
| 293 | this.doCommand(`set-breakpoint path="${path}" line="${line}" id="@0"`); |
| 294 | } |
| 295 | } |
| 296 | doSelect(value) { |
| 297 | this.doCommand(`select id="${value}"`); |
| 298 | } |
no test coverage detected