move onDidRename to filesystem-events things, #43768

This commit is contained in:
Johannes Rieken
2018-06-19 15:17:54 +02:00
parent 3f25a1b7cb
commit 10192366eb
8 changed files with 49 additions and 47 deletions

View File

@@ -614,7 +614,6 @@ export interface ExtHostDocumentsShape {
$acceptModelSaved(strURL: UriComponents): void;
$acceptDirtyStateChanged(strURL: UriComponents, isDirty: boolean): void;
$acceptModelChanged(strURL: UriComponents, e: IModelChangedEvent, isDirty: boolean): void;
$onDidRename(oldURL: UriComponents, newURL: UriComponents): void;
}
export interface ExtHostDocumentSaveParticipantShape {
@@ -698,6 +697,7 @@ export interface FileSystemEvents {
}
export interface ExtHostFileSystemEventServiceShape {
$onFileEvent(events: FileSystemEvents): void;
$onFileRename(oldUri: UriComponents, newUri: UriComponents): void;
}
export interface ObjectIdentifier {