mirror of
https://github.com/github/codeql.git
synced 2025-12-16 16:53:25 +01:00
14 lines
290 B
Plaintext
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
|