Files
codeql/java/ql/test/kotlin/library-tests/enum/test.ql
Chris Smowton 837bef60fe Add java.lang.Enum ordinal and name accessors to special-cased JVM names
Kotlin represents these as read-only properties with unusual getter names.
2022-06-14 21:44:54 +01:00

6 lines
100 B
Plaintext

import java
from Method m
where m.getDeclaringType().getName().matches("Enum%")
select m.getName()