.gitignore added
[dotfiles/.git] / .config / coc / extensions / coc-go-data / tools / pkg / mod / golang.org / x / tools / gopls@v0.6.9 / doc / design / design.md
1 # `gopls` design documentation
2
3 ## Goals
4
5 * `gopls` should **become the default editor backend** for the major editors used by Go programmers, fully supported by the Go team.
6 * `gopls` will be a **full implementation of LSP**, as described in the [LSP specification], to standardize as many of its features as possible.
7 * `gopls` will be **clean and extensible** so that it can encompass additional features in the future, allowing Go tooling to become best in class once more.
8 * `gopls` will **support alternate build systems and file layouts**, allowing Go development to be simpler and more powerful in any environment.
9
10 ## Context
11
12 While Go has a number of excellent and useful command-line tools that enhance the developer experience, it has become clear that integrating these tools with IDEs can pose challenges.
13
14 Support of these tools has relied on the goodwill of community members, and they have been put under a large burden of support at times as the language, toolchain and environments change. As a result many tools have ceased to work, have had support problems, or become confusing with forks and replacements, or provided an experience that is not as good as it could be.
15 See the section below on [existing solutions](#existing-solutions) for more problems and details.
16
17 This is fine for tools used occasionally, but for core IDE features, this is not acceptable.
18 Autocompletion, jump to definition, formatting, and other such features should always work, as they are key for Go development.
19
20 The Go team will create an editor backend that works in any build system.
21 It will also be able to improve upon the latency of Go tools, since each tool will no longer have to individually run the type-checker on each invocation, instead there will be a long-running process and data can be shared between the definitions, completions, diagnostics, and other features.
22
23 By taking ownership of these tools and packaging them together in the form of gopls, the Go team will ensure that the Go development experience isn’t unnecessarily complicated for Go users.
24 Having one editor backend will simplify the lives of Go developers, the Go team, and the maintainers of Go editor plugins.
25
26 See Rebecca's excellent GopherCon keynote [talk] and [slides] for some more context.
27
28 ## Non-Goals
29
30 * Command line speed
31
32   Although gopls will have a command line mode, it will be optimized for long running and not command responsiveness, as such it may not be the right tool for things like CI systems.
33   For such cases there will have to be an alternate tool using the same underlying libraries for consistency.
34
35 * Low memory environments
36
37   In order to do a good job of processing large projects with very low latencies gopls will be holding a lot of information in memory.
38   It is presumed that developers are normally working on systems with significant RAM and this will not be a problem.
39   In general this is upheld by the large memory usage of existing IDE solutions (like IntelliJ)
40
41 * Syntax highlighting
42
43   At the moment there is no editor that delegates this functionality to a separate binary, and no standard way of doing it.
44
45 ## Existing solutions
46
47 Every year the Go team conducts a survey, asking developers about their experiences with the language.
48
49 One question that is asked is “How do you feel about your editor?”.
50
51 The responses told a very negative story. Some categorized quotes:
52
53 * Setup
54   * "Hard to install and configure"
55   * "Inadequate documentation"
56 * Performance
57   * "Performance is very poor"
58   * "Pretty slow in large projects"
59 * Reliability
60   * "Features work one day, but not the next"
61   * "Tooling is not updated with new language features"
62
63 Each editor has its own plugin that shells out to a variety of tools, many of which break with new Go releases or because they are no longer maintained.
64
65 The individual tools each have to do the work to understand the code and all its transitive dependencies.
66
67 Each feature is a different tool, with a different set of patterns for its command line, a different way to accept input and parse output, a different way of specifying source code locations.
68 To support its existing feature set, VSCode installed 24 different command line tools, many of which have options or forks to configure. When looking at the set of tools that needed to be migrated to modules, across all the editors, there were 63 separate tools.
69
70 All these tools need to understand the code, and they use the same standard libraries to do it. Those libraries are optimized for these kinds of tools, but even so processing that much code takes a lot of time time. Almost none of the tools are capable of returning results within 100ms.
71 As developers type in their editor, multiple of these features need to activate, which means they are not just paying the cost once, but many times. The overall effect is an editing experience that feels sluggish, and features that are either not enabled or sometimes produce results that appear so slowly they are no longer useful when they arrive. This is a problem that increases with the size of the code base, which means it is getting worse over time, and is especially bad for the kinds of large code bases companies are dealing with as they use Go for more major tasks.
72
73 ## Requirements
74
75 ### Complete feature set
76
77 For gopls to be considered a success it has to implement the full feature set discussed [below](#Features).
78 This is the set of features that users need in order to feel as productive as they were with the tooling it is replacing. It does not include every feature of previous implementations, there are some features that are almost never used that should be dropped (like guru's pointer analysis) and some other features that do not easily fit and will have to be worked around (replacing the save hook/linter).
79
80 ### Equivalent or better experience
81
82 For all of those features, the user experience must match or exceed the current one available in all editors.
83 This is an easy statement to make, but a hard one to validate or measure. Many of the possible measures fail to capture the experience.
84
85 For instance, if an attempt was made to measure the latency of a jump to definition call, the results would be fairly consistent from the old godef tool. From the gopls implementation there may be a much larger range of latencies, with the best being orders of magnitude faster, and the worse slightly worse, because gopls attempts to do far more work, but manages to cache it across calls.
86
87 Or for a completion call, it might be slower but produce a better first match such that users accept it more often, resulting in an overall better experience.
88
89 For the most part this has to rely on user reports. If users are refusing to switch because the experience is not better, it is clearly not done, if they are switching but most people are complaining, there are probably enough areas that are better to make the switch compelling but other areas which are worse. If most people are switching and either staying silent or being positive, it is probably done. When writing tools, the user is all that matters.
90
91 ### Solid community of contributors
92
93 The scope and scale of the problem gopls is trying to solve is untenable for the core Go team, it is going to require a strong community to make it all happen.
94
95 This implies the code must be easy to contribute to, and easy for many developers to work on in parallel. The functionality needs to be well decoupled, and have a thorough testing story.
96
97 ### Latencies that fall within user tolerance
98
99 There has been a lot of research on acceptable latencies for user actions.
100 <!-- TODO: research links -->
101 The main result that affects gopls is that feedback in direct response to continuous user actions needs to be under 100ms to be imperceptible, and anything above 200ms aggravates the user.
102 This means in general the aim has to be <100ms for anything that happens as the developer types.
103 There will always be cases where gopls fails to meet this deadline, and there needs to be ways to make the user experience okay in those cases, but in general the point of this deadline is to inform the basic architecture design, any solution that cannot theoretically meet this goal in the long term is the wrong answer.
104
105 ### Easy to configure
106
107 Developers are very particular, and have very differing desires in their coding experience. gopls is going to have to support a significant amount of flexibility, in order to meet those desires.
108 The default settings however with no configuration at all must be the one that is best experience for most users, and where possible the features must be flexible without configuration so that the client can easily make the choices about treatment without changing its communication with gopls.
109
110 ## Difficulties
111
112 ### Volume of data
113
114 <!-- TODO: project sizes -->
115 * Small:
116 * Medium:
117 * Large:
118 * Corporate mono-repo: Much much bigger
119
120 Parsing and type checking large amounts of code is quite expensive, and the converted forms use a lot of space. As gopls has to keep updating this information while the developer types, it needs to manage how it caches the converted forms very carefully to balance memory use vs speed.
121
122 ### Cache invalidation
123
124 The basic unit of operation for the type checking is the package, but the basic unit of operation for an editor is the file.
125 gopls needs to be able to map files to packages efficiently, so that when files change it knows which packages need to be updated (along with any other packages that transitively depended on them).
126 This is made especially difficult by the fact that changing the content of a file can modify which packages it is considered part of (either by changing the package declaration or the build tags), a file can be in more than one package, and changes can be made to files without using the editor, in which case it will not notify us of the changes.
127
128 ### Inappropriate core functionality
129
130 The base libraries for Go (things like [go/token], [go/ast] and [go/types]) are all designed for compiler-like applications.
131 They tend to worry more about throughput than memory use, they have structures that are intended to grow and then be thrown away at program exit, and they are not designed to keep going in the presence of errors in the source they are handling.
132 They also have no abilities to do incremental changes.
133
134 Making a long running service work well with those libraries is a very large challenge, but writing new libraries would be far more work, and cause a significant long term cost as both sets of libraries would have to be maintained. Right now it is more important to get a working tool into the hands of users. In the long term this decision may have to be revisited, new low level libraries may be the only way to keep pushing the capabilities forwards.
135
136 ### Build system capabilities
137
138 gopls is supposed to be build system agnostic, but it must use the build system to discover how files map to packages. When it tries to do so, even when the functionality is the same, the costs (in time, CPU and memory) are very different, and can significantly impact the user experience. Designing how gopls interacts with the build system to try to minimize or hide these differences is hard.
139
140 ### Build tags
141
142 The build tag system in Go is quite powerful, and has many use cases. Source files can exclude themselves using powerful boolean logic on the set of active tags.
143 It is however designed for specifying the set of active tags on the command line, and the libraries are all designed to cope with only one valid combination at a time. There is also no way to work out the set of valid combinations.
144
145 Type checking a file requires knowledge of all the other files in the same package, and that set of files is modified by the build tags. The set of exported identifiers of a package is also affected by which files are in the package, and thus its build tags.
146
147 This means that even for files or packages that have no build tag controls it is not possible to produce correct results without knowing the set of build tags to consider.
148 This makes it very hard to produce useful results when viewing a file.
149
150 ### Features not supported by LSP
151
152 There are some things it would be good to be able to do that do not fit easily into the existing LSP protocol.
153 For instance, displaying control flow information, automatic struct tags, complex refactoring...
154
155 Each feature will have to be considered carefully, and either propose a change to LSP, or add a way to have gopls specific extensions to the protocol that are still easy to use in all the editor plugins.
156
157 To avoid these at the start, only core LSP features will be implemented, as they are sufficient to meet the baseline requirements anyway, but the potential features need to be kept in mind in the core architecture.
158
159 ### Distribution
160
161 Making sure that users are using the right version of gopls is going to be a problem. Each editor plugin is probably going to install the tools in its own way, some will choose to install it system wide, some will keep their own copy.
162
163 Because it is a brand new tool, it will be changing rapidly. If users are not informed they are on an old version they will be experiencing problems that have already been fixed, which is worse for them, and then probably reporting them, which wastes time for the gopls team. There needs to be a mechanism for gopls to check if is up to date, and a recommended way to install an up to date version.
164
165 ### Debugging user problems
166
167 gopls is essentially a very stateful long running server on the developer's machine. Its basic operation is affected by many things, from the users environment to the contents of the local build cache. The data it is operating on is often a confidential code base that cannot be shared.
168 All of these things make it hard for users to report a bug usefully, or create a minimal reproduction.
169
170 There needs to be easy ways for users to report what information they can, and ways to attempt to reproduce problems without their entire state. This is also needed to produce regression tests.
171
172 ## Basic design decisions
173
174 There are some fundamental architecture decisions that affect much of the rest of the design of the tool, making fundamental trade offs that impact the user experience.
175
176 ### Process lifetime: *managed by the editor*
177
178 Processing a large code base to fully type check and then analyze it within the latency requirements is not feasible, and is one of the primary problems with the existing solutions. This remains true even if the computed information was cached on disk, as running analyzers and type checkers ends up requiring the full AST of all files in the dependency graph.
179 It is theoretically possible to do better, but only with a major re-write of the existing parsing and type checking libraries, something that is not feasible at this time.
180
181 This implies that gopls should be a long running process, that is able to cache and pre-calculate results in memory so that when a request arrives it can produce the answer much faster.
182
183 It could run as a daemon on the user's machine, but there are a lot of issues with managing a daemon. It may well be the right choice in the long term, and it should be allowed for in the fundamental architecture design, but to start with it will instead have a process that lasts as long as the editor that starts it, and that can easily be restarted.
184
185 ### Caching: *in memory*
186
187 Persistent disk caches are very expensive to maintain, and require solving a lot of extra problems.
188 Although building the information required is expensive compared to the latencies required of the requests, it is fairly minor compared to the startup times of an editor, so it is expected that rebuilding the information when gopls is restarted will be acceptable.
189
190 The advantage gained from this is that gopls becomes stateless across restarts which means if it has issues or gets its state confused, a simple restart will often fix the problem.
191 It also means that when users report problems, the entire state of the on disk cache is not needed to diagnose and reproduce the issue.
192
193 ### Communication: *stdin/stdout JSON*
194
195 The LSP specification defines the JSON messages that are normally used, but it does not define how those message should be sent, and there are implementations of the LSP that do not use JSON (for instance, Protocol buffers are an option).
196
197 The constraints on gopls are that it must be easy to integrate into *every editor* on *all operating systems*, and that it should not have large external dependencies.
198
199 JSON is part of the Go standard library, and is also the native language of LSP, so it makes the most sense. By far the best supported communication mechanism is the standard input and output of a process, and the common client implementations all have ways of using [JSON rpc 2] in this mode.  There were no complete and low dependency implementations of this protocol in Go, but it is a fairly small protocol on top of the JSON library that can be implemented with a moderate effort, and would be a generally useful library to have anyway.
200
201 In the future it is expected to run in separated client server mode, so writing it in a way that could use sockets instead of stdin/stdout from the start was the best way to make sure it remained possible. It was also a huge debugging aid to be able to run the gopls server by hand and watch/debug it outside the editor.
202
203 ### Running other tools: *no*
204
205 <!--- TODO: subprocess discuss --->
206
207 ## Features
208
209 <!--TODO(rstambler): Generate a file that lists all of the supported features.-->
210
211 There is a set of features that gopls needs to expose to be a comprehensive IDE solution.
212 The following is the minimum set of features, along with their existing solutions and how they should map to the LSP.
213
214 ### Introspection
215
216 Introspection features tell developers information about their code while they work. They do not make or suggest changes.
217
218 ---
219 Diagnostics | Static analysis results of the code, including compilation and lint errors
220 ----------- | ---
221 Requires    | Full go/analysis run, which needs full AST, type and SSA information
222 LSP         | [`textDocument/publishDiagnostics`]
223 Previous    | `go build`, `go vet`, `golint`, [errcheck], [staticcheck] <!-- TODO: and all the rest -->
224 |           | This is one of the most important IDE features, allowing fast turn around without having to run compilers and checkers in the shell. Often used to power problem lists, gutter markers and squiggle underlines in the IDE. <br/> There is some complicated design work to do in order to let users customize the set of checks being run, preferably without having to recompile the main LSP binary.
225
226 ---
227 Hover    | Information about the code under the cursor.
228 -------- | ---
229 Requires | AST and type information for the file and all dependencies
230 LSP      | [`textDocument/hover`]
231 Previous | [godoc], [gogetdoc]
232 |        | Used when reading code to display information known to the compiler but not always obvious from the code. For instance it may return the types of identifiers, or the documentation.
233
234 ---
235 Signature help | Function parameter information and documentation
236 -------------- | ---
237 Requires       | AST and type information for the file and all dependencies
238 LSP            | [`textDocument/signatureHelp`]
239 Previous       | [gogetdoc]
240 |              | As a function call is being typed into code, it is helpful to know the parameters of that call to enable the developer to call it correctly.
241
242 ### Navigation
243
244 Navigation features are designed to make it easier for a developer to find their way round a code base.
245
246 ---
247 Definition | Select an identifier, and jump to the code where that identifier was defined.
248 ---------- | ---
249 Requires   | Full type information for file and all dependencies
250 LSP        | [`textDocument/declaration`]
251 |          | [`textDocument/definition`]
252 |          | [`textDocument/typeDefinition`]
253 Previous   | [godef] |
254 |          | Asking the editor to open the place where a symbol was defined is one of the most commonly used code navigation tools inside an IDE when available. It is especially valuable when exploring an unfamiliar code base.<br/>Due to a limitation of the compiler output, it is not possible to use the binary data for this task (specifically it does not know column information) and thus it must parse from source.
255
256 ---
257 Implementation | Reports the types that implement an interface
258 -------------- | ---
259 Requires       | Full workspace type knowledge
260 LSP            | [`textDocument/implementation`]
261 Previous       | [impl]
262 |              | This feature is hard to scale up to large code bases, and is going to take thought to get right. It may be feasible to implemented a more limited form in the meantime.
263
264 ---
265 Document symbols | Provides the set of top level symbols in the current file.
266 ---------------- | ---
267 Requires         | AST of the current file only
268 LSP              | [`textDocument/documentSymbol`]
269 Previous         | [go-outline], [go-symbols]
270 |                | Used to drive things like outline mode.
271
272 ---
273 References | Find all references to the symbol under the cursor.
274 ---------- | ---
275 Requires   | AST and type information for the **reverse** transitive closure
276 LSP        | [`textDocument/references`]
277 Previous   | [guru]
278 |          | This requires knowledge of every package that could possible depend on any packages the current file is part of. In the past this has been implemented either by global knowledge, which does not scale, or by specifying a "scope" which confused users to the point where they just did not use the tools. gopls is probably going to need a more powerful solution in the long term, but to start with automatically limiting the scope may produce acceptable results. This would probably be the module if known, or some sensible parent directory otherwise.
279
280 ---
281 Folding  | Report logical hierarchies of blocks
282 -------- | ---
283 Requires | AST of the current file only
284 LSP      | [`textDocument/foldingRange`]
285 Previous | [go-outline]
286 |        | This is normally used to provide expand and collapse behavior in editors.
287
288 ---
289 Selection | Report regions of logical selection around the cursor
290 --------- | ---
291 Requires  | AST of the current file only
292 LSP       | [`textDocument/selectionRange`]
293 Previous  | [guru]
294 |         | Used in editor features like expand selection.
295
296
297 ### Edit assistance
298
299 These features suggest or apply edits to the code for the user, including refactoring features, for which there are many potential use cases.
300 Refactoring is one of the places where Go tools could potentially be very strong, but have not been so far, and thus there is huge potential for improvements in the developer experience.
301 There is not yet a clear understanding of the kinds of refactoring people need or how they should express them however, and there are weaknesses in the LSP protocol around this.
302 This means it may be much more of a research project.
303
304
305 ---
306 Format   | Fix the formatting of the file
307 -------- | ---
308 Requires | AST of current file
309 LSP      | [`textDocument/formatting`]
310 |        | [`textDocument/rangeFormatting`]
311 |        | [`textDocument/onTypeFormatting`]
312 Previous | [gofmt], [goimports], [goreturns]
313 |        | It will use the standard format package. <br/> Current limitations are that it does not work on malformed code. It may need some very careful changes to the formatter to allow for formatting an invalid AST or changes to force the AST to a valid mode. These changes would improve range and file mode as well, but are basically vital to onTypeFormatting
314
315 ---
316 Imports  | Rewrite the imports block automatically to match the symbols used.
317 -------- | ---
318 Requires | AST of the current file and full symbol knowledge for all candidate packages.
319 LSP      | [`textDocument/codeAction`]
320 Previous | [goimports], [goreturns]
321 |        | This needs knowledge of packages that are not yet in use, and the ability to find those packages by name. <br/> It also needs exported symbol information for all the packages it discovers. <br/> It should be implemented using the standard imports package, but there may need to be exposed a more fine grained API than just a file rewrite for some of the interactions.
322
323 ---
324 Autocompletion | Makes suggestions to complete the entity currently being typed.
325 -------------- | ---
326 Requires       | AST and type information for the file and all dependencies<br/> Also full exported symbol knowledge for all packages.
327 LSP            | [`textDocument/completion`]
328 |              | [`completionItem/resolve`]
329 Previous       | [gocode]
330 |              | Autocomplete is one of the most complicated features, and the more it knows the better its suggestions can be. For instance it can autocomplete into packages that are not yet being imported if it has their public symbols. It can make better suggestions of options if it knows what kind of program you are writing. It can suggest better arguments if it knows how you normally call a function. It can suggest entire patterns of code if it knows they are common. Unlike many other features, which have a specific task, and once it is doing that task the feature is done, autocomplete will never be finished. Balancing and improving both the candidates and how they are ranked will be a research problem for a long time to come.
331
332 ---
333 Rename   | Rename an identifier
334 -------- | ---
335 Requires | AST and type information for the **reverse** transitive closure
336 LSP      | [`textDocument/rename`]
337 |        | [`textDocument/prepareRename`]
338 Previous | [gorename]
339 |        | This uses the same information that find references does, with all the same problems and limitations. It is slightly worse because the changes it suggests make it intolerant of incorrect results. It is also dangerous using it to change the public API of a package.
340
341 ---
342 Suggested fixes | Suggestions that can be manually or automatically accepted to change the code
343 --------------- | ---
344 Requires        | Full go/analysis run, which needs full AST, type and SSA information
345 LSP             | [`textDocument/codeAction`]
346 Previous        | N/A
347 |               | This is a brand new feature powered by the new go/analysis engine, and it should allow a huge amount of automated refactoring.
348
349 [LSP specification]: https://microsoft.github.io/language-server-protocol/specifications/specification-3-14/
350 [talk]: TODO
351 [slides]: https://github.com/gophercon/2019-talks/blob/master/RebeccaStambler-GoPleaseStopBreakingMyEditor/slides.pdf "Go, please stop breaking my editor!"
352 [JSON rpc 2]: https://www.jsonrpc.org/specification
353
354 [errcheck]: https://github.com/kisielk/errcheck
355 [go-outline]: https://github.com/lukehoban/go-outline
356 [go-symbols]: https://github.com/acroca/go-symbols
357 [gocode]: https://github.com/stamblerre/gocode
358 [godef]: https://github.com/rogpeppe/godef
359 [godoc]: https://golang.org/cmd/godoc
360 [gofmt]: https://golang.org/cmd/gofmt
361 [gogetdoc]: https://github.com/zmb3/gogetdoc
362 [goimports]: https://pkg.go.dev/golang.org/x/tools/cmd/goimports
363 [gorename]: https://pkg.go.dev/golang.org/x/tools/cmd/gorename
364 [goreturns]: https://github.com/sqs/goreturns
365 [gotags]: https://github.com/jstemmer/gotags
366 [guru]: https://pkg.go.dev/golang.org/x/tools/cmd/guru
367 [impl]: https://github.com/josharian/impl
368 [staticcheck]: https://staticcheck.io/docs/
369 [go/types]: https://golang.org/pkg/go/types/
370 [go/ast]: https://golang.org/pkg/go/ast/
371 [go/token]: https://golang.org/pkg/go/token/
372
373 [`completionItem/resolve`]:https://github.com/Microsoft/language-server-protocol/blob/gh-pages/_specifications/specification-3-14.md#completionItem_resolve
374 [`textDocument/codeAction`]: https://github.com/Microsoft/language-server-protocol/blob/gh-pages/_specifications/specification-3-14.md#textDocument_codeAction
375 [`textDocument/completion`]: https://github.com/Microsoft/language-server-protocol/blob/gh-pages/_specifications/specification-3-14.md#textDocument_completion
376 [`textDocument/declaration`]: https://github.com/Microsoft/language-server-protocol/blob/gh-pages/_specifications/specification-3-14.md#textDocument_declaration
377 [`textDocument/definition`]: https://github.com/Microsoft/language-server-protocol/blob/gh-pages/_specifications/specification-3-14.md#textDocument_definition
378 [`textDocument/documentLink`]: https://github.com/Microsoft/language-server-protocol/blob/gh-pages/_specifications/specification-3-14.md#textDocument_documentLink
379 [`textDocument/documentSymbol`]: https://github.com/Microsoft/language-server-protocol/blob/gh-pages/_specifications/specification-3-14.md#textDocument_documentSymbol
380 [`textDocument/foldingRange`]: https://github.com/Microsoft/language-server-protocol/blob/gh-pages/_specifications/specification-3-14.md#textDocument_foldingRange
381 [`textDocument/formatting`]: https://github.com/Microsoft/language-server-protocol/blob/gh-pages/_specifications/specification-3-14.md#textDocument_formatting
382 [`textDocument/highlight`]: https://github.com/Microsoft/language-server-protocol/blob/gh-pages/_specifications/specification-3-14.md#textDocument_highlight
383 [`textDocument/hover`]: https://github.com/Microsoft/language-server-protocol/blob/gh-pages/_specifications/specification-3-14.md#textDocument_hover
384 [`textDocument/implementation`]: https://github.com/Microsoft/language-server-protocol/blob/gh-pages/_specifications/specification-3-14.md#textDocument_implementation
385 [`textDocument/onTypeFormatting`]:https://github.com/Microsoft/language-server-protocol/blob/gh-pages/_specifications/specification-3-14.md#textDocument_onTypeFormatting
386 [`textDocument/prepareRename`]:https://github.com/Microsoft/language-server-protocol/blob/gh-pages/_specifications/specification-3-14.md#textDocument_prepareRename
387 [`textDocument/publishDiagnostics`]: https://github.com/Microsoft/language-server-protocol/blob/gh-pages/_specifications/specification-3-14.md#textDocument_publishDiagnostics
388 [`textDocument/rangeFormatting`]: https://github.com/Microsoft/language-server-protocol/blob/gh-pages/_specifications/specification-3-14.md#textDocument_rangeFormatting
389 [`textDocument/references`]: https://github.com/Microsoft/language-server-protocol/blob/gh-pages/_specifications/specification-3-14.md#textDocument_references
390 [`textDocument/rename`]: https://github.com/Microsoft/language-server-protocol/blob/gh-pages/_specifications/specification-3-14.md#textDocument_rename
391 [`textDocument/selectionRange`]:https://github.com/Microsoft/language-server-protocol/blob/gh-pages/_specifications/specification-3-14.md#textDocument_selectionRange
392 [`textDocument/signatureHelp`]: https://github.com/Microsoft/language-server-protocol/blob/gh-pages/_specifications/specification-3-14.md#textDocument_signatureHelp
393 [`textDocument/typeDefinition`]: https://github.com/Microsoft/language-server-protocol/blob/gh-pages/_specifications/specification-3-14.md#textDocument_typeDefinition
394 [`workspace/didChangeWatchedFiles`]: https://github.com/Microsoft/language-server-protocol/blob/gh-pages/_specifications/specification-3-14.md#workspace_didChangeWatchedFiles