Files
codeql/java/ql/test/kotlin/library-tests/data-classes/callees.ql
Chris Smowton aab271d81e Fix extraction of data classes with array members
These use compiler-internal intrinsics at the IR layer, which are later lowered to java.util.Arrays calls. This performs that lowering in the same manner.
2022-05-10 19:51:25 +01:00

6 lines
112 B
Plaintext

import java
from Call c
where c.getEnclosingCallable().fromSource()
select c, c.getCallee().getQualifiedName()