mirror of
https://github.com/github/codeql.git
synced 2025-12-17 01:03:14 +01:00
14 lines
259 B
Plaintext
14 lines
259 B
Plaintext
/**
|
|
* @id py/examples/call
|
|
* @name Calls to function
|
|
* @description Finds calls to any function named "len"
|
|
* @tags call
|
|
* function
|
|
*/
|
|
|
|
import python
|
|
|
|
from Value len, CallNode call
|
|
where len.getName() = "len" and len.getACall() = call
|
|
select call
|