lsif-protocol
Advanced tools
Comparing version 0.4.2 to 0.4.3
@@ -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; |
{ | ||
"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", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
31261
855