Files
Taus 2732a652ab Python: Fix example snippets
One might argue that these should be rewritten entirely to use more
modern APIs, but for now I'll be content with just having them compile
properly.
2025-11-26 12:30:30 +00:00

15 lines
289 B
Plaintext

/**
* @id py/examples/call
* @name Calls to function
* @description Finds calls to any function named "len"
* @tags call
* function
*/
import python
private import LegacyPointsTo
from Value len, CallNode call
where len.getName() = "len" and len.getACall() = call
select call