Bug 1892041 - Part 2: Update test262. r=spidermonkey-reviewers,dminor
[gecko.git] / js / src / tests / test262 / built-ins / RegExp / regexp-modifiers / add-ignoreCase-affects-characterEscapes.js
blob98fa435027c03ecb4bbacf026bbb9fb3e75b5125
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   Adding ignoreCase (`i`) modifier in group affects character escapes in group.
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 `:` Disjunction `)`
14     1. Let addModifiers be the source text matched by RegularExpressionFlags.
15     2. Let removeModifiers be the empty String.
16     3. Let newModifiers be UpdateModifiers(modifiers, CodePointsToString(addModifiers), removeModifiers).
17     4. Return CompileSubpattern of Disjunction with arguments direction and newModifiers.
19   Atom :: `(` `?` RegularExpressionFlags `-` RegularExpressionFlags `:` Disjunction `)`
20     1. Let addModifiers be the source text matched by the first RegularExpressionFlags.
21     2. Let removeModifiers be the source text matched by the second RegularExpressionFlags.
22     3. Let newModifiers be UpdateModifiers(modifiers, CodePointsToString(addModifiers), CodePointsToString(removeModifiers)).
23     4. Return CompileSubpattern of Disjunction with arguments direction and newModifiers.
25   UpdateModifiers ( modifiers, add, remove )
26   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:
28   1. Let dotAll be modifiers.[[DotAll]].
29   2. Let ignoreCase be modifiers.[[IgnoreCase]].
30   3. Let multiline be modifiers.[[Multiline]].
31   4. If add contains "s", set dotAll to true.
32   5. If add contains "i", set ignoreCase to true.
33   6. If add contains "m", set multiline to true.
34   7. If remove contains "s", set dotAll to false.
35   8. If remove contains "i", set ignoreCase to false.
36   9. If remove contains "m", set multiline to false.
37   10. Return the Modifiers Record { [[DotAll]]: dotAll, [[IgnoreCase]]: ignoreCase, [[Multiline]]: multiline }.
39 esid: sec-compileatom
40 features: [regexp-modifiers]
41 ---*/
43 var re1 = /(?i:\x61)b/;
44 assert(re1.test("ab"), "\\x61 should match a");
45 assert(re1.test("Ab"), "\\x61 should match A");
47 var re2 = /(?i:\u0061)b/;
48 assert(re2.test("ab"), "\\u0061 should match a");
49 assert(re2.test("Ab"), "\\u0061 should match A");
51 var re3 = /(?i:\u{0061})b/u;
52 assert(re3.test("ab"), "\\u0061 should match a");
53 assert(re3.test("Ab"), "\\u0061 should match A");
55 var re4 = /(?i-:\x61)b/;
56 assert(re4.test("ab"), "\\x61 should match a");
57 assert(re4.test("Ab"), "\\x61 should match A");
59 var re5 = /(?i-:\u0061)b/;
60 assert(re5.test("ab"), "\\u0061 should match a");
61 assert(re5.test("Ab"), "\\u0061 should match A");
63 var re6 = /(?i-:\u{0061})b/u;
64 assert(re6.test("ab"), "\\u0061 should match a");
65 assert(re6.test("Ab"), "\\u0061 should match A");
67 reportCompare(0, 0);