Changed the namespace from ts.Breakpoints to ts.BreakpointResolver

This commit is contained in:
Sheetal Nandi 2014-08-30 18:39:46 -07:00
parent fbd78b407e
commit cec814689c
2 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@
/// <reference path='services.ts' />
module ts.Breakpoints {
module ts.BreakpointResolver {
/**
* Get the breakpoint span in given sourceFile
*/

View File

@ -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[] {