lsif-protocol
Advanced tools
Comparing version 0.5.0-next.2 to 0.5.0-next.3
@@ -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", |
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
33764
9
971