Files
codeql/javascript/ql/examples/snippets/newexpr.ql
2019-07-26 17:47:11 +02:00

14 lines
244 B
Plaintext

/**
* @name New expressions
* @description Finds new expressions of the form `new RegExp(...)`
* @tags new
* constructor
* instantiation
*/
import javascript
from NewExpr new
where new.getCalleeName() = "RegExp"
select new