mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
11 lines
253 B
Plaintext
11 lines
253 B
Plaintext
import java
|
|
|
|
query predicate iterator(MethodCall ma, string mn, string t) {
|
|
exists(Method m |
|
|
ma.getMethod() = m and
|
|
m.getName() = "iterator" and
|
|
mn = m.getSignature() and
|
|
t = ma.getMethod().getDeclaringType().getQualifiedName()
|
|
)
|
|
}
|