Files
2019-08-02 15:33:40 +02:00

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