Files
codeql/java/ql/test/library-tests/collections/Maps.ql
2018-10-11 11:31:37 +02:00

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()