Giant blob of minor changes
[dotfiles/.git] / .config / coc / extensions / coc-go-data / tools / pkg / mod / golang.org / x / tools / gopls@v0.5.2 / doc / 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
11 ## Context
12
13 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.
14
15 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.
16 See the section below on [existing solutions](#existing-solutions) for more problems and details.
17
18 This is fine for tools used occasionally, but for core IDE features, this is not acceptable.
19 Autocompletion, jump to definition, formatting, and other such features should always work, as they are key for Go development.
20
21 The Go team will create an editor backend that works in any build system.
22 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.
23
24 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.
25 Having one editor backend will simplify the lives of Go developers, the Go team, and the maintainers of Go editor plugins.
26
27 See Rebecca's excellent GopherCon keynote [talk] and [slides] for some more context.
28
29 ## Non-Goals
30
31 * Command line speed
32
33   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.
34   For such cases there will have to be an alternate tool using the same underlying libraries for consistency.
35
36 * Low memory environments
37
38   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.
39   It is presumed that developers are normally working on systems with significant RAM and this will not be a problem.
40   In general this is upheld by the large memory usage of existing IDE solutions (like IntelliJ)
41
42 * Syntax highlighting
43
44   At the moment there is no editor that delegates this functionality to a separate binary, and no standard way of doing it.
45
46 ## Existing solutions
47
48 Every year the Go team conducts a survey, asking developers about their experiences with the language.
49
50 One question that is asked is “How do you feel about your editor?”.
51
52 The responses told a very negative story. Some categorized quotes:
53
54 * Setup
55   * "Hard to install and configure"
56   * "Inadequate documentation"
57 * Performance
58   * "Performance is very poor"
59   * "Pretty slow in large projects"
60 * Reliability
61   * "Features work one day, but not the next"
62   * "Tooling is not updated with new language features"
63
64 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.
65
66 The individual tools each have to do the work to understand the code and all its transitive dependencies.
67
68 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.
69 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.
70
71 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.
72 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.
73
74 ## Requirements
75
76 ### Complete feature set
77
78 For gopls to be considered a success it has to implement the full feature set discussed [below](#Features).
79 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).
80
81 ### Equivalent or better experience
82
83 For all of those features, the user experience must match or exceed the current one available in all editors.
84 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.
85
86 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.
87
88 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.
89
90 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.
91
92 ### Solid community of contributors
93
94 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.
95
96 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.
97
98 ### Latencies that fall within user tolerance
99
100 There has been a lot of research on acceptable latencies for user actions.
101 <!-- TODO: research links -->
102 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.
103 This means in general the aim has to be <100ms for anything that happens as the developer types.
104 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.
105
106 ### Easy to configure
107
108 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.
109 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.
110
111 ## Difficulties
112
113 ### Volume of data
114
115 <!-- TODO: project sizes -->
116 * Small:
117 * Medium:
118 * Large:
119 * Corporate mono-repo: Much much bigger
120
121 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.
122
123 ### Cache invalidation
124
125 The basic unit of operation for the type checking is the package, but the basic unit of operation for an editor is the file.
126 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).
127 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.
128
129 ### Inappropriate core functionality
130
131 The base libraries for Go (things like [go/token], [go/ast] and [go/types]) are all designed for compiler-like applications.
132 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.
133 They also have no abilities to do incremental changes.
134
135 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.
136
137 ### Build system capabilities
138
139 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.
140
141 ### Build tags
142
143 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.
144 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.
145
146 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.
147
148 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.
149 This makes it very hard to produce useful results when viewing a file.
150
151 ### Features not supported by LSP
152
153 There are some things it would be good to be able to do that do not fit easily into the existing LSP protocol.
154 For instance, displaying control flow information, automatic struct tags, complex refactoring...
155
156 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.
157
158 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.
159
160 ### Distribution
161
162 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.
163
164 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.
165
166 ### Debugging user problems
167
168 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.
169 All of these things make it hard for users to report a bug usefully, or create a minimal reproduction.
170
171 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.
172
173
174 ## Basic design decisions
175
176 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.
177
178 ### Process lifetime: *managed by the editor*
179
180 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.
181 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.
182
183 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.
184
185 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.
186
187 ### Caching: *in memory*
188
189 Persistent disk caches are very expensive to maintain, and require solving a lot of extra problems.
190 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.
191
192 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.
193 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.
194
195 ### Communication: *stdin/stdout JSON*
196
197 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).
198
199 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.
200
201 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.
202
203 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.
204
205 ### Running other tools: *no*
206
207 <!--- TODO: subprocess discuss --->
208
209 ## 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
243 ### Navigation
244
245 Navigation features are designed to make it easier for a developer to find their way round a code base.
246
247 ---
248 Definition | Select an identifier, and jump to the code where that identifier was defined.
249 ---------- | ---
250 Requires   | Full type information for file and all dependencies
251 LSP        | [`textDocument/declaration`]
252 |          | [`textDocument/definition`]
253 |          | [`textDocument/typeDefinition`]
254 Previous   | [godef] |
255 |          | 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.
256
257 ---
258 Implementation | Reports the types that implement an interface
259 -------------- | ---
260 Requires       | Full workspace type knowledge
261 LSP            | [`textDocument/implementation`]
262 Previous       | [impl]
263 |              | 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.
264
265 ---
266 Document symbols | Provides the set of top level symbols in the current file.
267 ---------------- | ---
268 Requires         | AST of the current file only
269 LSP              | [`textDocument/documentSymbol`]
270 Previous         | [go-outline], [go-symbols]
271 |                | Used to drive things like outline mode.
272
273 ---
274 References | Find all references to the symbol under the cursor.
275 ---------- | ---
276 Requires   | AST and type information for the **reverse** transitive closure
277 LSP        | [`textDocument/references`]
278 Previous   | [guru]
279 |          | 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.
280
281
282 ---
283 Folding  | Report logical hierarchies of blocks
284 -------- | ---
285 Requires | AST of the current file only
286 LSP      | [`textDocument/foldingRange`]
287 Previous | [go-outline]
288 |        | This is normally used to provide expand and collapse behavior in editors.
289
290 ---
291 Selection | Report regions of logical selection around the cursor
292 --------- | ---
293 Requires  | AST of the current file only
294 LSP       | [`textDocument/selectionRange`]
295 Previous  | [guru]
296 |         | Used in editor features like expand selection.
297
298
299 ### Edit assistance
300
301 These features suggest or apply edits to the code for the user, including refactoring features, for which there are many potential use cases.
302 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.
303 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.
304 This means it may be much more of a research project.
305
306
307 ---
308 Format   | Fix the formatting of the file
309 -------- | ---
310 Requires | AST of current file
311 LSP      | [`textDocument/formatting`]
312 |        | [`textDocument/rangeFormatting`]
313 |        | [`textDocument/onTypeFormatting`]
314 Previous | [gofmt], [goimports], [goreturns]
315 |        | 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
316
317
318 ---
319 Imports  | Rewrite the imports block automatically to match the symbols used.
320 -------- | ---
321 Requires | AST of the current file and full symbol knowledge for all candidate packages.
322 LSP      | [`textDocument/codeAction`]
323 Previous | [goimports], [goreturns]
324 |        | 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.
325
326
327 ---
328 Autocompletion | Makes suggestions to complete the entity currently being typed.
329 -------------- | ---
330 Requires       | AST and type information for the file and all dependencies<br/> Also full exported symbol knowledge for all packages.
331 LSP            | [`textDocument/completion`]
332 |              | [`completionItem/resolve`]
333 Previous       | [gocode]
334 |              | 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.
335
336 ---
337 Rename   | Rename an identifier
338 -------- | ---
339 Requires | AST and type information for the **reverse** transitive closure
340 LSP      | [`textDocument/rename`]
341 |        | [`textDocument/prepareRename`]
342 Previous | [gorename]
343 |        | 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.
344
345 ---
346 Suggested fixes | Suggestions that can be manually or automatically accepted to change the code
347 --------------- | ---
348 Requires        | Full go/analysis run, which needs full AST, type and SSA information
349 LSP             | [`textDocument/codeAction`]
350 Previous        | N/A
351 |               | This is a brand new feature powered by the new go/analysis engine, and it should allow a huge amount of automated refactoring.
352
353
354 [LSP specification]: https://microsoft.github.io/language-server-protocol/specifications/specification-3-14/
355 [talk]: TODO
356 [slides]: https://github.com/gophercon/2019-talks/blob/master/RebeccaStambler-GoPleaseStopBreakingMyEditor/slides.pdf "Go, please stop breaking my editor!"
357 [JSON rpc 2]: https://www.jsonrpc.org/specification
358
359 [errcheck]: https://github.com/kisielk/errcheck
360 [go-outline]: https://github.com/lukehoban/go-outline
361 [go-symbols]: https://github.com/acroca/go-symbols
362 [gocode]: https://github.com/stamblerre/gocode
363 [godef]: https://github.com/rogpeppe/godef
364 [godoc]: https://golang.org/cmd/godoc
365 [gofmt]: https://golang.org/cmd/gofmt
366 [gogetdoc]: https://github.com/zmb3/gogetdoc
367 [goimports]: https://godoc.org/golang.org/x/tools/cmd/goimports
368 [gorename]: https://godoc.org/golang.org/x/tools/cmd/gorename
369 [goreturns]: https://github.com/sqs/goreturns
370 [gotags]: https://github.com/jstemmer/gotags
371 [guru]: https://godoc.org/golang.org/x/tools/cmd/guru
372 [impl]: https://github.com/josharian/impl
373 [staticcheck]: https://staticcheck.io/docs/
374 [go/types]: https://golang.org/pkg/go/types/
375 [go/ast]: https://golang.org/pkg/go/ast/
376 [go/token]: https://golang.org/pkg/go/token/
377
378
379 [`completionItem/resolve`]:https://github.com/Microsoft/language-server-protocol/blob/gh-pages/_specifications/specification-3-14.md#completionItem_resolve
380 [`textDocument/codeAction`]: https://github.com/Microsoft/language-server-protocol/blob/gh-pages/_specifications/specification-3-14.md#textDocument_codeAction
381 [`textDocument/completion`]: https://github.com/Microsoft/language-server-protocol/blob/gh-pages/_specifications/specification-3-14.md#textDocument_completion
382 [`textDocument/declaration`]: https://github.com/Microsoft/language-server-protocol/blob/gh-pages/_specifications/specification-3-14.md#textDocument_declaration
383 [`textDocument/definition`]: https://github.com/Microsoft/language-server-protocol/blob/gh-pages/_specifications/specification-3-14.md#textDocument_definition
384 [`textDocument/documentLink`]: https://github.com/Microsoft/language-server-protocol/blob/gh-pages/_specifications/specification-3-14.md#textDocument_documentLink
385 [`textDocument/documentSymbol`]: https://github.com/Microsoft/language-server-protocol/blob/gh-pages/_specifications/specification-3-14.md#textDocument_documentSymbol
386 [`textDocument/foldingRange`]: https://github.com/Microsoft/language-server-protocol/blob/gh-pages/_specifications/specification-3-14.md#textDocument_foldingRange
387 [`textDocument/formatting`]: https://github.com/Microsoft/language-server-protocol/blob/gh-pages/_specifications/specification-3-14.md#textDocument_formatting
388 [`textDocument/highlight`]: https://github.com/Microsoft/language-server-protocol/blob/gh-pages/_specifications/specification-3-14.md#textDocument_highlight
389 [`textDocument/hover`]: https://github.com/Microsoft/language-server-protocol/blob/gh-pages/_specifications/specification-3-14.md#textDocument_hover
390 [`textDocument/implementation`]: https://github.com/Microsoft/language-server-protocol/blob/gh-pages/_specifications/specification-3-14.md#textDocument_implementation
391 [`textDocument/onTypeFormatting`]:https://github.com/Microsoft/language-server-protocol/blob/gh-pages/_specifications/specification-3-14.md#textDocument_onTypeFormatting
392 [`textDocument/prepareRename`]:https://github.com/Microsoft/language-server-protocol/blob/gh-pages/_specifications/specification-3-14.md#textDocument_prepareRename
393 [`textDocument/publishDiagnostics`]: https://github.com/Microsoft/language-server-protocol/blob/gh-pages/_specifications/specification-3-14.md#textDocument_publishDiagnostics
394 [`textDocument/rangeFormatting`]: https://github.com/Microsoft/language-server-protocol/blob/gh-pages/_specifications/specification-3-14.md#textDocument_rangeFormatting
395 [`textDocument/references`]: https://github.com/Microsoft/language-server-protocol/blob/gh-pages/_specifications/specification-3-14.md#textDocument_references
396 [`textDocument/rename`]: https://github.com/Microsoft/language-server-protocol/blob/gh-pages/_specifications/specification-3-14.md#textDocument_rename
397 [`textDocument/selectionRange`]:https://github.com/Microsoft/language-server-protocol/blob/gh-pages/_specifications/specification-3-14.md#textDocument_selectionRange
398 [`textDocument/signatureHelp`]: https://github.com/Microsoft/language-server-protocol/blob/gh-pages/_specifications/specification-3-14.md#textDocument_signatureHelp
399 [`textDocument/typeDefinition`]: https://github.com/Microsoft/language-server-protocol/blob/gh-pages/_specifications/specification-3-14.md#textDocument_typeDefinition
400 [`workspace/didChangeWatchedFiles`]: https://github.com/Microsoft/language-server-protocol/blob/gh-pages/_specifications/specification-3-14.md#workspace_didChangeWatchedFiles