also send isDirty-flag when forwarding model changes, #11339

This commit is contained in:
Johannes Rieken
2016-10-24 13:06:48 +02:00
parent 2ef658a7c8
commit 1cda680453
3 changed files with 4 additions and 3 deletions

View File

@@ -231,7 +231,7 @@ export abstract class ExtHostDocumentsShape {
$acceptModelDirty(strURL: string): void { throw ni(); }
$acceptModelReverted(strURL: string): void { throw ni(); }
$acceptModelRemoved(strURL: string): void { throw ni(); }
$acceptModelChanged(strURL: string, events: editorCommon.IModelContentChangedEvent2[]): void { throw ni(); }
$acceptModelChanged(strURL: string, events: editorCommon.IModelContentChangedEvent2[], isDirty: boolean): void { throw ni(); }
}
export abstract class ExtHostDocumentSaveParticipantShape {