vscode-languageserver-protocol
Advanced tools
Comparing version 3.15.0-next.9 to 3.15.0-next.10
@@ -339,2 +339,21 @@ /* -------------------------------------------------------------------------------------------- | ||
/** | ||
* Represents reasons why a text document is saved. | ||
*/ | ||
var TextDocumentSaveReason; | ||
(function (TextDocumentSaveReason) { | ||
/** | ||
* Manually triggered, e.g. by the user pressing save, by starting debugging, | ||
* or by an API call. | ||
*/ | ||
TextDocumentSaveReason.Manual = 1; | ||
/** | ||
* Automatic after a delay. | ||
*/ | ||
TextDocumentSaveReason.AfterDelay = 2; | ||
/** | ||
* When the editor lost focus. | ||
*/ | ||
TextDocumentSaveReason.FocusOut = 3; | ||
})(TextDocumentSaveReason = exports.TextDocumentSaveReason || (exports.TextDocumentSaveReason = {})); | ||
/** | ||
* A document will save notification is sent from the client to the server before | ||
@@ -341,0 +360,0 @@ * the document is actually saved. |
{ | ||
"name": "vscode-languageserver-protocol", | ||
"description": "VSCode Language Server Protocol implementation", | ||
"version": "3.15.0-next.9", | ||
"version": "3.15.0-next.10", | ||
"author": "Microsoft Corporation", | ||
@@ -19,3 +19,3 @@ "license": "MIT", | ||
"vscode-jsonrpc": "^5.0.0-next.2", | ||
"vscode-languageserver-types": "^3.15.0-next.5" | ||
"vscode-languageserver-types": "^3.15.0-next.6" | ||
}, | ||
@@ -22,0 +22,0 @@ "scripts": { |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
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
3605946
4107