66
77import { Position } from 'vs/editor/common/core/position' ;
88import { Range as EditorRange } from 'vs/editor/common/core/range' ;
9- import { EditorLayoutInfo , IEditorRange , IPosition , MouseTargetType } from 'vs/editor/common/editorCommon' ;
9+ import { EditorLayoutInfo , IPosition , MouseTargetType } from 'vs/editor/common/editorCommon' ;
1010import { ClassNames , IMouseTarget , IViewZoneData } from 'vs/editor/browser/editorBrowser' ;
1111import { IDomNodePosition } from 'vs/base/browser/dom' ;
1212import { ViewContext } from 'vs/editor/common/view/viewContext' ;
@@ -29,10 +29,10 @@ class MouseTarget implements IMouseTarget {
2929 public type : MouseTargetType ;
3030 public mouseColumn : number ;
3131 public position : Position ;
32- public range : IEditorRange ;
32+ public range : EditorRange ;
3333 public detail : any ;
3434
35- constructor ( element : Element , type : MouseTargetType , mouseColumn :number = 0 , position :Position = null , range : IEditorRange = null , detail : any = null ) {
35+ constructor ( element : Element , type : MouseTargetType , mouseColumn :number = 0 , position :Position = null , range : EditorRange = null , detail : any = null ) {
3636 this . element = element ;
3737 this . type = type ;
3838 this . mouseColumn = mouseColumn ;
@@ -575,7 +575,7 @@ export class MouseTargetFactory {
575575 return null ;
576576 }
577577
578- private _getFullLineRangeAtCoord ( mouseVerticalOffset : number ) : { range : IEditorRange ; isAfterLines : boolean ; } {
578+ private _getFullLineRangeAtCoord ( mouseVerticalOffset : number ) : { range : EditorRange ; isAfterLines : boolean ; } {
579579 if ( this . _viewHelper . isAfterLines ( mouseVerticalOffset ) ) {
580580 // Below the last line
581581 var lineNumber = this . _context . model . getLineCount ( ) ;
0 commit comments