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.6.0-next.6 to 0.6.0-next.7

19

lib/protocol.d.ts

@@ -228,3 +228,9 @@ import * as lsp from 'vscode-languageserver-protocol';

/**
* Additional tags for the definition.
*/
tags?: lsp.SymbolTag[];
/**
* Indicates if this symbol is deprecated.
*
* @deprecated Use tags instead.
*/

@@ -263,3 +269,9 @@ deprecated?: boolean;

/**
* Additional tags for the definition.
*/
tags?: lsp.SymbolTag[];
/**
* Indicates if this symbol is deprecated.
*
* @deprecated Use tags instead.
*/

@@ -689,4 +701,7 @@ deprecated?: boolean;

* A range based document symbol. This allows to reuse already
* emitted ranges with a `declaration` tag in a document symbol
* result.
* emitted ranges with a `declaration` or 'definition` tag in a
* document symbol result.
*
* When converting these into a LSP document symbol the range's
* text should be mapped to the document symbol's name.
*/

@@ -693,0 +708,0 @@ export interface RangeBasedDocumentSymbol {

@@ -41,2 +41,6 @@ "use strict";

Is.symbolKind = symbolKind;
function symbolTag(value) {
return typeof value === 'number' || value instanceof Number;
}
Is.symbolTag = symbolTag;
})(Is || (Is = {}));

@@ -418,2 +422,3 @@ var PropertyFlags;

kind: new Property(Is.symbolKind),
tags: new Property(Is.symbolTag, PropertyFlags.optional),
deprecated: new BooleanProperty(PropertyFlags.optional),

@@ -434,2 +439,3 @@ fullRange: new Property(lsp.Range.is),

kind: new Property(Is.symbolKind),
tags: new Property(Is.symbolTag, PropertyFlags.optional),
deprecated: new BooleanProperty(PropertyFlags.optional),

@@ -436,0 +442,0 @@ fullRange: new Property(lsp.Range.is),

2

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