mirror of
https://github.com/github/codeql.git
synced 2025-12-19 18:33:16 +01:00
7 lines
144 B
JavaScript
7 lines
144 B
JavaScript
/[\q{abc}]/v;
|
|
/[\q{abc|cbd|dcb}]/v;
|
|
/[\q{\}}]/v;
|
|
/[\q{\{}]/v;
|
|
/[\q{cc|\}a|cc}]/v;
|
|
/[\qq{a|b}]/; // Since v flag is not present matches 'q{a|b}'
|