mirror of
https://github.com/github/codeql.git
synced 2025-12-19 18:33:16 +01:00
8 lines
264 B
Plaintext
8 lines
264 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 MethodAccess ma
|
|
select ma, ma.getQualifier(), ma.getAnArgument()
|