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.4.2 to 0.4.3

16

lib/protocol.d.ts

@@ -265,4 +265,10 @@ import * as lsp from 'vscode-languageserver-protocol';

*/
projectRoot?: Uri;
projectRoot: Uri;
/**
* The string encoding used to compute line and character values in
* positions and ranges. Currently only 'utf-16' is support due to the
* limitations in LSP.
*/
positionEncoding: 'utf-16';
/**
* Information about the tool that created the dump

@@ -272,2 +278,3 @@ */

name: string;
version?: string;
args?: string[];

@@ -332,3 +339,8 @@ };

*/
export = "export"
export = "export",
/**
* The moniker represents a symbol that is local to a project (e.g. a local
* variable of a function, a class not visible outside the project, ...)
*/
local = "local"
}

@@ -335,0 +347,0 @@ export interface Moniker extends V {

@@ -76,2 +76,7 @@ "use strict";

MonikerKind["export"] = "export";
/**
* The moniker represents a symbol that is local to a project (e.g. a local
* variable of a function, a class not visible outside the project, ...)
*/
MonikerKind["local"] = "local";
})(MonikerKind = exports.MonikerKind || (exports.MonikerKind = {}));

@@ -78,0 +83,0 @@ var EdgeLabels;

2

package.json
{
"name": "lsif-protocol",
"description": "Typescript implementation of the LSIF protocol",
"version": "0.4.2",
"version": "0.4.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