diff --git a/src/services/breakpoints.ts b/src/services/breakpoints.ts index d336bdf4b30..8106d085b5d 100644 --- a/src/services/breakpoints.ts +++ b/src/services/breakpoints.ts @@ -3,7 +3,7 @@ /// -module ts.Breakpoints { +module ts.BreakpointResolver { /** * Get the breakpoint span in given sourceFile */ diff --git a/src/services/services.ts b/src/services/services.ts index 4a22d486219..080daa1aa53 100644 --- a/src/services/services.ts +++ b/src/services/services.ts @@ -4737,7 +4737,7 @@ module ts { function getBreakpointStatementAtPosition(filename: string, position: number) { // doesn't use compiler - no need to synchronize with host filename = TypeScript.switchToForwardSlashes(filename); - return Breakpoints.spanInSourceFileAtLocation(getCurrentSourceFile(filename), position); + return BreakpointResolver.spanInSourceFileAtLocation(getCurrentSourceFile(filename), position); } function getNavigationBarItems(filename: string): NavigationBarItem[] {