mirror of
https://github.com/github/codeql.git
synced 2026-02-24 10:53:49 +01:00
8 lines
194 B
Plaintext
8 lines
194 B
Plaintext
import java
|
|
import semmle.code.java.DependencyCounts
|
|
|
|
from RefType t, RefType dep, int num
|
|
where numDepends(t, dep, num)
|
|
and t.getFile().getStem() = "Example"
|
|
select t, dep.getName(), num
|