Bug 1893067 - Add actions key to glean urlbar metrics. r=mak,urlbar-reviewers
[gecko.git] / js / src / tests / test262 / built-ins / RegExp / regexp-modifiers / remove-multiline.js
blob730888a662535be9f085f945ee7c7834282706f1
1 // |reftest| skip -- regexp-modifiers is not supported
2 // Copyright 2023 Ron Buckton. All rights reserved.
3 // This code is governed by the BSD license found in the LICENSE file.
5 /*---
6 author: Ron Buckton
7 description: >
8   multiline (`m`) modifier can be removed via `(?-m:)`.
9 info: |
10   Runtime Semantics: CompileAtom
11   The syntax-directed operation CompileAtom takes arguments direction (forward or backward) and modifiers (a Modifiers Record) and returns a Matcher.
13   Atom :: `(` `?` RegularExpressionFlags `-` RegularExpressionFlags `:` Disjunction `)`
14     1. Let addModifiers be the source text matched by the first RegularExpressionFlags.
15     2. Let removeModifiers be the source text matched by the second RegularExpressionFlags.
16     3. Let newModifiers be UpdateModifiers(modifiers, CodePointsToString(addModifiers), CodePointsToString(removeModifiers)).
17     4. Return CompileSubpattern of Disjunction with arguments direction and newModifiers.
19   UpdateModifiers ( modifiers, add, remove )
20   The abstract operation UpdateModifiers takes arguments modifiers (a Modifiers Record), add (a String), and remove (a String) and returns a Modifiers. It performs the following steps when called:
22   1. Let dotAll be modifiers.[[DotAll]].
23   2. Let ignoreCase be modifiers.[[IgnoreCase]].
24   3. Let multiline be modifiers.[[Multiline]].
25   4. If add contains "s", set dotAll to true.
26   5. If add contains "i", set ignoreCase to true.
27   6. If add contains "m", set multiline to true.
28   7. If remove contains "s", set dotAll to false.
29   8. If remove contains "i", set ignoreCase to false.
30   9. If remove contains "m", set multiline to false.
31   10. Return the Modifiers Record { [[DotAll]]: dotAll, [[IgnoreCase]]: ignoreCase, [[Multiline]]: multiline }.
33 esid: sec-compileatom
34 features: [regexp-modifiers]
35 ---*/
37 var re1 = /^(?-m:es$)/m;
38 assert(!re1.test("\nes\ns"), "$ should not match newline in modified group");
39 assert(re1.test("\nes"), "$ should match end of input in modified group");
41 var re2 = new RegExp("^(?-m:es$)", "m");
42 assert(!re2.test("\nes\ns"), "$ should not match newline in modified group");
43 assert(re2.test("\nes"), "$ should match end of input in modified group");
45 reportCompare(0, 0);