make ext API SourceBreakpoint use Location; fixes #39647

This commit is contained in:
Andre Weinand
2017-12-06 16:13:25 +01:00
parent 8d6f510a0d
commit 7c801e972a
4 changed files with 6 additions and 11 deletions

View File

@@ -635,7 +635,7 @@ export interface IBreakpointData {
export interface ISourceBreakpointData extends IBreakpointData {
type: 'source';
sourceUriStr: string;
uri: URI;
line: number;
character: number;
}