Merge pull request #25 from bbenoist/breakpoint-shared
Add the -f flag to break-insert
This commit is contained in:
commit
ec188980c0
1 changed files with 1 additions and 1 deletions
|
|
@ -351,7 +351,7 @@ export class MI2 extends EventEmitter implements IBackend {
|
|||
return new Promise((resolve, reject) => {
|
||||
if (this.breakpoints.has(breakpoint))
|
||||
return resolve(false);
|
||||
this.sendCommand("break-insert " + breakpoint.file + ":" + breakpoint.line).then((result) => {
|
||||
this.sendCommand("break-insert -f " + breakpoint.file + ":" + breakpoint.line).then((result) => {
|
||||
if (result.resultRecords.resultClass == "done") {
|
||||
let bkptNum = parseInt(result.result("bkpt.number"));
|
||||
let newBrk = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue