-
Notifications
You must be signed in to change notification settings - Fork 2
/
lsp.ml
1029 lines (846 loc) · 31.3 KB
/
lsp.ml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(**
* Copyright (c) 2016, Facebook, Inc.
* All rights reserved.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the "hack" directory of this source tree.
*
*)
(**
* This file is an OCaml representation of the Language Server Protocol
* https://github.com/Microsoft/language-server-protocol/blob/master/protocol.md
* based on the current v3.
*
* Changes to make it more natural in OCaml:
* - We don't represent the common base types of Requests/Errors/Notifications
* because base types don't naturally mix with abstract data types, and
* because code for these things is done more naturally at the JSON layer
* - We avoid option types where we can. The idea is to follow the internet
* "robustness" rule of being liberal in what we accept, conservative in
* what we emit: if we're parsing a message and it lacks a field, and if
* the spec tells us how to interpret absence, then we do that interpretation
* at the JSON->LSP parsing level (so long as the interpretation is lossless).
* On the emitting side, we might as well emit all fields.
* - For every request, like Initialize or workspace/Symbol, we've invented
* "Initialize.response = (Initialize.result, Initialize.error) Result"
* or "Symbol.response = (Symbol.result, Error.error) Result" to show
* the two possible return types from this request. Note that each different
* request can have its own custom error type, although most don't.
* - Most datatypes go in modules since there are so many name-clashes in
* the protocol and OCaml doesn't like name-clashes. Only exceptions are
* the really primitive types like location and documentUri.
* The few places where we still had to rename fields to avoid OCaml name
* clashes I've noted in the comments with the word "wire" to indicate the
* over-the-wire form of the name.
* - Names have been translated from jsonConvention into ocaml convention
* only where necessary, e.g. because ocaml uses lowercase for types.
* - The spec has space for extra fields like "experimental". It obviously
* doesn't make sense to encode them in a type system. I've omitted them
* entirely.
*)
module SMap = Map.Make(String)
type lsp_id =
| NumberId of int
| StringId of string
type documentUri = string
(* A position is between two characters like an 'insert' cursor in a editor *)
type position = {
line: int; (* line position in a document [zero-based] *)
character: int; (* character offset on a line in a document [zero-based] *)
}
(* A range is comparable to a selection in an editor *)
type range = {
start: position; (* the range's start position *)
end_: position; (* the range's end position [exclusive] *)
}
(* Represents a location inside a resource, such as a line inside a text file *)
module Location = struct
type t = {
uri: documentUri;
range: range;
}
end
(* Represents a location inside a resource which also wants to display a
friendly name to the user. *)
module DefinitionLocation = struct
type t = {
location: Location.t;
title: string option;
}
end
(* markedString can be used to render human readable text. It is either a
* markdown string or a code-block that provides a language and a code snippet.
* Note that markdown strings will be sanitized by the client - including
* escaping html *)
type markedString =
| MarkedString of string
| MarkedCode of string * string (* lang, value *)
(* Represents a reference to a command. Provides a title which will be used to
* represent a command in the UI. Commands are identitifed using a string
* identifier and the protocol currently doesn't specify a set of well known
* commands. So executing a command requires some tool extension code. *)
module Command = struct
type t = {
title: string; (* title of the command, like `save` *)
command: string; (* the identifier of the actual command handler *)
arguments: Hh_json.json list; (* wire: it can be omitted *)
}
end
(* A textual edit applicable to a text document. If n textEdits are applied
to a text document all text edits describe changes to the initial document
version. Execution wise text edits should applied from the bottom to the
top of the text document. Overlapping text edits are not supported. *)
module TextEdit = struct
type t = {
range: range; (* to insert text, use a range where start = end *)
newText: string; (* for delete operations, use an empty string *)
}
end
(* Text documents are identified using a URI. *)
module TextDocumentIdentifier = struct
type t = {
uri: documentUri; (* the text document's URI *)
}
end
(* An identifier to denote a specific version of a text document. *)
module VersionedTextDocumentIdentifier = struct
type t = {
uri: documentUri; (* the text document's URI *)
version: int; (* the version number of this document *)
}
end
(* Describes textual changes on a single text document. The text document is
referred to as a VersionedTextDocumentIdentifier to allow clients to check
the text document version before an edit is applied. *)
module TextDocumentEdit = struct
type t = {
textDocument: VersionedTextDocumentIdentifier.t;
edits: TextEdit.t list;
}
end
(* A workspace edit represents changes to many resources managed in the
workspace. A workspace edit consists of a mapping from a URI to an
array of TextEdits to be applied to the document with that URI. *)
module WorkspaceEdit = struct
type t = {
changes: TextEdit.t list SMap.t; (* holds changes to existing docs *)
}
end
(* An item to transfer a text document from the client to the server. The
version number strictly increases after each change, including undo/redo. *)
module TextDocumentItem = struct
type t = {
uri: documentUri; (* the text document's URI *)
languageId: string; (* the text document's language identifier *)
version: int; (* the version of the document *)
text: string; (* the content of the opened text document *)
}
end
(* A parameter literal used in requests to pass a text document and a position
inside that document. *)
module TextDocumentPositionParams = struct
type t = {
textDocument: TextDocumentIdentifier.t; (* the text document *)
position: position; (* the position inside the text document *)
}
end
(* A document filter denotes a document through properties like language,
schema or pattern. E.g. language:"typescript",scheme:"file"
or language:"json",pattern:"**/package.json" *)
module DocumentFilter = struct
type t = {
language: string option; (* a language id, like "typescript" *)
scheme: string option; (* a uri scheme, like "file" or "untitled" *)
pattern: string option; (* a glob pattern, like "*.{ts,js}" *)
}
end
(* A document selector is the combination of one or many document filters. *)
module DocumentSelector = struct
type t = DocumentFilter.t list
end
(* Represents information about programming constructs like variables etc. *)
module SymbolInformation = struct
type t = {
name: string;
kind: symbolKind;
location: Location.t; (* the span of the symbol including its contents *)
containerName: string option; (* the symbol containing this symbol *)
}
and symbolKind =
| File (* 1 *)
| Module (* 2 *)
| Namespace (* 3 *)
| Package (* 4 *)
| Class (* 5 *)
| Method (* 6 *)
| Property (* 7 *)
| Field (* 8 *)
| Constructor (* 9 *)
| Enum (* 10 *)
| Interface (* 11 *)
| Function (* 12 *)
| Variable (* 13 *)
| Constant (* 14 *)
| String (* 15 *)
| Number (* 16 *)
| Boolean (* 17 *)
| Array (* 18 *)
end
(* For showing messages (not diagnostics) in the user interface. *)
module MessageType = struct
type t =
| ErrorMessage (* 1 *)
| WarningMessage (* 2 *)
| InfoMessage (* 3 *)
| LogMessage (* 4 *)
end
(* Cancellation notification, method="$/cancelRequest" *)
module CancelRequest = struct
type params = cancelParams
and cancelParams = {
id: lsp_id; (* the request id to cancel *)
}
end
(* Initialize request, method="initialize" *)
module Initialize = struct
type params = {
processId: int option; (* pid of parent process *)
rootPath: string option; (* deprecated *)
rootUri: documentUri option; (* the root URI of the workspace *)
initializationOptions: initializationOptions;
client_capabilities: client_capabilities; (* "capabilities" over wire *)
trace: trace; (* the initial trace setting, default="off" *)
}
and result = {
server_capabilities: server_capabilities; (* "capabilities" over wire *)
}
and errorData = {
retry: bool; (* should client retry the initialize request *)
}
and trace =
| Off
| Messages
| Verbose
(* Following initialization options are unfortunately a mix of Hack
* and Flow. We should find a way to separate them.
* Anyway, they're all optional in the source json, but we pick
* a default if necessary while parsing. *)
and initializationOptions = {
useTextEditAutocomplete: bool; (* only supported for Hack so far *)
liveSyntaxErrors: bool; (* implicitly true for Hack; supported in Flow *)
}
and client_capabilities = {
workspace: workspaceClientCapabilities;
textDocument: textDocumentClientCapabilities;
window: windowClientCapabilities;
telemetry: telemetryClientCapabilities;
(* omitted: experimental *)
}
and workspaceClientCapabilities = {
applyEdit: bool; (* client supports appling batch edits *)
workspaceEdit: workspaceEdit;
(* omitted: dynamic-registration fields *)
}
and workspaceEdit = {
documentChanges: bool; (* client supports versioned doc changes *)
}
and textDocumentClientCapabilities = {
synchronization: synchronization;
completion: completion; (* textDocument/completion *)
(* omitted: dynamic-registration fields *)
}
(* synchronization capabilities say what messages the client is capable
* of sending, should be be so asked by the server.
* We use the "can_" prefix for OCaml naming reasons; it's absent in LSP *)
and synchronization = {
can_willSave: bool; (* client can send textDocument/willSave *)
can_willSaveWaitUntil: bool; (* textDoc.../willSaveWaitUntil *)
can_didSave: bool; (* textDocument/didSave *)
}
and completion = {
completionItem: completionItem;
}
and completionItem = {
snippetSupport: bool; (* client can do snippets as insert text *)
}
and windowClientCapabilities = {
status: bool; (* Nuclide-specific: client supports window/showStatusRequest *)
progress: bool; (* Nuclide-specific: client supports window/progress *)
actionRequired: bool; (* Nuclide-specific: client supports window/actionRequired *)
}
and telemetryClientCapabilities = {
connectionStatus: bool; (* Nuclide-specific: client supports telemetry/connectionStatus *)
}
(* What capabilities the server provides *)
and server_capabilities = {
textDocumentSync: textDocumentSyncOptions; (* how to sync *)
hoverProvider: bool;
completionProvider: completionOptions option;
signatureHelpProvider: signatureHelpOptions option;
definitionProvider: bool;
referencesProvider: bool;
documentHighlightProvider: bool;
documentSymbolProvider: bool; (* ie. document outline *)
workspaceSymbolProvider: bool; (* ie. find-symbol-in-project *)
codeActionProvider: bool;
codeLensProvider: codeLensOptions option;
documentFormattingProvider: bool;
documentRangeFormattingProvider: bool;
documentOnTypeFormattingProvider: documentOnTypeFormattingOptions option;
renameProvider: bool;
documentLinkProvider: documentLinkOptions option;
executeCommandProvider: executeCommandOptions option;
typeCoverageProvider: bool; (* Nuclide-specific feature *)
rageProvider: bool;
(* omitted: experimental *)
}
and completionOptions = {
resolveProvider: bool; (* server resolves extra info on demand *)
completion_triggerCharacters: string list; (* wire "triggerCharacters" *)
}
and signatureHelpOptions = {
sighelp_triggerCharacters: string list; (* wire "triggerCharacters" *)
}
and codeLensOptions = {
codelens_resolveProvider: bool; (* wire "resolveProvider" *)
}
and documentOnTypeFormattingOptions = {
firstTriggerCharacter: string; (* e.g. "}" *)
moreTriggerCharacter: string list;
}
and documentLinkOptions = {
doclink_resolveProvider: bool; (* wire "resolveProvider" *)
}
and executeCommandOptions = {
commands: string list; (* the commands to be executed on the server *)
}
(* text document sync options say what messages the server requests the
* client to send. We use the "want_" prefix for OCaml naming reasons;
* this prefix is absent in LSP. *)
and textDocumentSyncOptions = {
want_openClose: bool; (* textDocument/didOpen+didClose *)
want_change: textDocumentSyncKind;
want_willSave: bool; (* textDocument/willSave *)
want_willSaveWaitUntil: bool; (* textDoc.../willSaveWaitUntil *)
want_didSave: saveOptions option; (* textDocument/didSave *)
}
and textDocumentSyncKind =
| NoSync (* 0 *) (* docs should not be synced at all. Wire "None" *)
| FullSync (* 1 *) (* synced by always sending full content. Wire "Full" *)
| IncrementalSync (* 2 *) (* full only on open. Wire "Incremental" *)
and saveOptions = {
includeText: bool; (* the client should include content on save *)
}
end
(* Shutdown request, method="shutdown" *)
module Shutdown = struct
end
(* Exit notification, method="exit" *)
module Exit = struct
end
(* Rage request, method="telemetry/rage" *)
module Rage = struct
type result = rageItem list
and rageItem = {
title: string option;
data: string;
}
end
(* Hover request, method="textDocument/hover" *)
module Hover = struct
type params = TextDocumentPositionParams.t
and result = hoverResult option
and hoverResult = {
contents: markedString list; (* wire: either a single one or an array *)
range: range option;
}
end
(* PublishDiagnostics notification, method="textDocument/PublishDiagnostics" *)
module PublishDiagnostics = struct
type params = publishDiagnosticsParams
and publishDiagnosticsParams = {
uri: documentUri;
diagnostics: diagnostic list;
}
and diagnostic = {
range: range; (* the range at which the message applies *)
severity: diagnosticSeverity option; (* if omitted, client decides *)
code: diagnosticCode; (* the diagnostic's code. *)
source: string option; (* human-readable string, eg. typescript/lint *)
message: string; (* the diagnostic's message *)
relatedInformation: diagnosticRelatedInformation list;
relatedLocations: relatedLocation list; (* legacy FB extension *)
}
and diagnosticCode =
| IntCode of int
| StringCode of string
| NoCode
and diagnosticSeverity =
| Error (* 1 *)
| Warning (* 2 *)
| Information (* 3 *)
| Hint (* 4 *)
and diagnosticRelatedInformation = {
relatedLocation: Location.t; (* wire: just "location" *)
relatedMessage: string; (* wire: just "message" *)
}
(* legacy FB extension *)
and relatedLocation = diagnosticRelatedInformation
end
(* DidOpenTextDocument notification, method="textDocument/didOpen" *)
module DidOpen = struct
type params = didOpenTextDocumentParams
and didOpenTextDocumentParams = {
textDocument: TextDocumentItem.t; (* the document that was opened *)
}
end
(* DidCloseTextDocument notification, method="textDocument/didClose" *)
module DidClose = struct
type params = didCloseTextDocumentParams
and didCloseTextDocumentParams = {
textDocument: TextDocumentIdentifier.t; (* the doc that was closed *)
}
end
(* DidSaveTextDocument notification, method="textDocument/didSave" *)
module DidSave = struct
type params = didSaveTextDocumentParams
and didSaveTextDocumentParams = {
textDocument: TextDocumentIdentifier.t; (* the doc that was saved *)
text: string option; (* content when saved; depends on includeText *)
}
end
(* DidChangeTextDocument notification, method="textDocument/didChange" *)
module DidChange = struct
type params = didChangeTextDocumentParams
and didChangeTextDocumentParams = {
textDocument: VersionedTextDocumentIdentifier.t;
contentChanges: textDocumentContentChangeEvent list;
}
and textDocumentContentChangeEvent = {
range: range option; (* the range of the document that changed *)
rangeLength: int option; (* the length that got replaced *)
text: string; (* the new text of the range/document *)
}
end
(* Goto Definition request, method="textDocument/definition" *)
module Definition = struct
type params = TextDocumentPositionParams.t
and result = DefinitionLocation.t list (* wire: either a single one or an array *)
end
(* Completion request, method="textDocument/completion" *)
module Completion = struct
type params = completionParams
and completionParams = {
loc: TextDocumentPositionParams.t;
context: completionContext option;
}
and completionContext = {
triggerKind: completionTriggerKind;
}
and completionTriggerKind =
| Invoked (* 1 *)
| TriggerCharacter (* 2 *)
| TriggerForIncompleteCompletions (* 3 *)
and result = completionList (* wire: can also be 'completionItem list' *)
and completionList = {
isIncomplete: bool; (* further typing should result in recomputing *)
items: completionItem list;
}
and completionItem = {
label: string; (* the label in the UI *)
kind: completionItemKind option; (* tells editor which icon to use *)
detail: string option; (* human-readable string like type/symbol info *)
inlineDetail: string option; (* nuclide-specific, right column *)
itemType: string option; (* nuclide-specific, left column *)
documentation: string option; (* human-readable doc-comment *)
sortText: string option; (* used for sorting; if absent, uses label *)
filterText: string option; (* used for filtering; if absent, uses label *)
insertText: string option; (* used for inserting; if absent, uses label *)
insertTextFormat: insertTextFormat option;
textEdits: TextEdit.t list; (* wire: split into hd and tl *)
command: Command.t option; (* if present, is executed after completion *)
data: Hh_json.json option;
}
and completionItemKind =
| Text (* 1 *)
| Method (* 2 *)
| Function (* 3 *)
| Constructor (* 4 *)
| Field (* 5 *)
| Variable (* 6 *)
| Class (* 7 *)
| Interface (* 8 *)
| Module (* 9 *)
| Property (* 10 *)
| Unit (* 11 *)
| Value (* 12 *)
| Enum (* 13 *)
| Keyword (* 14 *)
| Snippet (* 15 *)
| Color (* 16 *)
| File (* 17 *)
| Reference (* 18 *)
(** Keep this in sync with `int_of_completionItemKind`. *)
and insertTextFormat =
| PlainText (* 1 *) (* the insertText/textEdits are just plain strings *)
| SnippetFormat (* 2 *) (* wire: just "Snippet" *)
(** Once we get better PPX support we can use [@@deriving enum].
Keep in sync with completionItemKind_of_int_opt. *)
let int_of_completionItemKind = function
| Text -> 1
| Method -> 2
| Function -> 3
| Constructor -> 4
| Field -> 5
| Variable -> 6
| Class -> 7
| Interface -> 8
| Module -> 9
| Property -> 10
| Unit -> 11
| Value -> 12
| Enum -> 13
| Keyword -> 14
| Snippet -> 15
| Color -> 16
| File -> 17
| Reference -> 18
(** Once we get better PPX support we can use [@@deriving enum].
Keep in sync with int_of_completionItemKind. *)
let completionItemKind_of_int_opt = function
| 1 -> Some Text
| 2 -> Some Method
| 3 -> Some Function
| 4 -> Some Constructor
| 5 -> Some Field
| 6 -> Some Variable
| 7 -> Some Class
| 8 -> Some Interface
| 9 -> Some Module
| 10 -> Some Property
| 11 -> Some Unit
| 12 -> Some Value
| 13 -> Some Enum
| 14 -> Some Keyword
| 15 -> Some Snippet
| 16 -> Some Color
| 17 -> Some File
| 18 -> Some Reference
| _ -> None
(** Once we get better PPX support we can use [@@deriving enum].
Keep in sync with insertFormat_of_int_opt. *)
let int_of_insertFormat = function
| PlainText -> 1
| SnippetFormat -> 2
(** Once we get better PPX support we can use [@@deriving enum].
Keep in sync with int_of_insertFormat. *)
let insertFormat_of_int_opt = function
| 1 -> Some PlainText
| 2 -> Some SnippetFormat
| _ -> None
end
(* Completion Item Resolve request, method="completionItem/resolve" *)
module CompletionItemResolve = struct
type params = Completion.completionItem
and result = Completion.completionItem
end
(* Workspace Symbols request, method="workspace/symbol" *)
module WorkspaceSymbol = struct
type params = workspaceSymbolParams
and result = SymbolInformation.t list
and workspaceSymbolParams = {
query: string; (* a non-empty query string *)
}
end
(* Document Symbols request, method="textDocument/documentSymbols" *)
module DocumentSymbol = struct
type params = documentSymbolParams
and result = SymbolInformation.t list
and documentSymbolParams = {
textDocument: TextDocumentIdentifier.t;
}
end
(* Find References request, method="textDocument/references" *)
module FindReferences = struct
type params = referenceParams
and result = Location.t list
and referenceParams = {
loc: TextDocumentPositionParams.t; (* wire: loc's members are part of referenceParams *)
context: referenceContext;
}
and referenceContext = {
includeDeclaration: bool; (* include declaration of current symbol *)
includeIndirectReferences: bool;
}
end
(* Document Highlights request, method="textDocument/documentHighlight" *)
module DocumentHighlight = struct
type params = TextDocumentPositionParams.t
and result = documentHighlight list
and documentHighlight = {
range: range; (* the range this highlight applies to *)
kind: documentHighlightKind option;
}
and documentHighlightKind =
| Text (* 1 *) (* a textual occurrence *)
| Read (* 2 *) (* read-access of a symbol, like reading a variable *)
| Write (* 3 *) (* write-access of a symbol, like writing a variable *)
end
(* Type Coverage request, method="textDocument/typeCoverage" *)
(* THIS IS A NUCLIDE-SPECIFIC EXTENSION TO LSP. *)
module TypeCoverage = struct
type params = typeCoverageParams
and result = {
coveredPercent: int;
uncoveredRanges: uncoveredRange list;
defaultMessage: string;
}
and typeCoverageParams = {
textDocument: TextDocumentIdentifier.t;
}
and uncoveredRange = {
range: range;
message: string option;
}
end
(* Document Formatting request, method="textDocument/formatting" *)
module DocumentFormatting = struct
type params = documentFormattingParams
and result = TextEdit.t list
and documentFormattingParams = {
textDocument: TextDocumentIdentifier.t;
options: formattingOptions;
}
and formattingOptions = {
tabSize: int; (* size of a tab in spaces *)
insertSpaces: bool; (* prefer spaces over tabs *)
(* omitted: signature for further properties *)
}
end
(* Document Range Formatting request, method="textDocument/rangeFormatting" *)
module DocumentRangeFormatting = struct
type params = documentRangeFormattingParams
and result = TextEdit.t list
and documentRangeFormattingParams = {
textDocument: TextDocumentIdentifier.t;
range: range;
options: DocumentFormatting.formattingOptions;
}
end
(* Document On Type Formatting req., method="textDocument/onTypeFormatting" *)
module DocumentOnTypeFormatting = struct
type params = documentOnTypeFormattingParams
and result = TextEdit.t list
and documentOnTypeFormattingParams = {
textDocument: TextDocumentIdentifier.t;
position: position; (* the position at which this request was sent *)
ch: string; (* the character that has been typed *)
options: DocumentFormatting.formattingOptions;
}
end
(* Document Signature Help request, method="textDocument/signatureHelp" *)
module SignatureHelp = struct
type params = TextDocumentPositionParams.t
and result = t option
and t = {
signatures: signature_information list;
activeSignature: int;
activeParameter: int;
}
and signature_information = {
siginfo_label: string;
siginfo_documentation: string option;
parameters: parameter_information list;
}
and parameter_information = {
parinfo_label: string;
parinfo_documentation: string option;
}
end
(* Workspace Rename request, method="textDocument/rename" *)
module Rename = struct
type params = renameParams
and result = WorkspaceEdit.t
and renameParams = {
textDocument: TextDocumentIdentifier.t;
position: position;
newName: string;
}
end
(* LogMessage notification, method="window/logMessage" *)
module LogMessage = struct
type params = logMessageParams
and logMessageParams = {
type_: MessageType.t;
message: string;
}
end
(* ShowMessage notification, method="window/showMessage" *)
module ShowMessage = struct
type params = showMessageParams
and showMessageParams = {
type_: MessageType.t;
message: string;
}
end
(* ShowMessage request, method="window/showMessageRequest" *)
module ShowMessageRequest = struct
type t = Present of {id: lsp_id;} | Absent
and params = showMessageRequestParams
and result = messageActionItem option
and showMessageRequestParams = {
type_: MessageType.t;
message: string;
actions: messageActionItem list;
}
and messageActionItem = {
title: string;
}
end
(* ShowStatus request, method="window/showStatus" *)
module ShowStatus = struct
type params = showStatusParams
and result = ShowMessageRequest.messageActionItem option
and showStatusParams = {
request: ShowMessageRequest.showMessageRequestParams;
progress: int option;
total: int option;
shortMessage: string option;
}
end
(* Progress notification, method="window/progress" *)
module Progress = struct
type t = Present of {id: int; label: string;} | Absent
and params = progressParams
and progressParams = {
(* LSP progress notifications have a lifetime that starts with their 1st *)
(* window/progress update message and ends with an update message with *)
(* label = None. They use an ID number (not JsonRPC id) to associate *)
(* multiple messages to a single lifetime stream. *)
id: int;
label: string option;
}
end
(* ActionRequired notification, method="window/actionRequired" *)
module ActionRequired = struct
type t = Present of {id: int; label: string;} | Absent
and params = actionRequiredParams
and actionRequiredParams = {
(* See progressParams.id for an explanation of this field. *)
id: int;
label: string option;
}
end
(* ConnectionStatus notification, method="telemetry/connectionStatus" *)
module ConnectionStatus = struct
type params = connectionStatusParams
and connectionStatusParams = {
isConnected: bool;
}
end
(* Module for dynamic view, method="workspace/toggleTypeCoverage" *)
module ToggleTypeCoverage = struct
type params = toggleTypeCoverageParams
and toggleTypeCoverageParams = {
toggle: bool;
}
end
(* ErrorResponse *)
module Error = struct
type t = {code: int; message: string; data: Hh_json.json option}
(* Legacy: some code uses exceptions instead of Error.t. *)
(* Be careful with that since if you unmarshal one then you can't pattern-match it. *)
(* Defined by JSON-RPC. *)
exception Parse of string (* -32700 *)
exception InvalidRequest of string (* -32600 *)
exception MethodNotFound of string (* -32601 *)
exception InvalidParams of string (* -32602 *)
exception InternalError of string (* -32603 *)
exception ServerErrorStart of string * Initialize.errorData (* -32099 *)
exception ServerErrorEnd of string (* -32000 *)
exception ServerNotInitialized of string (* -32002 *)
exception Unknown of string (* -32001 *)
(* Defined by the protocol. *)
exception RequestCancelled of string (* -32800 *)
end
(**
* Here are gathered-up ADTs for all the messages we handle
*)
type lsp_request =
| InitializeRequest of Initialize.params
| ShutdownRequest
| HoverRequest of Hover.params
| DefinitionRequest of Definition.params
| CompletionRequest of Completion.params
| CompletionItemResolveRequest of CompletionItemResolve.params
| WorkspaceSymbolRequest of WorkspaceSymbol.params
| DocumentSymbolRequest of DocumentSymbol.params
| FindReferencesRequest of FindReferences.params
| DocumentHighlightRequest of DocumentHighlight.params
| TypeCoverageRequest of TypeCoverage.params
| DocumentFormattingRequest of DocumentFormatting.params
| DocumentRangeFormattingRequest of DocumentRangeFormatting.params
| DocumentOnTypeFormattingRequest of DocumentOnTypeFormatting.params
| ShowMessageRequestRequest of ShowMessageRequest.params
| ShowStatusRequest of ShowStatus.params
| RageRequest
| RenameRequest of Rename.params
| UnknownRequest of string * Hh_json.json option
type lsp_result =
| InitializeResult of Initialize.result
| ShutdownResult
| HoverResult of Hover.result
| DefinitionResult of Definition.result
| CompletionResult of Completion.result
| CompletionItemResolveResult of CompletionItemResolve.result
| WorkspaceSymbolResult of WorkspaceSymbol.result
| DocumentSymbolResult of DocumentSymbol.result
| FindReferencesResult of FindReferences.result
| DocumentHighlightResult of DocumentHighlight.result
| TypeCoverageResult of TypeCoverage.result
| DocumentFormattingResult of DocumentFormatting.result
| DocumentRangeFormattingResult of DocumentRangeFormatting.result
| DocumentOnTypeFormattingResult of DocumentOnTypeFormatting.result
| ShowMessageRequestResult of ShowMessageRequest.result
| ShowStatusResult of ShowStatus.result
| RageResult of Rage.result
| RenameResult of Rename.result
| ErrorResult of Error.t * string (* the string is a stacktrace *)
type lsp_notification =
| ExitNotification
| CancelRequestNotification of CancelRequest.params
| PublishDiagnosticsNotification of PublishDiagnostics.params
| DidOpenNotification of DidOpen.params
| DidCloseNotification of DidClose.params
| DidSaveNotification of DidSave.params
| DidChangeNotification of DidChange.params
| LogMessageNotification of LogMessage.params
| TelemetryNotification of LogMessage.params (* LSP allows 'any' but we only send these *)
| ShowMessageNotification of ShowMessage.params
| ProgressNotification of Progress.params
| ActionRequiredNotification of ActionRequired.params
| ConnectionStatusNotification of ConnectionStatus.params
| InitializedNotification
| SetTraceNotification (* $/setTraceNotification *)