mirror of
https://github.com/github/codeql.git
synced 2025-12-19 18:33:16 +01:00
9 lines
217 B
Plaintext
9 lines
217 B
Plaintext
import default
|
|
import semmle.code.java.Maps
|
|
|
|
from Variable v, MapType mt
|
|
where
|
|
v.fromSource() and
|
|
mt = v.getType()
|
|
select v, mt.toString(), mt.getKeyType().getQualifiedName(), mt.getValueType().getQualifiedName()
|