Rename modeId -> languageId

This commit is contained in:
Alexandru Dima
2021-10-22 17:46:37 +02:00
parent 621f3bcc0b
commit d209aa2b02
34 changed files with 147 additions and 147 deletions

View File

@@ -1213,7 +1213,7 @@ export interface IModelAddedData {
versionId: number;
lines: string[];
EOL: string;
modeId: string;
languageId: string;
isDirty: boolean;
}
export interface ExtHostDocumentsShape {
@@ -2082,7 +2082,7 @@ export interface ExtHostNotebookKernelsShape {
}
export interface ExtHostInteractiveShape {
$willAddInteractiveDocument(uri: UriComponents, eol: string, modeId: string, notebookUri: UriComponents): void;
$willAddInteractiveDocument(uri: UriComponents, eol: string, languageId: string, notebookUri: UriComponents): void;
$willRemoveInteractiveDocument(uri: UriComponents, notebookUri: UriComponents): void;
}