Skip to content

Commit

Permalink
fixes #3848
Browse files Browse the repository at this point in the history
  • Loading branch information
isidorn committed Mar 8, 2016
1 parent a4f8a16 commit 4d9bab0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -862,7 +862,7 @@ export class DebugService extends ee.EventEmitter implements debug.IDebugService
}

private sendFunctionBreakpoints(): TPromise<void> {
if (!this.session || !this.session.readyForBreakpoints) {
if (!this.session || !this.session.readyForBreakpoints || !this.session.capabilities.supportsFunctionBreakpoints) {
return TPromise.as(null);
}

Expand Down

0 comments on commit 4d9bab0

Please sign in to comment.