Skip to content

Commit cec8146

Browse files
committed
Changed the namespace from ts.Breakpoints to ts.BreakpointResolver
1 parent fbd78b4 commit cec8146

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/services/breakpoints.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
/// <reference path='services.ts' />
55

6-
module ts.Breakpoints {
6+
module ts.BreakpointResolver {
77
/**
88
* Get the breakpoint span in given sourceFile
99
*/

src/services/services.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4737,7 +4737,7 @@ module ts {
47374737
function getBreakpointStatementAtPosition(filename: string, position: number) {
47384738
// doesn't use compiler - no need to synchronize with host
47394739
filename = TypeScript.switchToForwardSlashes(filename);
4740-
return Breakpoints.spanInSourceFileAtLocation(getCurrentSourceFile(filename), position);
4740+
return BreakpointResolver.spanInSourceFileAtLocation(getCurrentSourceFile(filename), position);
47414741
}
47424742

47434743
function getNavigationBarItems(filename: string): NavigationBarItem[] {

0 commit comments

Comments
 (0)