Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

vscode-languageserver-protocol

Package Overview
Dependencies
Maintainers
11
Versions
130
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vscode-languageserver-protocol - npm Package Compare versions

Comparing version 3.15.0-next.14 to 3.15.0-next.15

.eslintignore

18

lib/main.d.ts

@@ -7,3 +7,2 @@ import { ErrorCodes, ResponseError, CancellationToken, CancellationTokenSource, Disposable, Event, Emitter, Trace, Tracer, TraceFormat, TraceOptions, SetTraceNotification, LogTraceNotification, Message, NotificationMessage, RequestMessage, MessageType as RPCMessageType, RequestType, RequestType0, RequestHandler, RequestHandler0, GenericRequestHandler, StarRequestHandler, HandlerResult, NotificationType, NotificationType0, NotificationHandler, NotificationHandler0, GenericNotificationHandler, StarNotificationHandler, MessageReader, PartialMessageInfo, MessageWriter, Logger, ConnectionStrategy, StreamMessageReader, StreamMessageWriter, IPCMessageReader, IPCMessageWriter, createClientPipeTransport, createServerPipeTransport, generateRandomPipeName, DataCallback, createClientSocketTransport, createServerSocketTransport, ProgressType, ProgressToken } from 'vscode-jsonrpc';

import * as callHierarchy from './protocol.callHierarchy.proposed';
import * as progress from './protocol.progress.proposed';
export declare namespace Proposed {

@@ -37,19 +36,2 @@ type CallHierarchyClientCapabilities = callHierarchy.CallHierarchyClientCapabilities;

}
type WorkDoneProgressClientCapabilities = progress.WorkDoneProgressClientCapabilities;
type WorkDoneProgressBegin = progress.WorkDoneProgressBegin;
type WorkDoneProgressReport = progress.WorkDoneProgressReport;
type WorkDoneProgressEnd = progress.WorkDoneProgressEnd;
namespace WorkDoneProgress {
const type: ProgressType<progress.WorkDoneProgressBegin | progress.WorkDoneProgressReport | progress.WorkDoneProgressEnd>;
}
type WorkDoneProgressCreateParams = progress.WorkDoneProgressCreateParams;
namespace WorkDoneProgressCreateRequest {
const type: RequestType<progress.WorkDoneProgressCreateParams, void, void, void>;
type HandlerSignature = progress.WorkDoneProgressCreateRequest.HandlerSignature;
}
type WorkDoneProgressCancelParams = progress.WorkDoneProgressCancelParams;
namespace WorkDoneProgressCancelNotification {
const type: NotificationType<progress.WorkDoneProgressCancelParams, void>;
type HandlerSignature = progress.WorkDoneProgressCancelNotification.HandlerSignature;
}
}

@@ -56,0 +38,0 @@ export interface ProtocolConnection {

@@ -42,3 +42,2 @@ /* --------------------------------------------------------------------------------------------

const callHierarchy = require("./protocol.callHierarchy.proposed");
const progress = require("./protocol.progress.proposed");
var Proposed;

@@ -63,15 +62,2 @@ (function (Proposed) {

})(CallHierarchyOutgoingCallsRequest = Proposed.CallHierarchyOutgoingCallsRequest || (Proposed.CallHierarchyOutgoingCallsRequest = {}));
// export type ProgressServerCapabilities = progress.ProgressServerCapabilities;
let WorkDoneProgress;
(function (WorkDoneProgress) {
WorkDoneProgress.type = progress.WorkDoneProgress.type;
})(WorkDoneProgress = Proposed.WorkDoneProgress || (Proposed.WorkDoneProgress = {}));
let WorkDoneProgressCreateRequest;
(function (WorkDoneProgressCreateRequest) {
WorkDoneProgressCreateRequest.type = progress.WorkDoneProgressCreateRequest.type;
})(WorkDoneProgressCreateRequest = Proposed.WorkDoneProgressCreateRequest || (Proposed.WorkDoneProgressCreateRequest = {}));
let WorkDoneProgressCancelNotification;
(function (WorkDoneProgressCancelNotification) {
WorkDoneProgressCancelNotification.type = progress.WorkDoneProgressCancelNotification.type;
})(WorkDoneProgressCancelNotification = Proposed.WorkDoneProgressCancelNotification || (Proposed.WorkDoneProgressCancelNotification = {}));
})(Proposed = exports.Proposed || (exports.Proposed = {}));

@@ -78,0 +64,0 @@ function createProtocolConnection(reader, writer, logger, strategy) {

4

lib/protocol.colorProvider.d.ts

@@ -13,6 +13,2 @@ import { RequestType, RequestHandler, ProgressType } from 'vscode-jsonrpc';

export interface DocumentColorOptions extends WorkDoneProgressOptions {
/**
* Code lens has a resolve provider as well.
*/
resolveProvider?: boolean;
}

@@ -19,0 +15,0 @@ export interface DocumentColorRegistrationOptions extends TextDocumentRegistrationOptions, StaticRegistrationOptions, DocumentColorOptions {

@@ -27,2 +27,6 @@ /* --------------------------------------------------------------------------------------------

exports.SelectionRangeRequest = protocol_selectionRange_1.SelectionRangeRequest;
const protocol_progress_1 = require("./protocol.progress");
exports.WorkDoneProgress = protocol_progress_1.WorkDoneProgress;
exports.WorkDoneProgressCreateRequest = protocol_progress_1.WorkDoneProgressCreateRequest;
exports.WorkDoneProgressCancelNotification = protocol_progress_1.WorkDoneProgressCancelNotification;
// @ts-ignore: to avoid inlining LocatioLink as dynamic import

@@ -29,0 +33,0 @@ let __noDynamicImport;

@@ -49,3 +49,3 @@ import { RequestType0, RequestHandler0, NotificationType, NotificationHandler, HandlerResult, CancellationToken } from 'vscode-jsonrpc';

* The name of the workspace folder. Used to refer to this
* workspace folder in thge user interface.
* workspace folder in the user interface.
*/

@@ -52,0 +52,0 @@ name: string;

{
"name": "vscode-languageserver-protocol",
"description": "VSCode Language Server Protocol implementation",
"version": "3.15.0-next.14",
"version": "3.15.0-next.15",
"author": "Microsoft Corporation",

@@ -18,4 +18,4 @@ "license": "MIT",

"dependencies": {
"vscode-jsonrpc": "^5.0.0-next.5",
"vscode-languageserver-types": "^3.15.0-next.9"
"vscode-jsonrpc": "^5.0.0-next.7",
"vscode-languageserver-types": "^3.15.0-next.10"
},

@@ -22,0 +22,0 @@ "scripts": {

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc