Backed out 2 changesets (bug 1888310, bug 1884625) for causing failures on browser_ap...
[gecko.git] / js / src / tests / test262 / language / literals / regexp / early-err-arithmetic-modifiers-should-not-case-fold-m.js
blob4afe34ff44af5e87399fb24fe8112321ec7032ca
1 // |reftest| skip error:SyntaxError -- regexp-modifiers is not supported
2 // Copyright (C) 2024 Igalia, S.L. All rights reserved.
3 // This code is governed by the BSD license found in the LICENSE file.
5 /*---
6 description: Code points other than "i", "m", "s" should not be case folded to "i", "m", or "s" (arithmetic regular expression flags)
7 esid: sec-patterns-static-semantics-early-errors
8 features: [regexp-modifiers]
9 negative:
10   phase: parse
11   type: SyntaxError
12 info: |
13     Atom :: ( ? RegularExpressionFlags - RegularExpressionFlags : Disjunction )
14     ...
16 ---*/
18 $DONOTEVALUATE();
20 /(?-M:a)//*{ global-modifiers }*/;