We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9170f3b + 0652b20 commit 219b3c7Copy full SHA for 219b3c7
substratevm/src/com.oracle.svm.hosted/src/com/oracle/svm/hosted/FeatureHandler.java
@@ -105,6 +105,10 @@ public void forEachGraalFeature(Consumer<InternalFeature> consumer) {
105
}
106
107
108
+ public boolean containsFeature(Class<?> c) {
109
+ return registeredFeatures.contains(c);
110
+ }
111
+
112
@SuppressWarnings("unchecked")
113
public void registerFeatures(ImageClassLoader loader, DebugContext debug) {
114
IsInConfigurationAccessImpl access = new IsInConfigurationAccessImpl(this, loader, debug);
0 commit comments