Files
codeql/java/ql/test/library-tests/collections/Maps.ql
2018-08-30 10:48:05 +01:00

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