mirror of
https://github.com/github/codeql.git
synced 2026-03-01 13:23:49 +01:00
10 lines
222 B
Plaintext
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()
|