mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
8 lines
262 B
Plaintext
8 lines
262 B
Plaintext
import java
|
|
|
|
// For extension methods we use JVM bytecode representation:
|
|
// * the qualifier is the dispatch receiver expression, and
|
|
// * the extension receiver expression is the 0th argument.
|
|
from MethodCall ma
|
|
select ma, ma.getQualifier(), ma.getAnArgument()
|