don't push code without tests... #8093

This commit is contained in:
Johannes Rieken
2016-08-12 12:32:15 +02:00
parent ed26ad524e
commit a8a920e2fc
2 changed files with 23 additions and 1 deletions

View File

@@ -80,6 +80,7 @@ export class ExtHostAPIImplementation {
TextEditorRevealType: typeof vscode.TextEditorRevealType;
EndOfLine: typeof vscode.EndOfLine;
TextEditorCursorStyle: typeof vscode.TextEditorCursorStyle;
TextEditorSelectionChangeKind: typeof vscode.TextEditorSelectionChangeKind;
commands: typeof vscode.commands;
window: typeof vscode.window;
workspace: typeof vscode.workspace;
@@ -159,6 +160,7 @@ export class ExtHostAPIImplementation {
this.TextEditorRevealType = extHostTypes.TextEditorRevealType;
this.EndOfLine = extHostTypes.EndOfLine;
this.TextEditorCursorStyle = EditorCommon.TextEditorCursorStyle;
this.TextEditorSelectionChangeKind = extHostTypes.TextEditorSelectionChangeKind;
// env namespace
let telemetryInfo: ITelemetryInfo;