-
-
Notifications
You must be signed in to change notification settings - Fork 94
Expand file tree
/
Copy pathscopeSupportFacetInfos.ts
More file actions
331 lines (313 loc) · 8.49 KB
/
Copy pathscopeSupportFacetInfos.ts
File metadata and controls
331 lines (313 loc) · 8.49 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
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
/* eslint-disable @typescript-eslint/naming-convention */
import {
ScopeSupportFacet,
ScopeSupportFacetInfo,
} from "./scopeSupportFacets.types";
export const scopeSupportFacetInfos: Record<
ScopeSupportFacet,
ScopeSupportFacetInfo
> = {
command: {
description: "A command, for example Talon spoken command or bash",
scopeType: "command",
},
element: {
description: "An xml/html element. Also used for LaTeX environments",
scopeType: "xmlElement",
},
startTag: {
description: "The start tag of an xml element",
scopeType: "xmlStartTag",
},
endTag: {
description: "The end tag of an xml element",
scopeType: "xmlEndTag",
},
tags: {
description: "Both tags in an xml element",
scopeType: "xmlBothTags",
},
attribute: {
description: "A attribute, eg of an html element or a C++ attribute",
scopeType: "attribute",
},
list: {
description: "A list/array",
scopeType: "list",
},
map: {
description: "A map/dictionary",
scopeType: "map",
},
ifStatement: {
description: "An if statement",
scopeType: "ifStatement",
},
regularExpression: {
description: "A regular expression",
scopeType: "regularExpression",
},
switchStatementSubject: {
description: "The subject of a switch statement",
scopeType: "private.switchStatementSubject",
},
fieldAccess: {
description: "A field access",
scopeType: "private.fieldAccess",
},
statement: {
description: "A statement, eg assignment, for loop, etc",
scopeType: "statement",
},
"statement.iteration.document": {
description: "Iteration scope for statements. The entire document.",
scopeType: "statement",
isIteration: true,
},
"statement.iteration.block": {
description:
"Iteration scope for statements. Statement blocks(body of functions/if statements/for loops/etc).",
scopeType: "statement",
isIteration: true,
},
class: {
description: "A class in an object-oriented language",
scopeType: "class",
},
className: {
description: "The name of a class",
scopeType: "className",
},
namedFunction: {
description: "A named function declaration",
scopeType: "namedFunction",
},
"namedFunction.method": {
description: "A named method declaration in a class",
scopeType: "namedFunction",
},
anonymousFunction: {
description:
"An anonymous function, eg a lambda function, an arrow function, etc",
scopeType: "anonymousFunction",
},
functionName: {
description: "The name of a function",
scopeType: "functionName",
},
functionCall: {
description: "A function call",
scopeType: "functionCall",
},
"functionCall.constructor": {
description: "A constructor call",
scopeType: "functionCall",
},
functionCallee: {
description: "The function being called in a function call",
scopeType: "functionCallee",
},
"functionCallee.constructor": {
description:
"The class being constructed in a class instantiation, including the `new` keyword",
scopeType: "functionCallee",
},
"argument.actual": {
description: "An argument/parameter in a function call",
scopeType: "argumentOrParameter",
},
"argument.actual.iteration": {
description:
"Iteration scope of arguments in a function call, should be inside the parens of the argument list",
scopeType: "argumentOrParameter",
isIteration: true,
},
"argument.formal": {
description: "A parameter in a function declaration",
scopeType: "argumentOrParameter",
},
"argument.formal.iteration": {
description:
"Iteration scope of the formal parameters of a function declaration; should be the whole parameter list",
scopeType: "argumentOrParameter",
isIteration: true,
},
"collectionItem.map": {
description: "An entry in a map/dictionary",
scopeType: "collectionItem",
},
"collectionItem.map.iteration": {
description:
"Iteration scope for entries in a map/dictionary; should be between the braces",
scopeType: "collectionItem",
isIteration: true,
},
"comment.line": {
description: "A line comment",
scopeType: "comment",
},
"comment.block": {
description: "A block comment",
scopeType: "comment",
},
"string.singleLine": {
description: "A single-line string",
scopeType: "string",
},
"string.multiLine": {
description: "A multi-line string",
scopeType: "string",
},
"branch.if": {
description: "An if/elif/else branch",
scopeType: "branch",
},
"branch.if.iteration": {
description:
"Iteration scope for if/elif/else branch; should be the entire if-else statement",
scopeType: "branch",
isIteration: true,
},
"branch.try": {
description: "A try/catch/finally branch",
scopeType: "branch",
},
"branch.switchCase": {
description: "A case/default branch in a switch/match statement",
scopeType: "branch",
},
"branch.switchCase.iteration": {
description:
"Iteration scope for branches in a switch/match statement; should contain all the cases",
scopeType: "branch",
isIteration: true,
},
"branch.ternary": {
description: "A branch in a ternary expression",
scopeType: "branch",
},
"condition.if": {
description: "A condition in an if statement",
scopeType: "condition",
},
"condition.while": {
description: "A condition in a while loop",
scopeType: "condition",
},
"condition.doWhile": {
description: "A condition in a do while loop",
scopeType: "condition",
},
"condition.for": {
description: "A condition in a for loop",
scopeType: "condition",
},
"condition.ternary": {
description: "A condition in a ternary expression",
scopeType: "condition",
},
"condition.switchCase": {
description: "A condition in a switch statement",
scopeType: "condition",
},
"name.assignment": {
description: "Name (LHS) of an assignment",
scopeType: "name",
},
"name.assignment.pattern": {
description: "LHS of an assignment with pattern destructuring",
scopeType: "name",
},
"name.foreach": {
description: "Iteration variable name in a for each loop",
scopeType: "name",
},
"name.function": {
description: "Name of a function",
scopeType: "name",
},
"name.class": {
description: "Name of a class",
scopeType: "name",
},
"name.field": {
description: "Name (LHS) of a field in a class / interface",
scopeType: "name",
},
"key.attribute": {
description: "Key (LHS) of an attribute eg in an xml element",
scopeType: "collectionKey",
},
"key.mapPair": {
description: "Key (LHS) of a key-value pair of a map",
scopeType: "collectionKey",
},
"key.mapPair.iteration": {
description:
"Iteration scope of key-value pairs in a map; should be between the braces",
scopeType: "collectionKey",
isIteration: true,
},
"value.assignment": {
description: "Value (RHS) of an assignment",
scopeType: "value",
},
"value.mapPair": {
description: "Value (RHS) of a key-value pair in a map",
scopeType: "value",
},
"value.mapPair.iteration": {
description:
"Iteration scope of key-value pairs in a map; should be between the braces",
scopeType: "value",
isIteration: true,
},
"value.foreach": {
description: "Iterable in a for each loop",
scopeType: "value",
},
"value.attribute": {
description: "Value (RHS) of an attribute eg in an xml element",
scopeType: "value",
},
"value.return": {
description: "Return value of a function",
scopeType: "value",
},
"value.return.lambda": {
description: "Implicit return value from a lambda",
scopeType: "value",
},
"value.field": {
description: "Value (RHS) of a field in a class / interface",
scopeType: "value",
},
"type.assignment": {
description: "Type of variable in an assignment",
scopeType: "type",
},
"type.formalParameter": {
description: "Type of formal parameter in a function declaration",
scopeType: "type",
},
"type.return": {
description: "Type of return value in a function declaration",
scopeType: "type",
},
"type.field": {
description: "Type of field in a class / interface",
scopeType: "type",
},
"type.foreach": {
description: "Type of variable in a for each loop",
scopeType: "type",
},
"type.interface": {
description: "An interface declaration",
scopeType: "type",
},
"type.alias": {
description: "A type alias declaration",
scopeType: "type",
},
};