Bug 1892041 - Part 2: Update test262. r=spidermonkey-reviewers,dminor
[gecko.git] / js / src / tests / test262 / language / literals / regexp / early-err-modifiers-should-not-case-fold-s.js
bloba2c4ba26dba8aadf34599b81fc32fee82e310773
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" (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 :: ( ? RegularExpresisonFlags : Disjunction )
14     It is a Syntax Error if the source text matched by RegularExpressionFlags contains any code points other than "i", "m", "s", or if it contains the same code point more than once.
16 ---*/
18 $DONOTEVALUATE();
20 /(?S:a)//*{ global-modifiers }*/;