mirror of
https://github.com/github/codeql.git
synced 2026-07-16 00:38:15 +02:00
This adds Alert annotations for alerts that seem intentional by the test but has not been annotated with 'NOT OK', or the comment was in the wrong place. In a few cases I included 'Source' expectations to make it easier to see what happened. Other 'Source' expectations will be added in bulk a later commit.
14 lines
297 B
JavaScript
14 lines
297 B
JavaScript
/[foo]/; // $ Alert
|
|
/[a-zc]/;
|
|
/[\uDC3A\uDC3C]/;
|
|
/[??]/; // $ Alert
|
|
/[\u003F\u003f]/; // $ Alert
|
|
/[\u003F?]/; // $ Alert
|
|
/[\x3f\u003f]/; // $ Alert
|
|
/[aaa]/; // $ Alert
|
|
/[\x0a\x0a]/; // $ Alert
|
|
/[\u000a\n]/; // $ Alert
|
|
/[\u{ff}]/;
|
|
/[\u{12340}-\u{12345}]/u;
|
|
new RegExp("[\u{12340}-\u{12345}]", "u");
|