@@ -98,6 +98,7 @@ export const javaScopeSupport: LanguageScopeSupportFacetMap = {
9898 statement : supported ,
9999 "statement.class" : supported ,
100100 "statement.interface" : supported ,
101+ "statement.enum" : supported ,
101102 "statement.field.class" : supported ,
102103 "statement.field.interface" : supported ,
103104 "statement.iteration.block" : supported ,
@@ -121,15 +122,18 @@ export const javaScopeSupport: LanguageScopeSupportFacetMap = {
121122 "name.assignment" : supported ,
122123 "name.class" : supported ,
123124 "name.interface" : supported ,
125+ "name.enum" : supported ,
124126 "name.constructor" : supported ,
125127 "name.field.class" : supported ,
126128 "name.field.interface" : supported ,
129+ "name.field.enum" : supported ,
127130 "name.foreach" : supported ,
128131 "name.method" : supported ,
129132 "name.variable" : supported ,
130133 "name.iteration.document" : supported ,
131134 "name.iteration.class" : supported ,
132135 "name.iteration.interface" : supported ,
136+ "name.iteration.enum" : supported ,
133137 "name.iteration.block" : supported ,
134138 "name.resource" : supported ,
135139
@@ -168,6 +172,7 @@ export const javaScopeSupport: LanguageScopeSupportFacetMap = {
168172
169173 "interior.class" : supported ,
170174 "interior.interface" : supported ,
175+ "interior.enum" : supported ,
171176 "interior.constructor" : supported ,
172177 "interior.method" : supported ,
173178 "interior.if" : supported ,
@@ -279,6 +284,10 @@ export const javaScopeSupport: LanguageScopeSupportFacetMap = {
279284 "branch.loop" : notApplicable ,
280285 "branch.loop.iteration" : notApplicable ,
281286
287+ // Values in enum
288+ "value.field.enum" : notApplicable ,
289+ "value.iteration.enum" : notApplicable ,
290+
282291 // Miscellaneous
283292 "value.yield" : notApplicable ,
284293 pairDelimiter : notApplicable ,
0 commit comments