@difizen/libro-language-client 0.3.4 → 0.3.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -90,7 +90,13 @@ export var RevealOutputChannelOn = /*#__PURE__*/function (RevealOutputChannelOn)
90
90
  * An action to be performed when the connection is producing errors.
91
91
  */
92
92
  export var ErrorAction = /*#__PURE__*/function (ErrorAction) {
93
+ /**
94
+ * Continue running the server.
95
+ */
93
96
  ErrorAction[ErrorAction["Continue"] = 1] = "Continue";
97
+ /**
98
+ * Shutdown the server.
99
+ */
94
100
  ErrorAction[ErrorAction["Shutdown"] = 2] = "Shutdown";
95
101
  return ErrorAction;
96
102
  }({});
@@ -98,7 +104,13 @@ export var ErrorAction = /*#__PURE__*/function (ErrorAction) {
98
104
  * An action to be performed when the connection to a server got closed.
99
105
  */
100
106
  export var CloseAction = /*#__PURE__*/function (CloseAction) {
107
+ /**
108
+ * Don't restart the server. The connection stays closed.
109
+ */
101
110
  CloseAction[CloseAction["DoNotRestart"] = 1] = "DoNotRestart";
111
+ /**
112
+ * Restart the server.
113
+ */
102
114
  CloseAction[CloseAction["Restart"] = 2] = "Restart";
103
115
  return CloseAction;
104
116
  }({});
@@ -112,8 +124,17 @@ export var CloseAction = /*#__PURE__*/function (CloseAction) {
112
124
  * Signals in which state the language client is in.
113
125
  */
114
126
  export var State = /*#__PURE__*/function (State) {
127
+ /**
128
+ * The client is stopped or got never started.
129
+ */
115
130
  State[State["Stopped"] = 1] = "Stopped";
131
+ /**
132
+ * The client is starting but not ready yet.
133
+ */
116
134
  State[State["Starting"] = 3] = "Starting";
135
+ /**
136
+ * The client is running and ready.
137
+ */
117
138
  State[State["Running"] = 2] = "Running";
118
139
  return State;
119
140
  }({});
@@ -123,7 +144,15 @@ export var State = /*#__PURE__*/function (State) {
123
144
  */
124
145
 
125
146
  export var SuspendMode = /*#__PURE__*/function (SuspendMode) {
147
+ /**
148
+ * Don't allow suspend mode.
149
+ */
126
150
  SuspendMode["off"] = "off";
151
+ /**
152
+ * Support suspend mode even if not all
153
+ * registered providers have a corresponding
154
+ * activation listener.
155
+ */
127
156
  SuspendMode["on"] = "on";
128
157
  return SuspendMode;
129
158
  }({});
@@ -1663,9 +1663,21 @@ export var TextDocumentChangeReason = /*#__PURE__*/function (TextDocumentChangeR
1663
1663
  * These values match very carefully the values of `TrackedRangeStickiness`
1664
1664
  */
1665
1665
  export var DecorationRangeBehavior = /*#__PURE__*/function (DecorationRangeBehavior) {
1666
+ /**
1667
+ * TrackedRangeStickiness.AlwaysGrowsWhenTypingAtEdges
1668
+ */
1666
1669
  DecorationRangeBehavior[DecorationRangeBehavior["OpenOpen"] = 0] = "OpenOpen";
1670
+ /**
1671
+ * TrackedRangeStickiness.NeverGrowsWhenTypingAtEdges
1672
+ */
1667
1673
  DecorationRangeBehavior[DecorationRangeBehavior["ClosedClosed"] = 1] = "ClosedClosed";
1674
+ /**
1675
+ * TrackedRangeStickiness.GrowsOnlyWhenTypingBefore
1676
+ */
1668
1677
  DecorationRangeBehavior[DecorationRangeBehavior["OpenClosed"] = 2] = "OpenClosed";
1678
+ /**
1679
+ * TrackedRangeStickiness.GrowsOnlyWhenTypingAfter
1680
+ */
1669
1681
  DecorationRangeBehavior[DecorationRangeBehavior["ClosedOpen"] = 3] = "ClosedOpen";
1670
1682
  return DecorationRangeBehavior;
1671
1683
  }({});
@@ -2960,7 +2972,13 @@ export var FoldingRangeKind = /*#__PURE__*/function (FoldingRangeKind) {
2960
2972
 
2961
2973
  //#region Comment
2962
2974
  export var CommentThreadCollapsibleState = /*#__PURE__*/function (CommentThreadCollapsibleState) {
2975
+ /**
2976
+ * Determines an item is collapsed
2977
+ */
2963
2978
  CommentThreadCollapsibleState[CommentThreadCollapsibleState["Collapsed"] = 0] = "Collapsed";
2979
+ /**
2980
+ * Determines an item is expanded
2981
+ */
2964
2982
  CommentThreadCollapsibleState[CommentThreadCollapsibleState["Expanded"] = 1] = "Expanded";
2965
2983
  return CommentThreadCollapsibleState;
2966
2984
  }({});
@@ -3184,7 +3202,14 @@ export var SemanticTokensEdits = /*#__PURE__*/_createClass(function SemanticToke
3184
3202
 
3185
3203
  //#region debug
3186
3204
  export var DebugConsoleMode = /*#__PURE__*/function (DebugConsoleMode) {
3205
+ /**
3206
+ * Debug session should have a separate debug console.
3207
+ */
3187
3208
  DebugConsoleMode[DebugConsoleMode["Separate"] = 0] = "Separate";
3209
+ /**
3210
+ * Debug session should share debug console with its parent session.
3211
+ * This value has no effect for sessions which do not have a parent session.
3212
+ */
3188
3213
  DebugConsoleMode[DebugConsoleMode["MergeWithParent"] = 1] = "MergeWithParent";
3189
3214
  return DebugConsoleMode;
3190
3215
  }({});
@@ -3566,13 +3591,31 @@ export var NotebookVariablesRequestKind = /*#__PURE__*/function (NotebookVariabl
3566
3591
  //#region ExtensionContext
3567
3592
 
3568
3593
  export var ExtensionMode = /*#__PURE__*/function (ExtensionMode) {
3594
+ /**
3595
+ * The extension is installed normally (for example, from the marketplace
3596
+ * or VSIX) in VS Code.
3597
+ */
3569
3598
  ExtensionMode[ExtensionMode["Production"] = 1] = "Production";
3599
+ /**
3600
+ * The extension is running from an `--extensionDevelopmentPath` provided
3601
+ * when launching VS Code.
3602
+ */
3570
3603
  ExtensionMode[ExtensionMode["Development"] = 2] = "Development";
3604
+ /**
3605
+ * The extension is running from an `--extensionDevelopmentPath` and
3606
+ * the extension host is running unit tests.
3607
+ */
3571
3608
  ExtensionMode[ExtensionMode["Test"] = 3] = "Test";
3572
3609
  return ExtensionMode;
3573
3610
  }({});
3574
3611
  export var ExtensionRuntime = /*#__PURE__*/function (ExtensionRuntime) {
3612
+ /**
3613
+ * The extension is running in a NodeJS extension host. Runtime access to NodeJS APIs is available.
3614
+ */
3575
3615
  ExtensionRuntime[ExtensionRuntime["Node"] = 1] = "Node";
3616
+ /**
3617
+ * The extension is running in a Webworker extension host. Runtime access is limited to Webworker APIs.
3618
+ */
3576
3619
  ExtensionRuntime[ExtensionRuntime["Webworker"] = 2] = "Webworker";
3577
3620
  return ExtensionRuntime;
3578
3621
  }({});
@@ -115,9 +115,25 @@ export var TabInputCustom = /*#__PURE__*/_createClass(function TabInputCustom(ur
115
115
  this.viewType = viewType;
116
116
  });
117
117
  export var FileType = /*#__PURE__*/function (FileType) {
118
+ /**
119
+ * File is unknown (neither file, directory nor symbolic link).
120
+ */
118
121
  FileType[FileType["Unknown"] = 0] = "Unknown";
122
+ /**
123
+ * File is a normal file.
124
+ */
119
125
  FileType[FileType["File"] = 1] = "File";
126
+ /**
127
+ * File is a directory.
128
+ */
120
129
  FileType[FileType["Directory"] = 2] = "Directory";
130
+ /**
131
+ * File is a symbolic link.
132
+ *
133
+ * Note: even when the file is a symbolic link, you can test for
134
+ * `FileType.File` and `FileType.Directory` to know the type of
135
+ * the target the link points to.
136
+ */
121
137
  FileType[FileType["SymbolicLink"] = 64] = "SymbolicLink";
122
138
  return FileType;
123
139
  }({});
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@difizen/libro-language-client",
3
- "version": "0.3.4",
3
+ "version": "0.3.5",
4
4
  "description": "",
5
5
  "keywords": [
6
6
  "libro",
@@ -32,11 +32,11 @@
32
32
  "src"
33
33
  ],
34
34
  "dependencies": {
35
- "@difizen/libro-core": "^0.3.4",
36
- "@difizen/libro-code-editor": "^0.3.4",
37
- "@difizen/libro-kernel": "^0.3.4",
38
- "@difizen/libro-common": "^0.3.4",
39
- "@difizen/libro-lsp": "^0.3.4",
35
+ "@difizen/libro-core": "^0.3.5",
36
+ "@difizen/libro-code-editor": "^0.3.5",
37
+ "@difizen/libro-kernel": "^0.3.5",
38
+ "@difizen/libro-common": "^0.3.5",
39
+ "@difizen/libro-lsp": "^0.3.5",
40
40
  "@difizen/mana-app": "latest",
41
41
  "@difizen/mana-common": "latest",
42
42
  "uuid": "^9.0.0",