Files
codeql/javascript/ql/examples/snippets/toomanyparams.ql
2019-08-02 15:33:40 +02:00

15 lines
274 B
Plaintext

/**
* @id js/examples/toomanyparams
* @name Functions with many parameters
* @description Finds functions with more than ten parameters
* @tags function
* parameter
* argument
*/
import javascript
from Function f
where f.getNumParameter() > 10
select f