@@ -4,31 +4,35 @@ import { ScopeSupportFacetLevel } from "./scopeSupportFacets.types";
4
4
const { supported, unsupported, notApplicable } = ScopeSupportFacetLevel ;
5
5
6
6
export const talonScopeSupport : LanguageScopeSupportFacetMap = {
7
- command : supported ,
8
- "interior.command" : supported ,
9
- "name.field" : supported ,
10
- "value.field" : supported ,
7
+ "argument.actual.iteration" : supported ,
8
+ "argument.actual" : supported ,
9
+
11
10
"comment.line" : supported ,
11
+
12
+ "interior.command" : supported ,
13
+
12
14
"name.assignment" : supported ,
15
+ "name.field" : supported ,
13
16
"name.variable" : supported ,
14
- statement : supported ,
17
+
15
18
"statement.iteration.block" : supported ,
16
19
"statement.iteration.document" : supported ,
17
- "value.variable" : supported ,
20
+
18
21
"value.assignment" : supported ,
19
- "argument.actual" : supported ,
20
- "argument.actual.iteration" : supported ,
22
+ "value.field" : supported ,
23
+ "value.variable" : supported ,
24
+
25
+ command : supported ,
26
+ statement : supported ,
27
+
28
+ "string.singleLine" : supported ,
29
+
30
+ "textFragment.comment.line" : supported ,
31
+ "textFragment.string.singleLine" : supported ,
21
32
22
33
// Unsupported
23
34
24
35
fieldAccess : unsupported ,
25
- "string.singleLine" : unsupported ,
26
- "string.multiLine" : unsupported ,
27
- "textFragment.comment.line" : unsupported ,
28
- "textFragment.string.singleLine" : unsupported ,
29
- "textFragment.string.multiLine" : unsupported ,
30
- "value.argument.actual" : unsupported ,
31
- "value.argument.actual.iteration" : unsupported ,
32
36
33
37
// Not applicable
34
38
@@ -154,6 +158,10 @@ export const talonScopeSupport: LanguageScopeSupportFacetMap = {
154
158
"type.typeArgument" : notApplicable ,
155
159
"type.typeArgument.iteration" : notApplicable ,
156
160
"type.variable" : notApplicable ,
161
+ "type.resource" : notApplicable ,
162
+ "type.resource.iteration" : notApplicable ,
163
+ "value.argument.actual" : notApplicable ,
164
+ "value.argument.actual.iteration" : notApplicable ,
157
165
"value.argument.formal" : notApplicable ,
158
166
"value.argument.formal.constructor" : notApplicable ,
159
167
"value.argument.formal.constructor.iteration" : notApplicable ,
@@ -171,4 +179,6 @@ export const talonScopeSupport: LanguageScopeSupportFacetMap = {
171
179
"value.typeAlias" : notApplicable ,
172
180
"value.variable.pattern" : notApplicable ,
173
181
"value.yield" : notApplicable ,
182
+ "string.multiLine" : notApplicable ,
183
+ "textFragment.string.multiLine" : notApplicable ,
174
184
} ;
0 commit comments