-
-
Notifications
You must be signed in to change notification settings - Fork 93
Expand file tree
/
Copy pathscopeSupportFacetInfos.ts
More file actions
676 lines (656 loc) · 20 KB
/
scopeSupportFacetInfos.ts
File metadata and controls
676 lines (656 loc) · 20 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
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
import type {
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",
},
environment: {
description: "An environment, eg in LaTeX",
scopeType: "environment",
},
section: {
description: "A document section",
scopeType: "section",
},
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.class": {
description: "An class declaration",
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",
},
"class.iteration.document": {
description: "Iteration scope for classes. The entire document.",
scopeType: "class",
isIteration: true,
},
"class.iteration.block": {
description:
"Iteration scope for classes. Statement blocks(body of functions/if classes/for loops/etc).",
scopeType: "class",
isIteration: true,
},
className: {
description: "The name of a class",
scopeType: "className",
},
"className.iteration.document": {
description: "Iteration scope for class names. The entire document.",
scopeType: "className",
isIteration: true,
},
"className.iteration.block": {
description:
"Iteration scope for class names. Statement blocks(body of functions/if classes/for loops/etc).",
scopeType: "className",
isIteration: true,
},
namedFunction: {
description: "A named function declaration",
scopeType: "namedFunction",
},
"namedFunction.method": {
description: "A named method declaration in a class",
scopeType: "namedFunction",
},
"namedFunction.method.iteration.class": {
description: "Iteration scope for named functions: class bodies",
scopeType: "namedFunction",
isIteration: true,
},
"namedFunction.constructor": {
description: "A constructor declaration in a class",
scopeType: "namedFunction",
},
"namedFunction.iteration": {
description: "Iteration scope for named functions",
scopeType: "namedFunction",
isIteration: true,
},
"namedFunction.iteration.document": {
description: "Iteration scope for named functions: the entire document",
scopeType: "namedFunction",
isIteration: true,
},
anonymousFunction: {
description:
"An anonymous function, eg a lambda function, an arrow function, etc",
scopeType: "anonymousFunction",
},
functionName: {
description: "The name of a function",
scopeType: "functionName",
},
"functionName.method": {
description: "The name of a method in a class",
scopeType: "functionName",
},
"functionName.method.iteration.class": {
description: "Iteration scope for function names: class bodies",
scopeType: "functionName",
isIteration: true,
},
"functionName.constructor": {
description: "The name of a constructor in a class",
scopeType: "functionName",
},
"functionName.iteration": {
description: "Iteration scope for function names",
scopeType: "functionName",
isIteration: true,
},
"functionName.iteration.document": {
description: "Iteration scope for function names: the entire document",
scopeType: "functionName",
isIteration: true,
},
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.actual.method": {
description: "An argument/parameter in a method call",
scopeType: "argumentOrParameter",
},
"argument.actual.method.iteration": {
description:
"Iteration scope of arguments in a method call, should be inside the parens of the argument list",
scopeType: "argumentOrParameter",
isIteration: true,
},
"argument.actual.constructor": {
description: "An argument/parameter in a constructor call",
scopeType: "argumentOrParameter",
},
"argument.actual.constructor.iteration": {
description:
"Iteration scope of arguments in a constructor 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. The domain should be the entire function.",
scopeType: "argumentOrParameter",
isIteration: true,
},
"argument.formal.method": {
description: "A parameter in a class method declaration",
scopeType: "argumentOrParameter",
},
"argument.formal.method.iteration": {
description:
"Iteration scope of the formal parameters of a class method declaration; should be the whole parameter list. The domain should be the entire function.",
scopeType: "argumentOrParameter",
isIteration: true,
},
"argument.formal.constructor": {
description: "A parameter in a constructor declaration",
scopeType: "argumentOrParameter",
},
"argument.formal.constructor.iteration": {
description:
"Iteration scope of the formal parameters of a constructor declaration; should be the whole parameter list. The domain should be the entire function.",
scopeType: "argumentOrParameter",
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",
},
"textFragment.comment.line": {
description: "Text fragment consisting of a line comment",
scopeType: "textFragment",
},
"textFragment.comment.block": {
description: "Text fragment consisting of a block comment",
scopeType: "textFragment",
},
"textFragment.string.singleLine": {
description: "Text fragment consisting of a single-line string",
scopeType: "textFragment",
},
"textFragment.string.multiLine": {
description: "Text fragment consisting of a multi-line string",
scopeType: "textFragment",
},
disqualifyDelimiter: {
description:
"Used to disqualify a token from being treated as a surrounding pair delimiter. This will usually be operators containing `>` or `<`, eg `<`, `<=`, `->`, etc",
scopeType: "disqualifyDelimiter",
},
"branch.match": {
description: "A pattern match branch",
scopeType: "branch",
},
"branch.match.iteration": {
description:
"Iteration scope for pattern match branches; should be the entire branch",
scopeType: "branch",
isIteration: true,
},
"branch.if": {
description: "An if/elif/else branch",
scopeType: "branch",
},
"branch.loop": {
description:
"A for / while loop branch. For most languages there will just be one branch for the entire loop, but eg in Python you can have an else branch for a loop.",
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.try.iteration": {
description:
"Iteration scope for try/catch/finally branch; should be the entire try-catch statement",
scopeType: "branch",
isIteration: true,
},
"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",
},
"collectionItem.unenclosed": {
description:
"An item in a comma-separated list without enclosing delimiters. This could be multi-variable declarations, import statements, etc.",
scopeType: "collectionItem",
},
"collectionItem.unenclosed.iteration": {
description:
"Iteration scope for items in a comma-separated list without enclosing delimiters",
scopeType: "collectionItem",
isIteration: true,
},
"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",
},
"condition.switchCase.iteration": {
description:
"The iteration scope for conditions in a switch statement: should contain all the cases, and exclude any curly brackets delimiting the full switch statement body",
scopeType: "condition",
isIteration: true,
},
"name.assignment": {
description: "Name (LHS) of an assignment",
scopeType: "name",
},
"name.assignment.pattern": {
description: "LHS of an assignment with pattern destructuring",
scopeType: "name",
},
"name.variable": {
description: "Name (LHS) of a variable declaration",
scopeType: "name",
},
"name.variable.pattern": {
description:
"Name (LHS) of a variable declaration 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.method": {
description: "Name of a class method",
scopeType: "name",
},
"name.constructor": {
description: "Name of a constructor",
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",
},
"name.resource": {
description: "Name in a 'with' / 'use' / 'using' statement",
scopeType: "name",
},
"name.resource.iteration": {
description:
"Iteration scope for names in a 'with' / 'use' / 'using' statement",
scopeType: "name",
isIteration: true,
},
"name.argument.formal": {
description: "The name of a parameter in a function declaration",
scopeType: "name",
},
"name.argument.formal.iteration": {
description:
"Iteration scope of the names of the formal parameters of a function declaration; should be the whole parameter list",
scopeType: "name",
isIteration: true,
},
"name.argument.formal.method": {
description: "The name of a parameter in a class method declaration",
scopeType: "name",
},
"name.argument.formal.method.iteration": {
description:
"Iteration scope of the names of the formal parameters of a class method declaration; should be the whole parameter list",
scopeType: "name",
isIteration: true,
},
"name.argument.formal.constructor": {
description: "The name of a parameter in a constructor declaration",
scopeType: "name",
},
"name.argument.formal.constructor.iteration": {
description:
"Iteration scope of the names of the formal parameters of a constructor declaration; should be the whole parameter list",
scopeType: "name",
isIteration: true,
},
"name.iteration.block": {
description:
"Iteration scope for names: statement blocks (body of functions/if classes/for loops/etc).",
scopeType: "name",
isIteration: true,
},
"name.iteration.document": {
description: "Iteration scope for names: the entire document",
scopeType: "name",
isIteration: true,
},
"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.variable": {
description: "Value (RHS) of a variable declaration",
scopeType: "value",
},
"value.variable.pattern": {
description:
"Value (RHS) of a variable declaration with pattern destructuring",
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",
},
"value.yield": {
description: "Value of a yield statement",
scopeType: "value",
},
"value.resource": {
description: "Value of a 'with' / 'use' / 'using' statement",
scopeType: "value",
},
"value.resource.iteration": {
description:
"Iteration scope for values in a 'with' / 'use' / 'using' statement",
scopeType: "value",
isIteration: true,
},
"value.argument.formal": {
description: "The value of a parameter in a function declaration",
scopeType: "value",
},
"value.argument.formal.iteration": {
description:
"Iteration scope of the values of the formal parameters of a function declaration; should be the whole parameter list",
scopeType: "value",
isIteration: true,
},
"value.argument.formal.method": {
description: "The value of a parameter in a class method declaration",
scopeType: "value",
},
"value.argument.formal.method.iteration": {
description:
"Iteration scope of the values of the formal parameters of a class method declaration; should be the whole parameter list",
scopeType: "value",
isIteration: true,
},
"value.argument.formal.constructor": {
description: "The value of a parameter in a constructor declaration",
scopeType: "value",
},
"value.argument.formal.constructor.iteration": {
description:
"Iteration scope of the values of the formal parameters of a constructor declaration; should be the whole parameter list",
scopeType: "value",
isIteration: true,
},
"value.typeAlias": {
description: "Value of a type alias declaration",
scopeType: "value",
},
"type.variable": {
description: "Type of variable in a variable declaration",
scopeType: "type",
},
"type.argument.formal": {
description: "Type of formal parameter in a function declaration",
scopeType: "type",
},
"type.argument.formal.iteration": {
description:
"Iteration scope of the types of the formal parameters of a function declaration; should be the whole parameter list",
scopeType: "type",
isIteration: true,
},
"type.argument.formal.method": {
description: "Type of formal parameter in a class method declaration",
scopeType: "type",
},
"type.argument.formal.method.iteration": {
description:
"Iteration scope of the types of the formal parameters of a class method declaration; should be the whole parameter list",
scopeType: "type",
isIteration: true,
},
"type.argument.formal.constructor": {
description: "Type of formal parameter in a constructor declaration",
scopeType: "type",
},
"type.argument.formal.constructor.iteration": {
description:
"Iteration scope of the types of the formal parameters of a constructor declaration; should be the whole parameter list",
scopeType: "type",
isIteration: true,
},
"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.field.iteration": {
description:
"Iteration scope for type of field in a class / interface; should be entire class / interface body",
scopeType: "type",
isIteration: true,
},
"type.foreach": {
description: "Type of variable in a for each loop",
scopeType: "type",
},
"type.interface": {
description: "An interface declaration",
scopeType: "type",
},
"type.class": {
description: "An class declaration",
scopeType: "type",
},
"type.alias": {
description: "A type alias declaration",
scopeType: "type",
},
"type.cast": {
description: "A type cast",
scopeType: "type",
},
"type.typeArgument": {
description: "Type argument to a generic / parametrized type",
scopeType: "type",
},
"type.typeArgument.iteration": {
description:
"Iteration scope for type argument to a generic / parametrized type; Should be the list of type arguments",
scopeType: "type",
isIteration: true,
},
notebookCell: {
description: "A cell in a notebook or a markdown code block",
scopeType: "notebookCell",
},
};