You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 16, 2020. It is now read-only.
[](https://gitter.im/sourcegraph/javascript-typescript-langserver?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)
14
15
15
16
This is a language server for JavaScript and TypeScript that adheres to the [Language Server Protocol (LSP)](https://github.com/Microsoft/language-server-protocol/blob/master/protocol.md). It uses [TypeScript's](http://www.typescriptlang.org/) LanguageService to perform source code analysis.
16
17
@@ -76,15 +77,15 @@ npm test
76
77
77
78
This language server implements some LSP extensions, prefixed with an `x`.
Copy file name to clipboardExpand all lines: src/fs.ts
+31-23Lines changed: 31 additions & 23 deletions
Original file line number
Diff line number
Diff line change
@@ -27,15 +27,15 @@ export interface FileSystem {
27
27
}
28
28
29
29
exportclassRemoteFileSystemimplementsFileSystem{
30
-
31
30
constructor(privateclient: LanguageClient){}
32
31
33
32
/**
34
33
* The files request is sent from the server to the client to request a list of all files in the workspace or inside the directory of the base parameter, if given.
35
34
* A language server can use the result to index files by filtering and doing a content request for each text document of interest.
0 commit comments