forked from sourcegraph/javascript-typescript-langserver
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrequest-type.ts
More file actions
189 lines (164 loc) · 4.08 KB
/
request-type.ts
File metadata and controls
189 lines (164 loc) · 4.08 KB
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
import * as vscode from 'vscode-languageserver';
import * as fs from './fs';
export namespace GlobalRefsRequest {
export const type: vscode.RequestType<vscode.WorkspaceSymbolParams, vscode.SymbolInformation[], any> = {
get method() {
return 'textDocument/global-refs';
}
};
}
export namespace InitializeRequest {
export const type: vscode.RequestType<vscode.InitializeParams, vscode.InitializeResult, any> = {
get method() {
return 'initialize';
}
};
}
export namespace ShutdownRequest {
export const type = {
get method() {
return 'shutdown';
}
};
}
export namespace ExitRequest {
export const type = {
get method() {
return 'exit';
}
};
}
export namespace ReadDirRequest {
export const type: vscode.RequestType<string, fs.FileInfo[], any> = {
get method() {
return 'fs/readDir';
}
};
}
export namespace ReadFileRequest {
export const type: vscode.RequestType<string, string, any> = {
get method() {
return 'fs/readFile';
}
};
}
export namespace DefinitionRequest {
export const type: vscode.RequestType<vscode.TextDocumentPositionParams, vscode.Location[], any> = {
get method() {
return 'textDocument/definition';
}
};
}
export namespace XdefinitionRequest {
export const type: vscode.RequestType<vscode.TextDocumentPositionParams, SymbolLocationInformation[], any> = {
get method() {
return 'textDocument/xdefinition';
}
};
}
export namespace HoverRequest {
export const type: vscode.RequestType<vscode.TextDocumentPositionParams, vscode.Hover, any> = {
get method() {
return 'textDocument/hover';
}
};
}
export namespace ReferencesRequest {
export const type: vscode.RequestType<vscode.ReferenceParams, vscode.Location[], any> = {
get method() {
return 'textDocument/references';
}
};
}
export namespace DependenciesRequest {
export const type: vscode.RequestType<void, DependencyReference[], any> = {
get method() {
return 'workspace/xdependencies';
}
};
}
export interface WorkspaceSymbolParamsWithLimit {
query: string;
limit: number;
}
export namespace WorkspaceSymbolsRequest {
export const type: vscode.RequestType<WorkspaceSymbolParamsWithLimit, vscode.SymbolInformation[], any> = {
get method() {
return 'workspace/symbol';
}
};
}
export namespace WorkspaceReferenceRequest {
export const type: vscode.RequestType<WorkspaceReferenceParams, ReferenceInformation[], any> = {
get method() {
return 'workspaces/xreferences';
}
};
}
export interface SymbolDescriptor {
[attr: string]: any;
}
/*
* WorkspaceReferenceParams holds parameters for the
* workspace/xreferences endpoint (an extension of the original LSP
* spec).
*/
export interface WorkspaceReferenceParams {
query: SymbolDescriptor;
files?: string[];
}
export interface SymbolLocationInformation {
location?: vscode.Location;
symbol: SymbolDescriptor;
}
/*
* ReferenceInformation enapsulates the metadata for a symbol
* reference in code.
*/
export interface ReferenceInformation {
location: vscode.Location;
symbol: SymbolDescriptor;
}
export interface DependencyReference {
attributes: {
[attr: string]: any;
};
hints: {
[attr: string]: any;
}
}
export namespace DocumentSymbolRequest {
export const type: vscode.RequestType<vscode.DocumentSymbolParams, vscode.SymbolInformation[], any> = {
get method() {
return "textDocument/documentSymbol";
}
};
}
export namespace TextDocumentDidOpenNotification {
export const type: vscode.NotificationType<vscode.DidOpenTextDocumentParams> = {
get method() {
return 'textDocument/didOpen';
}
};
}
export namespace TextDocumentDidCloseNotification {
export const type: vscode.NotificationType<vscode.DidCloseTextDocumentParams> = {
get method() {
return 'textDocument/didClose';
}
};
}
export namespace TextDocumentDidSaveNotification {
export const type: vscode.NotificationType<vscode.DidSaveTextDocumentParams> = {
get method() {
return 'textDocument/didSave';
}
};
}
export namespace TextDocumentDidChangeNotification {
export const type: vscode.NotificationType<vscode.DidChangeTextDocumentParams> = {
get method() {
return 'textDocument/didChange';
}
};
}