Files
codeql/javascript/ql/test/query-tests/RegExp/UnmatchableDollar/tst.js
2025-02-28 13:27:28 +01:00

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