@difizen/libro-lsp 0.1.2

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.
Files changed (104) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +0 -0
  3. package/es/adapters/adapter.d.ts +255 -0
  4. package/es/adapters/adapter.d.ts.map +1 -0
  5. package/es/adapters/adapter.js +647 -0
  6. package/es/adapters/notebook-adapter.d.ts +150 -0
  7. package/es/adapters/notebook-adapter.d.ts.map +1 -0
  8. package/es/adapters/notebook-adapter.js +588 -0
  9. package/es/adapters/status-message.d.ts +48 -0
  10. package/es/adapters/status-message.d.ts.map +1 -0
  11. package/es/adapters/status-message.js +110 -0
  12. package/es/connection-manager.d.ts +199 -0
  13. package/es/connection-manager.d.ts.map +1 -0
  14. package/es/connection-manager.js +685 -0
  15. package/es/connection.d.ts +149 -0
  16. package/es/connection.d.ts.map +1 -0
  17. package/es/connection.js +591 -0
  18. package/es/extractors/index.d.ts +4 -0
  19. package/es/extractors/index.d.ts.map +1 -0
  20. package/es/extractors/index.js +6 -0
  21. package/es/extractors/manager.d.ts +31 -0
  22. package/es/extractors/manager.d.ts.map +1 -0
  23. package/es/extractors/manager.js +90 -0
  24. package/es/extractors/text-extractor.d.ts +56 -0
  25. package/es/extractors/text-extractor.d.ts.map +1 -0
  26. package/es/extractors/text-extractor.js +72 -0
  27. package/es/extractors/types.d.ts +68 -0
  28. package/es/extractors/types.d.ts.map +1 -0
  29. package/es/extractors/types.js +1 -0
  30. package/es/feature.d.ts +29 -0
  31. package/es/feature.d.ts.map +1 -0
  32. package/es/feature.js +85 -0
  33. package/es/index.d.ts +19 -0
  34. package/es/index.d.ts.map +1 -0
  35. package/es/index.js +21 -0
  36. package/es/lsp-app-contribution.d.ts +19 -0
  37. package/es/lsp-app-contribution.d.ts.map +1 -0
  38. package/es/lsp-app-contribution.js +155 -0
  39. package/es/lsp-protocol.d.ts +10 -0
  40. package/es/lsp-protocol.d.ts.map +1 -0
  41. package/es/lsp-protocol.js +1 -0
  42. package/es/lsp.d.ts +136 -0
  43. package/es/lsp.d.ts.map +1 -0
  44. package/es/lsp.js +141 -0
  45. package/es/manager.d.ts +142 -0
  46. package/es/manager.d.ts.map +1 -0
  47. package/es/manager.js +423 -0
  48. package/es/module.d.ts +3 -0
  49. package/es/module.d.ts.map +1 -0
  50. package/es/module.js +21 -0
  51. package/es/plugin.d.ts +56 -0
  52. package/es/plugin.d.ts.map +1 -0
  53. package/es/plugin.js +0 -0
  54. package/es/positioning.d.ts +66 -0
  55. package/es/positioning.d.ts.map +1 -0
  56. package/es/positioning.js +96 -0
  57. package/es/schema.d.ts +240 -0
  58. package/es/schema.d.ts.map +1 -0
  59. package/es/schema.js +0 -0
  60. package/es/tokens.d.ts +677 -0
  61. package/es/tokens.d.ts.map +1 -0
  62. package/es/tokens.js +183 -0
  63. package/es/utils.d.ts +33 -0
  64. package/es/utils.d.ts.map +1 -0
  65. package/es/utils.js +168 -0
  66. package/es/virtual/document.d.ts +546 -0
  67. package/es/virtual/document.d.ts.map +1 -0
  68. package/es/virtual/document.js +1263 -0
  69. package/es/ws-connection/server-capability-registration.d.ts +19 -0
  70. package/es/ws-connection/server-capability-registration.d.ts.map +1 -0
  71. package/es/ws-connection/server-capability-registration.js +51 -0
  72. package/es/ws-connection/types.d.ts +76 -0
  73. package/es/ws-connection/types.d.ts.map +1 -0
  74. package/es/ws-connection/types.js +1 -0
  75. package/es/ws-connection/ws-connection.d.ts +105 -0
  76. package/es/ws-connection/ws-connection.d.ts.map +1 -0
  77. package/es/ws-connection/ws-connection.js +301 -0
  78. package/package.json +67 -0
  79. package/src/adapters/adapter.ts +611 -0
  80. package/src/adapters/notebook-adapter.ts +463 -0
  81. package/src/adapters/status-message.ts +93 -0
  82. package/src/connection-manager.ts +626 -0
  83. package/src/connection.ts +570 -0
  84. package/src/extractors/index.ts +6 -0
  85. package/src/extractors/manager.ts +82 -0
  86. package/src/extractors/text-extractor.ts +94 -0
  87. package/src/extractors/types.ts +78 -0
  88. package/src/feature.ts +60 -0
  89. package/src/index.spec.ts +10 -0
  90. package/src/index.ts +21 -0
  91. package/src/lsp-app-contribution.ts +83 -0
  92. package/src/lsp-protocol.ts +10 -0
  93. package/src/lsp.ts +160 -0
  94. package/src/manager.ts +358 -0
  95. package/src/module.ts +32 -0
  96. package/src/plugin.ts +62 -0
  97. package/src/positioning.ts +121 -0
  98. package/src/schema.ts +249 -0
  99. package/src/tokens.ts +843 -0
  100. package/src/utils.ts +109 -0
  101. package/src/virtual/document.ts +1250 -0
  102. package/src/ws-connection/server-capability-registration.ts +77 -0
  103. package/src/ws-connection/types.ts +102 -0
  104. package/src/ws-connection/ws-connection.ts +320 -0
