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/iife
|
|
* @name Immediately invoked function expressions
|
|
* @description Finds calls of the form `(function(...) { ... })(...)`
|
|
* @tags call
|
|
* function
|
|
* immediately invoked
|
|
*/
|
|
|
|
import javascript
|
|
|
|
from CallExpr c
|
|
where c.getCallee().stripParens() instanceof FunctionExpr
|
|
select c
|