Skip to content

Commit add0556

Browse files
not applicable
1 parent c914700 commit add0556

File tree

7 files changed

+31
-25
lines changed

7 files changed

+31
-25
lines changed

packages/common/src/scopeSupportFacets/html.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,13 +46,13 @@ export const htmlScopeSupport: LanguageScopeSupportFacetMap = {
4646
"statement.interface": notApplicable,
4747
"statement.field.interface": notApplicable,
4848
"statement.iteration.interface": notApplicable,
49+
"interior.interface": notApplicable,
4950
"name.interface": notApplicable,
5051
"name.field.interface": notApplicable,
5152
"name.iteration.interface": notApplicable,
5253
"type.interface": notApplicable,
5354
"type.field.interface": notApplicable,
5455
"type.iteration.interface": notApplicable,
55-
"interior.interface": notApplicable,
5656

5757
"argument.actual.constructor.iteration": notApplicable,
5858
"argument.actual.constructor.singleLine": notApplicable,

packages/common/src/scopeSupportFacets/json.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,11 +47,14 @@ export const jsonScopeSupport: LanguageScopeSupportFacetMap = {
4747

4848
// Interface
4949
"statement.interface": notApplicable,
50+
"statement.field.interface": notApplicable,
5051
"statement.iteration.interface": notApplicable,
5152
"interior.interface": notApplicable,
5253
"name.interface": notApplicable,
54+
"name.field.interface": notApplicable,
5355
"name.iteration.interface": notApplicable,
5456
"type.interface": notApplicable,
57+
"type.field.interface": notApplicable,
5558
"type.iteration.interface": notApplicable,
5659

5760
anonymousFunction: notApplicable,

packages/common/src/scopeSupportFacets/markdown.ts

Lines changed: 23 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -19,17 +19,39 @@ export const markdownScopeSupport: LanguageScopeSupportFacetMap = {
1919

2020
/* NOT APPLICABLE */
2121

22+
// Class
23+
class: notApplicable,
24+
"class.iteration.block": notApplicable,
25+
"class.iteration.document": notApplicable,
26+
className: notApplicable,
27+
"className.iteration.block": notApplicable,
28+
"className.iteration.document": notApplicable,
29+
"name.class": notApplicable,
30+
"name.field.class": notApplicable,
31+
"name.iteration.class": notApplicable,
32+
"statement.class": notApplicable,
33+
"statement.field.class": notApplicable,
34+
"statement.iteration.class": notApplicable,
35+
"type.class": notApplicable,
36+
"type.field.class": notApplicable,
37+
"type.iteration.class": notApplicable,
38+
"value.field.class": notApplicable,
39+
"value.iteration.class": notApplicable,
40+
"interior.class": notApplicable,
41+
"namedFunction.method.iteration.class": notApplicable,
42+
"functionName.method.iteration.class": notApplicable,
43+
2244
// Interface
2345
"statement.interface": notApplicable,
2446
"statement.field.interface": notApplicable,
2547
"statement.iteration.interface": notApplicable,
48+
"interior.interface": notApplicable,
2649
"name.interface": notApplicable,
2750
"name.field.interface": notApplicable,
2851
"name.iteration.interface": notApplicable,
2952
"type.interface": notApplicable,
3053
"type.field.interface": notApplicable,
3154
"type.iteration.interface": notApplicable,
32-
"interior.interface": notApplicable,
3355

3456
anonymousFunction: notApplicable,
3557
"argument.actual.singleLine": notApplicable,
@@ -87,12 +109,6 @@ export const markdownScopeSupport: LanguageScopeSupportFacetMap = {
87109
"branch.ternary.iteration": notApplicable,
88110
"branch.try": notApplicable,
89111
"branch.try.iteration": notApplicable,
90-
class: notApplicable,
91-
"class.iteration.block": notApplicable,
92-
"class.iteration.document": notApplicable,
93-
className: notApplicable,
94-
"className.iteration.block": notApplicable,
95-
"className.iteration.document": notApplicable,
96112
"collectionItem.unenclosed.iteration": notApplicable,
97113
command: notApplicable,
98114
"comment.line": notApplicable,
@@ -117,9 +133,7 @@ export const markdownScopeSupport: LanguageScopeSupportFacetMap = {
117133
"functionName.iteration.block": notApplicable,
118134
"functionName.iteration.document": notApplicable,
119135
"functionName.method": notApplicable,
120-
"functionName.method.iteration.class": notApplicable,
121136
ifStatement: notApplicable,
122-
"interior.class": notApplicable,
123137
"interior.command": notApplicable,
124138
"interior.element": notApplicable,
125139
"interior.function": notApplicable,
@@ -153,14 +167,11 @@ export const markdownScopeSupport: LanguageScopeSupportFacetMap = {
153167
"name.argument.formal.method.iteration": notApplicable,
154168
"name.assignment": notApplicable,
155169
"name.assignment.pattern": notApplicable,
156-
"name.class": notApplicable,
157170
"name.namespace": notApplicable,
158171
"name.constructor": notApplicable,
159-
"name.field.class": notApplicable,
160172
"name.foreach": notApplicable,
161173
"name.function": notApplicable,
162174
"name.iteration.block": notApplicable,
163-
"name.iteration.class": notApplicable,
164175
"name.iteration.document": notApplicable,
165176
"name.method": notApplicable,
166177
"name.resource": notApplicable,
@@ -172,14 +183,11 @@ export const markdownScopeSupport: LanguageScopeSupportFacetMap = {
172183
"namedFunction.iteration.block": notApplicable,
173184
"namedFunction.iteration.document": notApplicable,
174185
"namedFunction.method": notApplicable,
175-
"namedFunction.method.iteration.class": notApplicable,
176186
pairDelimiter: notApplicable,
177187
regularExpression: notApplicable,
178188
startTag: notApplicable,
179189
statement: notApplicable,
180-
"statement.class": notApplicable,
181190
"statement.iteration.block": notApplicable,
182-
"statement.iteration.class": notApplicable,
183191
"statement.iteration.document": notApplicable,
184192
"string.multiLine": notApplicable,
185193
"string.singleLine": notApplicable,
@@ -197,9 +205,7 @@ export const markdownScopeSupport: LanguageScopeSupportFacetMap = {
197205
"type.argument.formal.method": notApplicable,
198206
"type.argument.formal.method.iteration": notApplicable,
199207
"type.cast": notApplicable,
200-
"type.class": notApplicable,
201208
"type.enum": notApplicable,
202-
"type.field.class": notApplicable,
203209
"type.foreach": notApplicable,
204210
"type.variable": notApplicable,
205211
"type.return": notApplicable,
@@ -208,7 +214,6 @@ export const markdownScopeSupport: LanguageScopeSupportFacetMap = {
208214
"type.typeArgument": notApplicable,
209215
"type.typeArgument.iteration": notApplicable,
210216
"type.iteration.block": notApplicable,
211-
"type.iteration.class": notApplicable,
212217
"type.iteration.document": notApplicable,
213218
"value.argument.actual": notApplicable,
214219
"value.argument.actual.iteration": notApplicable,
@@ -220,7 +225,6 @@ export const markdownScopeSupport: LanguageScopeSupportFacetMap = {
220225
"value.argument.formal.method.iteration": notApplicable,
221226
"value.assignment": notApplicable,
222227
"value.attribute": notApplicable,
223-
"value.field.class": notApplicable,
224228
"value.foreach": notApplicable,
225229
"value.mapPair": notApplicable,
226230
"value.mapPair.iteration": notApplicable,
@@ -233,7 +237,6 @@ export const markdownScopeSupport: LanguageScopeSupportFacetMap = {
233237
"value.variable.pattern": notApplicable,
234238
"value.yield": notApplicable,
235239
"value.iteration.block": notApplicable,
236-
"value.iteration.class": notApplicable,
237240
"value.iteration.document": notApplicable,
238241
selector: notApplicable,
239242
unit: notApplicable,

packages/common/src/scopeSupportFacets/scm.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,13 +51,13 @@ export const scmScopeSupport: LanguageScopeSupportFacetMap = {
5151
"statement.interface": notApplicable,
5252
"statement.field.interface": notApplicable,
5353
"statement.iteration.interface": notApplicable,
54+
"interior.interface": notApplicable,
5455
"name.interface": notApplicable,
5556
"name.field.interface": notApplicable,
5657
"name.iteration.interface": notApplicable,
5758
"type.interface": notApplicable,
5859
"type.field.interface": notApplicable,
5960
"type.iteration.interface": notApplicable,
60-
"interior.interface": notApplicable,
6161

6262
anonymousFunction: notApplicable,
6363
"argument.actual.constructor.singleLine": notApplicable,

packages/common/src/scopeSupportFacets/talon.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,13 +71,13 @@ export const talonScopeSupport: LanguageScopeSupportFacetMap = {
7171
"statement.interface": notApplicable,
7272
"statement.field.interface": notApplicable,
7373
"statement.iteration.interface": notApplicable,
74+
"interior.interface": notApplicable,
7475
"name.interface": notApplicable,
7576
"name.field.interface": notApplicable,
7677
"name.iteration.interface": notApplicable,
7778
"type.interface": notApplicable,
7879
"type.field.interface": notApplicable,
7980
"type.iteration.interface": notApplicable,
80-
"interior.interface": notApplicable,
8181

8282
anonymousFunction: notApplicable,
8383
"argument.actual.multiLine": notApplicable,

packages/common/src/scopeSupportFacets/xml.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,13 +46,13 @@ export const xmlScopeSupport: LanguageScopeSupportFacetMap = {
4646
"statement.interface": notApplicable,
4747
"statement.field.interface": notApplicable,
4848
"statement.iteration.interface": notApplicable,
49+
"interior.interface": notApplicable,
4950
"name.interface": notApplicable,
5051
"name.field.interface": notApplicable,
5152
"name.iteration.interface": notApplicable,
5253
"type.interface": notApplicable,
5354
"type.field.interface": notApplicable,
5455
"type.iteration.interface": notApplicable,
55-
"interior.interface": notApplicable,
5656

5757
anonymousFunction: notApplicable,
5858
"argument.actual.singleLine": notApplicable,

packages/common/src/scopeSupportFacets/yaml.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,13 +55,13 @@ export const yamlScopeSupport: LanguageScopeSupportFacetMap = {
5555
"statement.interface": notApplicable,
5656
"statement.field.interface": notApplicable,
5757
"statement.iteration.interface": notApplicable,
58+
"interior.interface": notApplicable,
5859
"name.interface": notApplicable,
5960
"name.field.interface": notApplicable,
6061
"name.iteration.interface": notApplicable,
6162
"type.interface": notApplicable,
6263
"type.field.interface": notApplicable,
6364
"type.iteration.interface": notApplicable,
64-
"interior.interface": notApplicable,
6565

6666
anonymousFunction: notApplicable,
6767
"argument.actual.singleLine": notApplicable,

0 commit comments

Comments
 (0)