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

lsif-protocol

Package Overview
Dependencies
Maintainers
1
Versions
26
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

lsif-protocol - npm Package Compare versions

Comparing version 0.5.0-next.2 to 0.5.0-next.3

.eslintignore

22

lib/protocol.d.ts

@@ -63,3 +63,4 @@ import * as lsp from 'vscode-languageserver-protocol';

project = "project",
document = "document"
document = "document",
monikerAttach = "monikerAttach"
}

@@ -76,24 +77,19 @@ export interface Event extends V {

kind: EventKind;
}
export interface GroupEvent extends Event {
scope: EventScope.group;
/**
* The id of the group vertex.
* The id of the vertex the event is issued for.
*/
data: Id;
}
export interface GroupEvent extends Event {
scope: EventScope.group;
}
export interface ProjectEvent extends Event {
scope: EventScope.project;
/**
* The id of the project vertex.
*/
data: Id;
}
export interface DocumentEvent extends Event {
scope: EventScope.document;
/**
* The id of the document vertex.
*/
data: Id;
}
export interface MonikerAttachEvent extends Event {
scope: EventScope.monikerAttach;
}
/**

@@ -100,0 +96,0 @@ * A result set acts as a hub to share n LSP request results

@@ -54,2 +54,3 @@ "use strict";

EventScope["document"] = "document";
EventScope["monikerAttach"] = "monikerAttach";
})(EventScope = exports.EventScope || (exports.EventScope = {}));

@@ -56,0 +57,0 @@ /**

{
"name": "lsif-protocol",
"description": "Typescript implementation of the LSIF protocol",
"version": "0.5.0-next.2",
"version": "0.5.0-next.3",
"author": "Microsoft Corporation",

@@ -6,0 +6,0 @@ "license": "MIT",

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