mirror of
https://github.com/github/codeql.git
synced 2026-02-24 10:53:49 +01:00
8 lines
219 B
Plaintext
8 lines
219 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()
|