mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-02-04 21:53:42 -06:00
Changed the namespace from ts.Breakpoints to ts.BreakpointResolver
This commit is contained in:
parent
fbd78b407e
commit
cec814689c
@ -3,7 +3,7 @@
|
||||
|
||||
/// <reference path='services.ts' />
|
||||
|
||||
module ts.Breakpoints {
|
||||
module ts.BreakpointResolver {
|
||||
/**
|
||||
* Get the breakpoint span in given sourceFile
|
||||
*/
|
||||
|
||||
@ -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[] {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user