mirror of
https://github.com/github/codeql.git
synced 2025-12-18 01:33:15 +01:00
10 lines
262 B
JavaScript
10 lines
262 B
JavaScript
/\1(abc)/; // $ Alert
|
|
/(a\1c)/; // $ Alert
|
|
/(ab)\2(c)/; // $ Alert
|
|
/(?:ab)\1(c)/; // $ Alert
|
|
/(abc)\1/;
|
|
/<tpl\b[^>]*>((?:(?=([^<]+))\2|<(?!tpl\b[^>]*>))*?)<\/tpl>/;
|
|
/\k<ws>(?<ws>\w+)/; // $ Alert
|
|
/(?<=\1(.))a/;
|
|
/(?<=(.)\1)a/; // $ MISSING: Alert
|