mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
8 lines
245 B
Plaintext
8 lines
245 B
Plaintext
import java
|
|
|
|
from Method m, TypeVariable param
|
|
where
|
|
m.getDeclaringType().getQualifiedName() = "java.util.Map$Entry" and
|
|
param = m.(GenericCallable).getATypeParameter()
|
|
select m.toString(), param.toString(), param.getATypeBound().toString()
|