registerDiffInformationCommand instead of computeDiff

This commit is contained in:
Joao Moreno
2017-03-24 15:22:28 +01:00
parent 79a7e30685
commit acb29bf425
9 changed files with 89 additions and 52 deletions

View File

@@ -140,6 +140,7 @@ export abstract class MainThreadEditorsShape {
$trySetSelections(id: string, selections: editorCommon.ISelection[]): TPromise<any> { throw ni(); }
$tryApplyEdits(id: string, modelVersionId: number, edits: editorCommon.ISingleEditOperation[], opts: IApplyEditsOptions): TPromise<boolean> { throw ni(); }
$tryInsertSnippet(id: string, template: string, selections: editorCommon.IRange[], opts: IUndoStopOptions): TPromise<any> { throw ni(); }
$getDiffInformation(id: string): TPromise<editorCommon.ILineChange[]> { throw ni(); }
}
export abstract class MainThreadTreeExplorersShape {