mirror of
https://github.com/github/codeql.git
synced 2025-12-19 18:33:16 +01:00
8 lines
265 B
Plaintext
8 lines
265 B
Plaintext
import default
|
|
import semmle.code.java.Maps
|
|
|
|
from Call c, MapMethod mm
|
|
where mm = c.getCallee()
|
|
select c, mm.getDeclaringType().getQualifiedName() + "." + mm.getSignature(),
|
|
mm.getReceiverKeyType().getQualifiedName(), mm.getReceiverValueType().getQualifiedName()
|