vscode-languageserver
Advanced tools
Comparing version 7.0.0-next.10 to 7.0.0-next.11
@@ -0,1 +1,2 @@ | ||
"use strict"; | ||
/* -------------------------------------------------------------------------------------------- | ||
@@ -5,3 +6,2 @@ * Copyright (c) Microsoft Corporation. All rights reserved. | ||
* ------------------------------------------------------------------------------------------ */ | ||
'use strict'; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
@@ -8,0 +8,0 @@ exports.ConfigurationFeature = void 0; |
@@ -7,2 +7,4 @@ import { CancellationToken, ProtocolRequestType0, RequestHandler0, ProtocolRequestType, RequestHandler, GenericRequestHandler, StarRequestHandler, HandlerResult, ProtocolNotificationType0, NotificationHandler0, ProtocolNotificationType, NotificationHandler, GenericNotificationHandler, StarNotificationHandler, ProgressType, Disposable, InitializeParams, InitializeResult, InitializeError, InitializedParams, DidChangeConfigurationParams, DidChangeWatchedFilesParams, DidOpenTextDocumentParams, DidChangeTextDocumentParams, DidCloseTextDocumentParams, WillSaveTextDocumentParams, TextEdit, DidSaveTextDocumentParams, PublishDiagnosticsParams, HoverParams, Hover, CompletionParams, CompletionItem, CompletionList, SignatureHelpParams, SignatureHelp, DeclarationParams, Declaration, DeclarationLink, Location, DefinitionParams, Definition, DefinitionLink, TypeDefinitionParams, ImplementationParams, ReferenceParams, DocumentHighlightParams, DocumentHighlight, DocumentSymbolParams, SymbolInformation, DocumentSymbol, WorkspaceSymbolParams, CodeActionParams, Command, CodeAction, CodeLensParams, CodeLens, DocumentFormattingParams, DocumentRangeFormattingParams, DocumentOnTypeFormattingParams, RenameParams, WorkspaceEdit, PrepareRenameParams, Range, DocumentLinkParams, DocumentLink, DocumentColorParams, ColorInformation, ColorPresentationParams, ColorPresentation, FoldingRangeParams, FoldingRange, SelectionRangeParams, SelectionRange, ExecuteCommandParams, MessageActionItem, ClientCapabilities, ServerCapabilities, Logger, ProtocolConnection, TextDocumentContentChangeEvent, TextDocumentSaveReason, Event, MessageSignature, ApplyWorkspaceEditParams, ApplyWorkspaceEditResponse, WorkDoneProgressParams, PartialResultParams, RegistrationType, RequestType0, RequestType, NotificationType0, NotificationType } from 'vscode-languageserver-protocol'; | ||
import { SemanticTokensFeatureShape } from './semanticTokens'; | ||
import { ShowDocumentFeatureShape } from './showDocument'; | ||
import { OnTypeRenameFeatureShape } from './onTypeRename'; | ||
export interface TextDocumentsConfiguration<T> { | ||
@@ -242,3 +244,3 @@ create(uri: string, languageId: string, version: number, content: string): T; | ||
} | ||
export declare type RemoteWindow = _RemoteWindow & WindowProgress; | ||
export declare type RemoteWindow = _RemoteWindow & WindowProgress & ShowDocumentFeatureShape; | ||
/** | ||
@@ -369,3 +371,3 @@ * A bulk registration manages n single registration to be able to register | ||
} | ||
export declare type Languages = _Languages & CallHierarchy & SemanticTokensFeatureShape; | ||
export declare type Languages = _Languages & CallHierarchy & SemanticTokensFeatureShape & OnTypeRenameFeatureShape; | ||
/** | ||
@@ -372,0 +374,0 @@ * An empty interface for new proposed API. |
@@ -16,2 +16,4 @@ "use strict"; | ||
const semanticTokens_1 = require("./semanticTokens"); | ||
const showDocument_1 = require("./showDocument"); | ||
const onTypeRename_1 = require("./onTypeRename"); | ||
function null2Undefined(value) { | ||
@@ -277,3 +279,3 @@ if (value === null) { | ||
} | ||
const RemoteWindowImpl = progress_1.ProgressFeature(_RemoteWindowImpl); | ||
const RemoteWindowImpl = showDocument_1.ShowDocumentFeature(progress_1.ProgressFeature(_RemoteWindowImpl)); | ||
var BulkRegistration; | ||
@@ -541,3 +543,3 @@ (function (BulkRegistration) { | ||
exports._LanguagesImpl = _LanguagesImpl; | ||
const LanguagesImpl = semanticTokens_1.SemanticTokensFeature(callHierarchy_1.CallHierarchyFeature(_LanguagesImpl)); | ||
const LanguagesImpl = onTypeRename_1.OnTypeRenameFeature(semanticTokens_1.SemanticTokensFeature(callHierarchy_1.CallHierarchyFeature(_LanguagesImpl))); | ||
function combineConsoleFeatures(one, two) { | ||
@@ -544,0 +546,0 @@ return function (Base) { |
{ | ||
"name": "vscode-languageserver", | ||
"description": "Language server implementation for node", | ||
"version": "7.0.0-next.10", | ||
"version": "7.0.0-next.11", | ||
"author": "Microsoft Corporation", | ||
@@ -24,3 +24,3 @@ "license": "MIT", | ||
"dependencies": { | ||
"vscode-languageserver-protocol": "3.16.0-next.10" | ||
"vscode-languageserver-protocol": "3.16.0-next.11" | ||
}, | ||
@@ -27,0 +27,0 @@ "scripts": { |
141114
43
3071
+ Addedvscode-languageserver-protocol@3.16.0-next.11(transitive)
+ Addedvscode-languageserver-types@3.16.0-next.5(transitive)
- Removedvscode-languageserver-protocol@3.16.0-next.10(transitive)
- Removedvscode-languageserver-types@3.16.0-next.4(transitive)