mirror of
https://github.com/github/codeql.git
synced 2025-12-21 19:26:31 +01:00
8 lines
206 B
Plaintext
8 lines
206 B
Plaintext
import java
|
|
import semmle.code.java.Diagnostics
|
|
|
|
from MethodAccess ma
|
|
select ma, ma.getCallee().getDeclaringType().getQualifiedName(), ma.getCallee().getName()
|
|
|
|
query predicate diag(Diagnostic d) { any() }
|