Files
codeql/javascript/ql/examples/callback.ql
2019-07-26 17:47:11 +02:00

14 lines
290 B
Plaintext

/**
* @name Callbacks
* @description Finds functions that are passed as arguments to other functions
* @tags function
* callback
* higher-order
*/
import javascript
from InvokeExpr invk, DataFlow::FunctionNode f
where f.flowsToExpr(invk.getAnArgument())
select invk, f