We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ebb52ad commit 3d63cecCopy full SHA for 3d63cec
java/ql/test/kotlin/library-tests/kotlin-java-map-entries/test.ql
@@ -1,6 +1,7 @@
1
import java
2
3
from Method m, TypeVariable param
4
-where m.getDeclaringType().getQualifiedName() = "java.util.Map$Entry"
5
-and param = m.(GenericCallable).getATypeParameter()
+where
+ m.getDeclaringType().getQualifiedName() = "java.util.Map$Entry" and
6
+ param = m.(GenericCallable).getATypeParameter()
7
select m.toString(), param.toString(), param.getATypeBound().toString()
0 commit comments