Skip to content

Commit

Permalink
fixes #96987
Browse files Browse the repository at this point in the history
  • Loading branch information
isidorn committed May 5, 2020
1 parent b8b1752 commit 15e13c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vs/workbench/contrib/debug/common/debugModel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -720,7 +720,7 @@ export class Breakpoint extends BaseBreakpoint implements IBreakpoint {
}

toString(): string {
return resources.basenameOrAuthority(this.uri);
return `${resources.basenameOrAuthority(this.uri)} ${this.lineNumber}`;
}

update(data: IBreakpointUpdateData): void {
Expand Down

0 comments on commit 15e13c9

Please sign in to comment.