mirror of
https://github.com/github/codeql.git
synced 2025-12-18 01:33:15 +01:00
9 lines
192 B
Plaintext
9 lines
192 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
|