mirror of
https://github.com/github/codeql.git
synced 2025-12-17 01:03:14 +01:00
15 lines
285 B
Plaintext
15 lines
285 B
Plaintext
/**
|
|
* @name Call to method
|
|
* @description Finds calls to MyClass.methodName
|
|
* @tags call
|
|
* method
|
|
*/
|
|
|
|
import python
|
|
|
|
from AstNode call, FunctionObject method
|
|
where
|
|
method.getQualifiedName() = "MyClass.methodName" and
|
|
method.getACall().getNode() = call
|
|
select call
|