Files
codeql/java/ql/integration-tests/all-platforms/kotlin/enhanced-nullability/test.ql
2022-10-28 10:53:45 +01:00

10 lines
222 B
Plaintext

import java
query predicate exprs(Expr e, string t) {
e.getEnclosingCallable().getDeclaringType().fromSource() and t = e.getType().toString()
}
from Method m
where m.fromSource()
select m, m.getAParamType().toString()