Bug 1897989 - Add Wasm exception-handling tests for JSPI. r=rhunt
[gecko.git] / js / src / tests / test262 / built-ins / RegExp / syntax-err-arithmetic-modifiers-reverse-other-code-point-y.js
blobbc13bdfb1c71b8c787b73cb38428233ea28c52f1
1 // |reftest| skip -- 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: It is a Syntax Error if the source text matched by RegularExpressionFlags contains any code point other than i, m, or s, or if it contains the same code point more than once. (arithmetic regular expression flags)
7 esid: sec-patterns-static-semantics-early-errors
8 features: [regexp-modifiers]
9 info: |
10     Atom :: ( ? RegularExpressionFlags - RegularExpressionFlags : Disjunction )
11     ...
13 ---*/
15 assert.throws(SyntaxError, function () {
16   RegExp("(?y-:a)", "");
17 }, 'RegExp("(?y-:a)", ""): ');
19 reportCompare(0, 0);