tests for range highlight

This commit is contained in:
Sandeep Somavarapu
2016-09-09 14:35:06 +02:00
parent 7c1d8ed4e0
commit 41e35e5a25
3 changed files with 186 additions and 12 deletions

View File

@@ -5,7 +5,6 @@
import {IDisposable} from 'vs/base/common/lifecycle';
import URI from 'vs/base/common/uri';
import {Range} from 'vs/editor/common/core/range';
import * as editorCommon from 'vs/editor/common/editorCommon';
import {IWorkbenchEditorService} from 'vs/workbench/services/editor/common/editorService';
import {IEditor} from 'vs/platform/editor/common/editor';
@@ -13,7 +12,7 @@ import {asFileEditorInput} from 'vs/workbench/common/editor';
export interface IRangeHighlightDecoration {
resource: URI;
range: Range;
range: editorCommon.IRange;
}
export class RangeHighlightDecorations implements IDisposable {