mirror of
https://github.com/github/codeql.git
synced 2025-12-19 10:23:15 +01:00
34 lines
250 B
JavaScript
34 lines
250 B
JavaScript
/\[^(.css$)]/; // $ Alert
|
|
|
|
|
|
/a(b$|c)/;
|
|
|
|
|
|
/(a|b$)c*/;
|
|
|
|
/a$\nb/; // $ Alert
|
|
|
|
|
|
/a$\nb/m;
|
|
|
|
/a$\\nb/m; // $ MISSING: Alert
|
|
|
|
/a$b*c/; // $ Alert
|
|
|
|
|
|
/^(^y|^z)(u$|v$)$/;
|
|
|
|
|
|
/.*x$$$/;
|
|
|
|
|
|
/x$y*/;
|
|
|
|
|
|
/x(?!y+$).*y.*/;
|
|
|
|
|
|
/x(?=[yz]+$).*yz.*/;
|
|
|
|
/(?<=$x)yz/; // $ Alert
|