deco - allow to derive new decoration from existing decoration, add IDecorationData#source

This commit is contained in:
Johannes Rieken
2017-10-26 15:45:26 +02:00
parent f9d60296d6
commit 86cd46a44e
9 changed files with 53 additions and 58 deletions

View File

@@ -625,7 +625,7 @@ export interface ExtHostDebugServiceShape {
}
export type DecorationData = [number, boolean, string, string, ThemeColor];
export type DecorationData = [number, boolean, string, string, ThemeColor, string];
export interface ExtHostDecorationsShape {
$providerDecorations(handle: number, uri: URI): TPromise<DecorationData>;