mirror of
https://github.com/github/codeql.git
synced 2025-12-16 16:53:25 +01:00
15 lines
272 B
Plaintext
15 lines
272 B
Plaintext
/**
|
|
* @name Functions with many parameters
|
|
* @description Finds functions or methods with more than 10 parameters
|
|
* @tags function
|
|
* method
|
|
* parameter
|
|
* argument
|
|
*/
|
|
|
|
import cpp
|
|
|
|
from Function fcn
|
|
where fcn.getNumberOfParameters() > 10
|
|
select fcn
|