Files
codeql/java/ql/lib
Ian Lynagh 75e22da096 Kotlin: Fix extraction of dispatch and extension receivers
It is possible for a call to have both, e.g. the `arg.ext()` call in:

class Class1 {
    val y = 4
}
class Class2 (val arg:Class1) {
    val x = 3
    fun someFun() {
        arg.ext();
    }
    fun Class1.ext() {
        val z = x + y
    }
}
2022-05-10 19:51:07 +01:00
..
2022-03-21 11:51:36 +00:00
2022-04-28 14:14:19 +02:00
2021-08-19 14:09:35 -07:00
2021-08-20 20:01:29 -07:00
2022-05-10 18:46:01 +01:00
2021-08-19 14:09:35 -07:00
2022-02-02 13:30:45 +01:00