Merge from vscode 2b0b9136329c181a9e381463a1f7dc3a2d105a34 (#4880)

This commit is contained in:
Karl Burtram
2019-04-05 10:09:18 -07:00
committed by GitHub
parent 9bd7e30d18
commit cb5bcf2248
433 changed files with 8915 additions and 8361 deletions

View File

@@ -460,6 +460,11 @@ export interface CompletionItem {
* A command that should be run upon acceptance of this item.
*/
command?: Command;
/**
* @internal
*/
[key: string]: any;
}
export interface CompletionList {
@@ -1265,19 +1270,19 @@ export interface CommentThread2 {
resource: string | null;
range: IRange;
label: string;
comments: Comment[];
onDidChangeComments: Event<Comment[]>;
comments: Comment[] | undefined;
onDidChangeComments: Event<Comment[] | undefined>;
collapsibleState?: CommentThreadCollapsibleState;
input?: CommentInput;
onDidChangeInput: Event<CommentInput | undefined>;
acceptInputCommand?: Command;
additionalCommands: Command[];
additionalCommands?: Command[];
deleteCommand?: Command;
onDidChangeAcceptInputCommand: Event<Command>;
onDidChangeAdditionalCommands: Event<Command[]>;
onDidChangeAcceptInputCommand: Event<Command | undefined>;
onDidChangeAdditionalCommands: Event<Command[] | undefined>;
onDidChangeRange: Event<IRange>;
onDidChangeLabel: Event<string>;
onDidChangeCollasibleState: Event<CommentThreadCollapsibleState>;
onDidChangeCollasibleState: Event<CommentThreadCollapsibleState | undefined>;
}
/**
@@ -1299,7 +1304,7 @@ export interface CommentThread {
threadId: string | null;
resource: string | null;
range: IRange;
comments: Comment[];
comments: Comment[] | undefined;
collapsibleState?: CommentThreadCollapsibleState;
reply?: Command;
}