Bug 1892041 - Part 2: Update test262. r=spidermonkey-reviewers,dminor
[gecko.git] / js / src / tests / test262 / built-ins / RegExp / regexp-modifiers / remove-ignoreCase-affects-slash-lower-b.js
blobb8b51d794b5f4d47c4ee68a8bcfabf5f86e8bbb3
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   Removing ignoreCase (`i`) modifier affects matching for `\b`.
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   GetWordCharacters ( modifiers )
40   The abstract operation GetWordCharacters takes argument modifiers (a Modifiers Record) and returns a CharSet. It performs the following steps when called:
42   1. Let wordCharacters be the mathematical set that is the union of all sixty-three characters in "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789_" (letters, numbers, and U+005F (LOW LINE) in the Unicode Basic Latin block) and all characters c for which c is not in that set but Canonicalize(c, modifiers) is.
43   2. Return wordCharacters.
45 esid: sec-compileatom
46 features: [regexp-modifiers]
47 ---*/
49 var re1 = /(?-i:\b)/ui;
50 assert(!re1.test("\u017f"), "\\b should not match after \u017f");
51 assert(!re1.test("\u212a"), "\\b should not match after \u212a");
53 reportCompare(0, 0);