vscode-languageclient
Advanced tools
Comparing version 5.1.0-next.9 to 5.1.0-next.10
@@ -63,3 +63,15 @@ import { TextDocumentChangeEvent, TextDocument, Disposable, OutputChannel, FileSystemWatcher as VFileSystemWatcher, DiagnosticCollection, Diagnostic as VDiagnostic, Uri, ProviderResult, CancellationToken, Position as VPosition, Location as VLocation, Range as VRange, CompletionItem as VCompletionItem, CompletionList as VCompletionList, SignatureHelp as VSignatureHelp, Definition as VDefinition, DocumentHighlight as VDocumentHighlight, SymbolInformation as VSymbolInformation, CodeActionContext as VCodeActionContext, Command as VCommand, CodeLens as VCodeLens, FormattingOptions as VFormattingOptions, TextEdit as VTextEdit, WorkspaceEdit as VWorkspaceEdit, Hover as VHover, CodeAction as VCodeAction, DocumentSymbol as VDocumentSymbol, DocumentLink as VDocumentLink, TextDocumentWillSaveEvent, WorkspaceFolder as VWorkspaceFolder, CompletionContext as VCompletionContext } from 'vscode'; | ||
export interface SynchronizeOptions { | ||
/** | ||
* The configuration sections to synchonize. Pushing settings from the | ||
* client to the server is deprecated in favour of the new pull model | ||
* that allows servers to query settings scoped on resources. In this | ||
* model the client can only deliver an empty change event since the | ||
* actually setting value can vary on the provided resource scope. | ||
* | ||
* @deprecated Use the new pull model (`workspace/configuration` request) | ||
*/ | ||
configurationSection?: string | string[]; | ||
/** | ||
* | ||
*/ | ||
fileEvents?: VFileSystemWatcher | VFileSystemWatcher[]; | ||
@@ -66,0 +78,0 @@ } |
@@ -0,0 +0,0 @@ import * as code from 'vscode'; |
@@ -0,0 +0,0 @@ /* -------------------------------------------------------------------------------------------- |
@@ -0,0 +0,0 @@ import { Disposable, TextDocument, ProviderResult, Range as VRange, Color as VColor, ColorPresentation as VColorPresentation, ColorInformation as VColorInformation } from 'vscode'; |
@@ -0,0 +0,0 @@ /* -------------------------------------------------------------------------------------------- |
@@ -0,0 +0,0 @@ import { StaticFeature, BaseLanguageClient } from './client'; |
@@ -0,0 +0,0 @@ /* -------------------------------------------------------------------------------------------- |
@@ -0,0 +0,0 @@ import { Disposable, TextDocument, ProviderResult, FoldingRange as VFoldingRange, FoldingContext } from 'vscode'; |
@@ -0,0 +0,0 @@ /* -------------------------------------------------------------------------------------------- |
@@ -0,0 +0,0 @@ import { Disposable, TextDocument, ProviderResult, Position as VPosition, Definition as VDefinition } from 'vscode'; |
@@ -0,0 +0,0 @@ /* -------------------------------------------------------------------------------------------- |
@@ -0,0 +0,0 @@ /// <reference types="node" /> |
@@ -0,0 +0,0 @@ /* -------------------------------------------------------------------------------------------- |
@@ -0,0 +0,0 @@ import * as code from 'vscode'; |
@@ -0,0 +0,0 @@ /* -------------------------------------------------------------------------------------------- |
@@ -0,0 +0,0 @@ import * as code from 'vscode'; |
@@ -0,0 +0,0 @@ /* -------------------------------------------------------------------------------------------- |
@@ -0,0 +0,0 @@ import * as code from 'vscode'; |
@@ -471,3 +471,3 @@ /* -------------------------------------------------------------------------------------------- | ||
else { | ||
console.error(`Unknown workspace edit change recevied:\n${JSON.stringify(change, undefined, 4)}`); | ||
console.error(`Unknown workspace edit change received:\n${JSON.stringify(change, undefined, 4)}`); | ||
} | ||
@@ -474,0 +474,0 @@ }); |
@@ -0,0 +0,0 @@ import * as code from 'vscode'; |
@@ -0,0 +0,0 @@ /* -------------------------------------------------------------------------------------------- |
@@ -0,0 +0,0 @@ import { Disposable, TextDocument, ProviderResult, Position as VPosition, Definition as VDefinition } from 'vscode'; |
@@ -0,0 +0,0 @@ /* -------------------------------------------------------------------------------------------- |
@@ -0,0 +0,0 @@ export interface ITask<T> { |
@@ -0,0 +0,0 @@ /* -------------------------------------------------------------------------------------------- |
@@ -0,0 +0,0 @@ export declare function boolean(value: any): value is boolean; |
@@ -7,3 +7,2 @@ /* -------------------------------------------------------------------------------------------- | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
const toString = Object.prototype.toString; | ||
function boolean(value) { | ||
@@ -14,15 +13,15 @@ return value === true || value === false; | ||
function string(value) { | ||
return toString.call(value) === '[object String]'; | ||
return typeof value === 'string' || value instanceof String; | ||
} | ||
exports.string = string; | ||
function number(value) { | ||
return toString.call(value) === '[object Number]'; | ||
return typeof value === 'number' || value instanceof Number; | ||
} | ||
exports.number = number; | ||
function error(value) { | ||
return toString.call(value) === '[object Error]'; | ||
return value instanceof Error; | ||
} | ||
exports.error = error; | ||
function func(value) { | ||
return toString.call(value) === '[object Function]'; | ||
return typeof value === 'function'; | ||
} | ||
@@ -29,0 +28,0 @@ exports.func = func; |
@@ -0,0 +0,0 @@ /// <reference types="node" /> |
@@ -0,0 +0,0 @@ /* -------------------------------------------------------------------------------------------- |
@@ -0,0 +0,0 @@ /** |
@@ -0,0 +0,0 @@ /*--------------------------------------------------------------------------------------------- |
@@ -0,0 +0,0 @@ import { WorkspaceFoldersChangeEvent as VWorkspaceFoldersChangeEvent } from 'vscode'; |
@@ -0,0 +0,0 @@ /* -------------------------------------------------------------------------------------------- |
@@ -0,0 +0,0 @@ Copyright (c) Microsoft Corporation |
{ | ||
"name": "vscode-languageclient", | ||
"description": "VSCode Language client implementation", | ||
"version": "5.1.0-next.9", | ||
"version": "5.1.0-next.10", | ||
"author": "Microsoft Corporation", | ||
@@ -26,3 +26,3 @@ "license": "MIT", | ||
"semver": "^5.5.0", | ||
"vscode-languageserver-protocol": "^3.13.0-next.2" | ||
"vscode-languageserver-protocol": "3.13.0-next.3" | ||
}, | ||
@@ -29,0 +29,0 @@ "scripts": { |
@@ -0,0 +0,0 @@ # VSCode Language Server - Client Module |
@@ -0,0 +0,0 @@ THIRD-PARTY SOFTWARE NOTICES AND INFORMATION |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
299357
5409
40
+ Addedvscode-jsonrpc@4.0.0(transitive)
+ Addedvscode-languageserver-protocol@3.13.0-next.3(transitive)
+ Addedvscode-languageserver-types@3.13.0-next.1(transitive)
- Removedvscode-jsonrpc@8.2.0(transitive)
- Removedvscode-languageserver-protocol@3.17.5(transitive)
- Removedvscode-languageserver-types@3.17.5(transitive)