@@ -0,0 +1,96 @@
1
+ function _createForOfIteratorHelper(o, allowArrayLike) { var it = typeof Symbol !== "undefined" && o[Symbol.iterator] || o["@@iterator"]; if (!it) { if (Array.isArray(o) || (it = _unsupportedIterableToArray(o)) || allowArrayLike && o && typeof o.length === "number") { if (it) o = it; var i = 0; var F = function F() {}; return { s: F, n: function n() { if (i >= o.length) return { done: true }; return { done: false, value: o[i++] }; }, e: function e(_e) { throw _e; }, f: F }; } throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } var normalCompletion = true, didErr = false, err; return { s: function s() { it = it.call(o); }, n: function n() { var step = it.next(); normalCompletion = step.done; return step; }, e: function e(_e2) { didErr = true; err = _e2; }, f: function f() { try { if (!normalCompletion && it.return != null) it.return(); } finally { if (didErr) throw err; } } }; }
2
+ function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }
3
+ function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) arr2[i] = arr[i]; return arr2; }
4
+ /* eslint-disable no-param-reassign */
5
+ // Copyright (c) Jupyter Development Team.
6
+ // Distributed under the terms of the Modified BSD License.
7
+
8
+ /**
9
+ * CM5 position interface.
10
+ *
11
+ * TODO: Migrate to offset-only mode once `CodeEditor.IPosition`
12
+ * is migrated.
13
+ */
14
+
15
+ /**
16
+ * is_* attributes are there only to enforce strict interface type checking
17
+ */
18
+
19
+ /**
20
+ * Compare two `Position` variable.
21
+ *
22
+ */
23
+ export function isEqual(self, other) {
24
+ return other && self.line === other.line && self.ch === other.ch;
25
+ }
26
+
27
+ /**
28
+ * Given a list of line and an offset from the start, compute the corresponding
29
+ * position in form of line and column number
30
+ *
31
+ * @param offset - number of spaces counted from the start of first line
32
+ * @param lines - list of lines to compute the position
33
+ * @return - the position of cursor
34
+ */
35
+ export function positionAtOffset(offset, lines) {
36
+ var line = 0;
37
+ var column = 0;
38
+ var _iterator = _createForOfIteratorHelper(lines),
39
+ _step;
40
+ try {
41
+ for (_iterator.s(); !(_step = _iterator.n()).done;) {
42
+ var textLine = _step.value;
43
+ // each line has a new line symbol which is accounted for in offset!
44
+ if (textLine.length + 1 <= offset) {
45
+ offset -= textLine.length + 1;
46
+ line += 1;
47
+ } else {
48
+ column = offset;
49
+ break;
50
+ }
51
+ }
52
+ } catch (err) {
53
+ _iterator.e(err);
54
+ } finally {
55
+ _iterator.f();
56
+ }
57
+ return {
58
+ line: line,
59
+ column: column
60
+ };
61
+ }
62
+
63
+ /**
64
+ * Given a list of line and position in form of line and column number,
65
+ * compute the offset from the start of first line.
66
+ * @param position - postion of cursor
67
+ * @param lines - list of lines to compute the position
68
+ * @param linesIncludeBreaks - should count the line break as space?
69
+ * return - offset number
70
+ */
71
+ export function offsetAtPosition(position, lines) {
72
+ var linesIncludeBreaks = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : false;
73
+ var breakIncrement = linesIncludeBreaks ? 0 : 1;
74
+ var offset = 0;
75
+ for (var i = 0; i < lines.length; i++) {
76
+ var textLine = lines[i];
77
+ if (position.line > i) {
78
+ offset += textLine.length + breakIncrement;
79
+ } else {
80
+ offset += position.column;
81
+ break;
82
+ }
83
+ }
84
+ return offset;
85
+ }
86
+ export var ProtocolCoordinates;
87
+ (function (_ProtocolCoordinates) {
88
+ function isWithinRange(position, range) {
89
+ var line = position.line,
90
+ character = position.character;
91
+ return line >= range.start.line && line <= range.end.line && (
92
+ // need to be non-overlapping see https://github.com/jupyter-lsp/jupyterlab-lsp/issues/628
93
+ line !== range.start.line || character > range.start.character) && (line !== range.end.line || character <= range.end.character);
94
+ }
95
+ _ProtocolCoordinates.isWithinRange = isWithinRange;
96
+ })(ProtocolCoordinates || (ProtocolCoordinates = {}));
package/es/schema.d.ts ADDED
@@ -0,0 +1,240 @@
1
+ /**
2
+ * This file was automatically generated by json-schema-to-typescript.
3
+ * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
4
+ * and run jlpm build:schema to regenerate this file.
5
+ */
6
+ /**
7
+ * which version of the spec this implements
8
+ *
9
+ * This interface was referenced by `JupyterLspServerStatusResponse`'s JSON-Schema
10
+ * via the `definition` "current-version".
11
+ */
12
+ export type SpecSchemaVersion = 2;
13
+ /**
14
+ * This interface was referenced by `JupyterLspServerStatusResponse`'s JSON-Schema
15
+ * via the `definition` "env-var".
16
+ *
17
+ * This interface was referenced by `EnvironmentVariables`'s JSON-Schema definition
18
+ * via the `patternProperty` "[^ ]+".
19
+ */
20
+ export type AnEnvironmentVariableMayContainPythonStringTemplateEvaluatedAgainstTheExistingEnvironmentEG$HOME = string;
21
+ /**
22
+ * the install commands or description for installing the language server
23
+ *
24
+ * This interface was referenced by `Installation`'s JSON-Schema definition
25
+ * via the `patternProperty` ".+".
26
+ *
27
+ * This interface was referenced by `JupyterLspServerStatusResponse`'s JSON-Schema
28
+ * via the `definition` "install-help".
29
+ *
30
+ * This interface was referenced by `Installation1`'s JSON-Schema definition
31
+ * via the `patternProperty` ".+".
32
+ */
33
+ export type InstallHelp = string;
34
+ /**
35
+ * languages supported by this Language Server
36
+ *
37
+ * This interface was referenced by `JupyterLspServerStatusResponse`'s JSON-Schema
38
+ * via the `definition` "language-list".
39
+ */
40
+ export type LanguageList = [string, ...string[]];
41
+ /**
42
+ * a description of a language server that could be started
43
+ *
44
+ * This interface was referenced by `JupyterLspServerStatusResponse`'s JSON-Schema
45
+ * via the `definition` "language-server-spec".
46
+ *
47
+ * This interface was referenced by `LanguageServerSpecsMap`'s JSON-Schema definition
48
+ * via the `patternProperty` ".*".
49
+ */
50
+ export type LanguageServerSpec = ServerSpecProperties & {
51
+ [k: string]: any;
52
+ };
53
+ /**
54
+ * the arguments to start the language server normally
55
+ */
56
+ export type LaunchArguments = string[];
57
+ /**
58
+ * the arguments to start the language server with more verbose output
59
+ */
60
+ export type DebugArguments = string[];
61
+ /**
62
+ * name shown in the UI
63
+ */
64
+ export type DisplayName = string;
65
+ /**
66
+ * known extensions that can contribute to the Language Server's features
67
+ */
68
+ export type Extensions = LanguageServerExtension[];
69
+ /**
70
+ * list of MIME types supported by the language server
71
+ */
72
+ export type MIMETypes = [string, ...string[]];
73
+ /**
74
+ * information on troubleshooting the installation or auto-detection of the language server
75
+ */
76
+ export type Troubleshooting = string;
77
+ /**
78
+ * a date/time that might not have been recorded
79
+ *
80
+ * This interface was referenced by `JupyterLspServerStatusResponse`'s JSON-Schema
81
+ * via the `definition` "nullable-date-time".
82
+ */
83
+ export type NullableDateTime = string | null;
84
+ /**
85
+ * the count of currently-connected WebSocket handlers
86
+ */
87
+ export type HandlerCount = number;
88
+ /**
89
+ * a list of tokens for running a command
90
+ *
91
+ * This interface was referenced by `JupyterLspServerStatusResponse`'s JSON-Schema
92
+ * via the `definition` "shell-args".
93
+ */
94
+ export type ShellArgs = string[];
95
+ /**
96
+ * describes the current state of (potentially) running language servers
97
+ */
98
+ export interface JupyterLspServerStatusResponse {
99
+ [k: string]: any;
100
+ }
101
+ /**
102
+ * a JSON schema to configure the Language Server or extension behavior from the client
103
+ *
104
+ * This interface was referenced by `JupyterLspServerStatusResponse`'s JSON-Schema
105
+ * via the `definition` "client-config-schema".
106
+ */
107
+ export interface ClientConfigurationSchema {
108
+ [k: string]: any;
109
+ }
110
+ /**
111
+ * a list of installation approaches keyed by package manager, e.g. pip, npm, yarn, apt
112
+ *
113
+ * This interface was referenced by `JupyterLspServerStatusResponse`'s JSON-Schema
114
+ * via the `definition` "install-bundle".
115
+ */
116
+ export interface Installation {
117
+ [k: string]: InstallHelp;
118
+ }
119
+ /**
120
+ * an extension which can extend the functionality of the language server and client
121
+ *
122
+ * This interface was referenced by `JupyterLspServerStatusResponse`'s JSON-Schema
123
+ * via the `definition` "language-server-extension".
124
+ */
125
+ export interface LanguageServerExtension {
126
+ config_schema?: ClientConfigurationSchema;
127
+ display_name?: string;
128
+ install?: Installation;
129
+ [k: string]: any;
130
+ }
131
+ /**
132
+ * all properties that might be required to start and/or describe a Language Server
133
+ *
134
+ * This interface was referenced by `JupyterLspServerStatusResponse`'s JSON-Schema
135
+ * via the `definition` "partial-language-server-spec".
136
+ */
137
+ export interface ServerSpecProperties {
138
+ argv?: LaunchArguments;
139
+ config_schema?: ClientConfigurationSchema1;
140
+ debug_argv?: DebugArguments;
141
+ display_name?: DisplayName;
142
+ env?: EnvironmentVariables;
143
+ extend?: Extensions;
144
+ /**
145
+ * Whether to write un-saved documents to disk in a transient `.virtual_documents` directory. Well-behaved language servers that work against in-memory files should set this to `false`, which will become the default in the future.
146
+ */
147
+ requires_documents_on_disk?: boolean;
148
+ install?: Installation1;
149
+ languages?: LanguageList;
150
+ mime_types?: MIMETypes;
151
+ troubleshoot?: Troubleshooting;
152
+ urls?: URLs;
153
+ version?: SpecSchemaVersion;
154
+ workspace_configuration?: WorkspaceConfiguration;
155
+ [k: string]: any;
156
+ }
157
+ /**
158
+ * a JSON schema to configure the Language Server behavior from the client
159
+ */
160
+ export interface ClientConfigurationSchema1 {
161
+ [k: string]: any;
162
+ }
163
+ /**
164
+ * additional environment variables to set when starting the language server
165
+ */
166
+ export interface EnvironmentVariables {
167
+ [k: string]: AnEnvironmentVariableMayContainPythonStringTemplateEvaluatedAgainstTheExistingEnvironmentEG$HOME;
168
+ }
169
+ /**
170
+ * a list of installation approaches keyed by package manager, e.g. pip, npm, yarn, apt
171
+ */
172
+ export interface Installation1 {
173
+ [k: string]: InstallHelp;
174
+ }
175
+ /**
176
+ * a collection of urls keyed by type, e.g. home, issues
177
+ */
178
+ export interface URLs {
179
+ [k: string]: string;
180
+ }
181
+ /**
182
+ * default values to include in the client `workspace/configuration` reply (also known as `serverSettings`). User may override these defaults. The keys should be fully qualified (dotted) names of settings (nested specification is not supported).
183
+ */
184
+ export interface WorkspaceConfiguration {
185
+ [k: string]: any;
186
+ }
187
+ /**
188
+ * This interface was referenced by `JupyterLspServerStatusResponse`'s JSON-Schema
189
+ * via the `definition` "servers-response".
190
+ */
191
+ export interface ServersResponse {
192
+ sessions: Sessions;
193
+ specs?: LanguageServerSpecsMap;
194
+ version: SpecSchemaVersion;
195
+ [k: string]: any;
196
+ }
197
+ /**
198
+ * named server sessions that are, could be, or were running
199
+ *
200
+ * This interface was referenced by `JupyterLspServerStatusResponse`'s JSON-Schema
201
+ * via the `definition` "sessions".
202
+ */
203
+ export interface Sessions {
204
+ [k: string]: LanguageServerSession;
205
+ }
206
+ /**
207
+ * a language server session
208
+ *
209
+ * This interface was referenced by `Sessions`'s JSON-Schema definition
210
+ * via the `patternProperty` ".*".
211
+ *
212
+ * This interface was referenced by `JupyterLspServerStatusResponse`'s JSON-Schema
213
+ * via the `definition` "session".
214
+ */
215
+ export interface LanguageServerSession {
216
+ handler_count: HandlerCount;
217
+ /**
218
+ * date-time of last seen message from a WebSocket handler
219
+ */
220
+ last_handler_message_at: string | null;
221
+ /**
222
+ * date-time of last seen message from the language server
223
+ */
224
+ last_server_message_at: string | null;
225
+ spec: ServerSpecProperties;
226
+ /**
227
+ * a string describing the current state of the server
228
+ */
229
+ status: 'not_started' | 'starting' | 'started' | 'stopping' | 'stopped';
230
+ }
231
+ /**
232
+ * a set of language servers keyed by their implementation name
233
+ *
234
+ * This interface was referenced by `JupyterLspServerStatusResponse`'s JSON-Schema
235
+ * via the `definition` "language-server-specs-implementation-map".
236
+ */
237
+ export interface LanguageServerSpecsMap {
238
+ [k: string]: LanguageServerSpec;
239
+ }
240
+ //# sourceMappingURL=schema.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../src/schema.ts"],"names":[],"mappings":"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"}
package/es/schema.js ADDED
File without changes