mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
14 lines
244 B
Plaintext
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
|