Define an index format for Language Servers
Перейти к файлу
Dirk Baeumer ca77ed6592 Add lsif config file 2021-02-10 18:15:28 +01:00
.vscode Merge npm moniker generation into tsc tool 2021-02-10 17:11:49 +01:00
build Script polish 2021-02-10 17:51:20 +01:00
images Fixes some code blocks and the readme 2018-12-04 11:18:12 +01:00
lsif Publish lsif@0.5.2 2021-02-10 18:02:08 +01:00
npm Publish lsif-npm@0.5.2 2021-02-10 17:57:11 +01:00
protocol Publish protocol@0.5.2 2021-02-10 17:52:46 +01:00
samples Merge npm moniker generation into tsc tool 2021-02-10 17:11:49 +01:00
sqlite Publish lsif-sqlite@0.5.2 2021-02-10 18:00:23 +01:00
tooling Publish lsif-toolin@0.5.2 2021-02-10 17:58:55 +01:00
tsc Publish lsif-tsc@0.5.2 2021-02-10 17:55:23 +01:00
tsc-tests Script polish 2021-02-10 17:51:20 +01:00
util Add meta data information to protocol and leverage in tooling 2021-01-17 16:08:32 +01:00
.eslintignore Use ESLint to validate TypeScript files 2019-08-30 11:29:47 +02:00
.eslintrc.base.json Merge npm moniker generation into tsc tool 2021-02-10 17:11:49 +01:00
.gitignore Add lsif config file 2021-02-10 18:15:28 +01:00
LICENSE Make code license primary 2018-12-05 14:31:16 +01:00
README.md Update overall readme 2019-07-01 10:42:42 +02:00
ThirdPartyNotices.txt Add LSIF specification and tsc and npm tool implementation 2018-12-04 11:12:33 +01:00
azure-pipelines.yml Add lint task to pipeline 2019-08-30 11:34:14 +02:00
lsif.json Add lsif config file 2021-02-10 18:15:28 +01:00
package-lock.json Script polish 2021-02-10 17:51:20 +01:00
package.json Script polish 2021-02-10 17:51:20 +01:00
tsconfig.base.json tsconfig tweaks 2020-09-18 15:35:25 +02:00
tsconfig.json Merge npm moniker generation into tsc tool 2021-02-10 17:11:49 +01:00
tsconfig.watch.json Merge npm moniker generation into tsc tool 2021-02-10 17:11:49 +01:00

README.md

Language Server Index Format

The purpose of the Language Server Index Format (LSIF) is it to define a standard format for language servers or other programming tools to dump their knowledge about a workspace. This dump can later be used to answer language server LSP requests for the same workspace without running the language server itself. Since much of the information would be invalidated by a change to the workspace, the dumped information typically excludes requests used when mutating a document. So, for example, the result of a code complete request is typically not part of such a dump.

A first draft specification can be found here.

How to Run the tools

  • > npm install -g lsif-tsc install the tsc LSIF tool.
  • > lsif-tsc -p .\tsconfig.json --stdout creates a LSIF dump for the given typescript project. Output format is new line separated JSON.

If the project provides and npm package or is depending on other npm modules the TypeScript monikers can be converted into stable npm monikers. To do so run

  • > npm install -g lsif-npm install the npm LSIF tools
  • > lsif-tsc -p .\tsconfig.json --stdout | lsif-npm --stdin --package .\package.json --stdout creates an LSIF dump and converts the monikers to npm format.

Please note that the tools are work in progress and that we have not done any extensive testing so far. Known issues are:

  1. Go to Declaration for function overloads doesn't honor the signature
  2. Go to Type Declaration is not fully implement
  3. Document link support and go to implementation is completely missing
  4. Reference results are not always inlined when possible

Both tools support --help to get information about their command line arguments.

LSIF utility tools

You can validate or visualize LSIF output using the LSIF utility tools.

LSIF extension

There is also an extension for VS Code that can serve the content of a LSIF JSON file. Consider you have dumped the content of a workspace into an LSIF JSON file then you can use the extension to serve the supported LSP requests. This works as follows:

  • follow the steps in 'How to Run the tools` above and create a dump.
  • > git clone https://github.com/Microsoft/vscode-lsif-extension.git
  • > cd vscode-lsif-extension
  • > npm install
  • > npm run compile
  • open the workspace on vscode-lsif-extension using code.
  • switch to the debug viewlet and launch Launch Client
  • in the launch version of VS Code open the command palette and execute the command: Open LSIF Database
  • in the open file picker dialog nativate to a created dump and select it.

The extension

Contributing

This project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, visit https://cla.microsoft.com.

When you submit a pull request, a CLA-bot will automatically determine whether you need to provide a CLA and decorate the PR appropriately (e.g., label, comment). Simply follow the instructions provided by the bot. You will only need to do this once across all repos using our CLA.

This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.

Legal Notices

Copyright (c) Microsoft Corporation. All rights reserved.

Licensed under the MIT License.

Microsoft, Windows, Microsoft Azure and/or other Microsoft products and services referenced in the documentation may be either trademarks or registered trademarks of Microsoft in the United States and/or other countries. The licenses for this project do not grant you rights to use any Microsoft names, logos, or trademarks. Microsoft's general trademark guidelines can be found at http://go.microsoft.com/fwlink/?LinkID=254653.

Privacy information can be found at https://privacy.microsoft.com/en-us/

Microsoft and any contributors reserve all others rights, whether under their respective copyrights, patents, or trademarks, whether by implication, estoppel or otherwise.