mirror of
https://github.com/github/codeql.git
synced 2026-02-28 04:43:42 +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() }
|