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.
1 parent d710660 commit 93a4a74Copy full SHA for 93a4a74
substratevm/src/com.oracle.svm.core/src/com/oracle/svm/core/hub/DynamicHub.java
@@ -1877,6 +1877,8 @@ public DynamicHub arrayType() {
1877
}
1878
if (companion.arrayHub == null) {
1879
MissingReflectionRegistrationUtils.forClass(getTypeName() + "[]");
1880
+ } else if (MetadataTracer.Options.MetadataTracingSupport.getValue() && MetadataTracer.singleton().enabled() && !isPrimitive()) {
1881
+ MetadataTracer.singleton().traceReflectionType(companion.arrayHub.getTypeName());
1882
1883
return companion.arrayHub;
1884
0 commit comments