vscode-languageserver
Advanced tools
Comparing version 8.0.0-next.11 to 8.0.0-next.12
@@ -9,9 +9,8 @@ import { _, Features, _Connection } from './server'; | ||
export { TextDocuments, TextDocumentsConfiguration, TextDocumentChangeEvent, TextDocumentWillSaveEvent }; | ||
import { NotebookDocuments } from './notebook'; | ||
export { NotebookDocuments }; | ||
export * from './server'; | ||
import { DiagnosticsFeatureShape } from './proposed.diagnostic'; | ||
import { NotebooksFeatureShape, NotebookDocuments as _NotebookDocuments } from './proposed.notebook'; | ||
export declare namespace ProposedFeatures { | ||
const all: Features<_, _, _, _, _, _, DiagnosticsFeatureShape, NotebooksFeatureShape>; | ||
type Connection = _Connection<_, _, _, _, _, _, DiagnosticsFeatureShape, NotebooksFeatureShape>; | ||
const NotebookDocuments: typeof _NotebookDocuments; | ||
const all: Features<_, _, _, _, _, _, _, _>; | ||
type Connection = _Connection<_, _, _, _, _, _, _, _>; | ||
} |
@@ -17,3 +17,3 @@ "use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.ProposedFeatures = exports.TextDocuments = exports.SemanticTokensBuilder = void 0; | ||
exports.ProposedFeatures = exports.NotebookDocuments = exports.TextDocuments = exports.SemanticTokensBuilder = void 0; | ||
const semanticTokens_1 = require("./semanticTokens"); | ||
@@ -24,5 +24,5 @@ Object.defineProperty(exports, "SemanticTokensBuilder", { enumerable: true, get: function () { return semanticTokens_1.SemanticTokensBuilder; } }); | ||
Object.defineProperty(exports, "TextDocuments", { enumerable: true, get: function () { return textDocuments_1.TextDocuments; } }); | ||
const notebook_1 = require("./notebook"); | ||
Object.defineProperty(exports, "NotebookDocuments", { enumerable: true, get: function () { return notebook_1.NotebookDocuments; } }); | ||
__exportStar(require("./server"), exports); | ||
const proposed_diagnostic_1 = require("./proposed.diagnostic"); | ||
const proposed_notebook_1 = require("./proposed.notebook"); | ||
var ProposedFeatures; | ||
@@ -32,7 +32,4 @@ (function (ProposedFeatures) { | ||
__brand: 'features', | ||
languages: proposed_diagnostic_1.DiagnosticFeature, | ||
notebooks: proposed_notebook_1.NotebooksFeature | ||
}; | ||
ProposedFeatures.NotebookDocuments = proposed_notebook_1.NotebookDocuments; | ||
})(ProposedFeatures = exports.ProposedFeatures || (exports.ProposedFeatures = {})); | ||
//# sourceMappingURL=api.js.map |
@@ -13,2 +13,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, MessageSignature, ApplyWorkspaceEditParams, ApplyWorkspaceEditResponse, WorkDoneProgressParams, PartialResultParams, RegistrationType, RequestType0, RequestType, NotificationType0, NotificationType, WorkspaceSymbol } from 'vscode-languageserver-protocol'; | ||
import { InlayHintFeatureShape } from './inlayHint'; | ||
import { DiagnosticFeatureShape } from './diagnostic'; | ||
import { NotebookSyncFeatureShape } from './notebook'; | ||
import { MonikerFeatureShape } from './moniker'; | ||
@@ -319,3 +321,3 @@ /** | ||
} | ||
export declare type Languages = _Languages & CallHierarchy & SemanticTokensFeatureShape & LinkedEditingRangeFeatureShape & TypeHierarchyFeatureShape & InlineValueFeatureShape & InlayHintFeatureShape & MonikerFeatureShape; | ||
export declare type Languages = _Languages & CallHierarchy & SemanticTokensFeatureShape & LinkedEditingRangeFeatureShape & TypeHierarchyFeatureShape & InlineValueFeatureShape & InlayHintFeatureShape & DiagnosticFeatureShape & MonikerFeatureShape; | ||
export interface _Notebooks extends FeatureBase { | ||
@@ -336,3 +338,3 @@ connection: Connection; | ||
} | ||
export declare type Notebooks = _Notebooks; | ||
export declare type Notebooks = _Notebooks & NotebookSyncFeatureShape; | ||
/** | ||
@@ -339,0 +341,0 @@ * An empty interface for new proposed API. |
@@ -22,2 +22,4 @@ "use strict"; | ||
const inlayHint_1 = require("./inlayHint"); | ||
const diagnostic_1 = require("./diagnostic"); | ||
const notebook_1 = require("./notebook"); | ||
const moniker_1 = require("./moniker"); | ||
@@ -401,3 +403,3 @@ function null2Undefined(value) { | ||
exports._LanguagesImpl = _LanguagesImpl; | ||
const LanguagesImpl = (0, moniker_1.MonikerFeature)((0, inlayHint_1.InlayHintFeature)((0, inlineValue_1.InlineValueFeature)((0, typeHierarchy_1.TypeHierarchyFeature)((0, linkedEditingRange_1.LinkedEditingRangeFeature)((0, semanticTokens_1.SemanticTokensFeature)((0, callHierarchy_1.CallHierarchyFeature)(_LanguagesImpl))))))); | ||
const LanguagesImpl = (0, moniker_1.MonikerFeature)((0, diagnostic_1.DiagnosticFeature)((0, inlayHint_1.InlayHintFeature)((0, inlineValue_1.InlineValueFeature)((0, typeHierarchy_1.TypeHierarchyFeature)((0, linkedEditingRange_1.LinkedEditingRangeFeature)((0, semanticTokens_1.SemanticTokensFeature)((0, callHierarchy_1.CallHierarchyFeature)(_LanguagesImpl)))))))); | ||
class _NotebooksImpl { | ||
@@ -427,3 +429,3 @@ constructor() { | ||
exports._NotebooksImpl = _NotebooksImpl; | ||
const NotebooksImpl = _NotebooksImpl; | ||
const NotebooksImpl = (0, notebook_1.NotebookSyncFeature)(_NotebooksImpl); | ||
function combineConsoleFeatures(one, two) { | ||
@@ -430,0 +432,0 @@ return function (Base) { |
{ | ||
"name": "vscode-languageserver", | ||
"description": "Language server implementation for node", | ||
"version": "8.0.0-next.11", | ||
"version": "8.0.0-next.12", | ||
"author": "Microsoft Corporation", | ||
@@ -24,3 +24,3 @@ "license": "MIT", | ||
"dependencies": { | ||
"vscode-languageserver-protocol": "3.17.0-next.17" | ||
"vscode-languageserver-protocol": "3.17.0-next.18" | ||
}, | ||
@@ -27,0 +27,0 @@ "scripts": { |
189373
3996
+ Addedvscode-languageserver-protocol@3.17.0-next.18(transitive)
+ Addedvscode-languageserver-types@3.17.0-next.11(transitive)
- Removedvscode-languageserver-protocol@3.17.0-next.17(transitive)
- Removedvscode-languageserver-types@3.17.0-next.10(transitive)