mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
15 lines
317 B
Plaintext
15 lines
317 B
Plaintext
/**
|
|
* @id js/examples/callback
|
|
* @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
|