mirror of
https://github.com/tc39/test262.git
synced 2025-04-08 19:35:28 +02:00
regexp-generator: Update ECMA-262 quote in header
While we're touching this we may as well update the quote from ECMA-262 to match what it currently says.
This commit is contained in:
parent
3aec6e3729
commit
7e1f1e749d
@ -10,29 +10,36 @@ info: |
|
||||
https://github.com/tc39/test262/tree/main/tools/regexp-generator/
|
||||
for any changes.
|
||||
|
||||
CharacterClassEscape[U] ::
|
||||
CharacterClassEscape[UnicodeMode] ::
|
||||
d
|
||||
D
|
||||
s
|
||||
S
|
||||
w
|
||||
W
|
||||
[+UnicodeMode] p{ UnicodePropertyValueExpression }
|
||||
[+UnicodeMode] P{ UnicodePropertyValueExpression }
|
||||
|
||||
21.2.2.12 CharacterClassEscape
|
||||
22.2.2.9 Runtime Semantics: CompileToCharSet
|
||||
|
||||
The production CharacterClassEscape :: d evaluates as follows:
|
||||
Return the ten-element set of characters containing the characters 0 through 9 inclusive.
|
||||
The production CharacterClassEscape :: D evaluates as follows:
|
||||
Return the set of all characters not included in the set returned by CharacterClassEscape :: d.
|
||||
The production CharacterClassEscape :: s evaluates as follows:
|
||||
Return the set of characters containing the characters that are on the right-hand side of
|
||||
the WhiteSpace or LineTerminator productions.
|
||||
The production CharacterClassEscape :: S evaluates as follows:
|
||||
Return the set of all characters not included in the set returned by CharacterClassEscape :: s.
|
||||
The production CharacterClassEscape :: w evaluates as follows:
|
||||
Return the set of all characters returned by WordCharacters().
|
||||
The production CharacterClassEscape :: W evaluates as follows:
|
||||
Return the set of all characters not included in the set returned by CharacterClassEscape :: w.
|
||||
CharacterClassEscape :: d
|
||||
1. Return the ten-element CharSet containing the characters 0, 1, 2, 3,
|
||||
4, 5, 6, 7, 8, and 9.
|
||||
CharacterClassEscape :: D
|
||||
1. Let S be the CharSet returned by CharacterClassEscape :: d.
|
||||
2. Return CharacterComplement(rer, S).
|
||||
CharacterClassEscape :: s
|
||||
1. Return the CharSet containing all characters corresponding to a code
|
||||
point on the right-hand side of the WhiteSpace or LineTerminator
|
||||
productions.
|
||||
CharacterClassEscape :: S
|
||||
1. Let S be the CharSet returned by CharacterClassEscape :: s.
|
||||
2. Return CharacterComplement(rer, S).
|
||||
CharacterClassEscape :: w
|
||||
1. Return MaybeSimpleCaseFolding(rer, WordCharacters(rer)).
|
||||
CharacterClassEscape :: W
|
||||
1. Let S be the CharSet returned by CharacterClassEscape :: w.
|
||||
2. Return CharacterComplement(rer, S).
|
||||
features: [String.fromCodePoint]
|
||||
includes: [regExpUtils.js]
|
||||
flags: [generated]
|
||||
|
@ -10,29 +10,36 @@ info: |
|
||||
https://github.com/tc39/test262/tree/main/tools/regexp-generator/
|
||||
for any changes.
|
||||
|
||||
CharacterClassEscape[U] ::
|
||||
CharacterClassEscape[UnicodeMode] ::
|
||||
d
|
||||
D
|
||||
s
|
||||
S
|
||||
w
|
||||
W
|
||||
[+UnicodeMode] p{ UnicodePropertyValueExpression }
|
||||
[+UnicodeMode] P{ UnicodePropertyValueExpression }
|
||||
|
||||
21.2.2.12 CharacterClassEscape
|
||||
22.2.2.9 Runtime Semantics: CompileToCharSet
|
||||
|
||||
The production CharacterClassEscape :: d evaluates as follows:
|
||||
Return the ten-element set of characters containing the characters 0 through 9 inclusive.
|
||||
The production CharacterClassEscape :: D evaluates as follows:
|
||||
Return the set of all characters not included in the set returned by CharacterClassEscape :: d.
|
||||
The production CharacterClassEscape :: s evaluates as follows:
|
||||
Return the set of characters containing the characters that are on the right-hand side of
|
||||
the WhiteSpace or LineTerminator productions.
|
||||
The production CharacterClassEscape :: S evaluates as follows:
|
||||
Return the set of all characters not included in the set returned by CharacterClassEscape :: s.
|
||||
The production CharacterClassEscape :: w evaluates as follows:
|
||||
Return the set of all characters returned by WordCharacters().
|
||||
The production CharacterClassEscape :: W evaluates as follows:
|
||||
Return the set of all characters not included in the set returned by CharacterClassEscape :: w.
|
||||
CharacterClassEscape :: d
|
||||
1. Return the ten-element CharSet containing the characters 0, 1, 2, 3,
|
||||
4, 5, 6, 7, 8, and 9.
|
||||
CharacterClassEscape :: D
|
||||
1. Let S be the CharSet returned by CharacterClassEscape :: d.
|
||||
2. Return CharacterComplement(rer, S).
|
||||
CharacterClassEscape :: s
|
||||
1. Return the CharSet containing all characters corresponding to a code
|
||||
point on the right-hand side of the WhiteSpace or LineTerminator
|
||||
productions.
|
||||
CharacterClassEscape :: S
|
||||
1. Let S be the CharSet returned by CharacterClassEscape :: s.
|
||||
2. Return CharacterComplement(rer, S).
|
||||
CharacterClassEscape :: w
|
||||
1. Return MaybeSimpleCaseFolding(rer, WordCharacters(rer)).
|
||||
CharacterClassEscape :: W
|
||||
1. Let S be the CharSet returned by CharacterClassEscape :: w.
|
||||
2. Return CharacterComplement(rer, S).
|
||||
features: [String.fromCodePoint]
|
||||
includes: [regExpUtils.js]
|
||||
flags: [generated]
|
||||
|
@ -10,29 +10,36 @@ info: |
|
||||
https://github.com/tc39/test262/tree/main/tools/regexp-generator/
|
||||
for any changes.
|
||||
|
||||
CharacterClassEscape[U] ::
|
||||
CharacterClassEscape[UnicodeMode] ::
|
||||
d
|
||||
D
|
||||
s
|
||||
S
|
||||
w
|
||||
W
|
||||
[+UnicodeMode] p{ UnicodePropertyValueExpression }
|
||||
[+UnicodeMode] P{ UnicodePropertyValueExpression }
|
||||
|
||||
21.2.2.12 CharacterClassEscape
|
||||
22.2.2.9 Runtime Semantics: CompileToCharSet
|
||||
|
||||
The production CharacterClassEscape :: d evaluates as follows:
|
||||
Return the ten-element set of characters containing the characters 0 through 9 inclusive.
|
||||
The production CharacterClassEscape :: D evaluates as follows:
|
||||
Return the set of all characters not included in the set returned by CharacterClassEscape :: d.
|
||||
The production CharacterClassEscape :: s evaluates as follows:
|
||||
Return the set of characters containing the characters that are on the right-hand side of
|
||||
the WhiteSpace or LineTerminator productions.
|
||||
The production CharacterClassEscape :: S evaluates as follows:
|
||||
Return the set of all characters not included in the set returned by CharacterClassEscape :: s.
|
||||
The production CharacterClassEscape :: w evaluates as follows:
|
||||
Return the set of all characters returned by WordCharacters().
|
||||
The production CharacterClassEscape :: W evaluates as follows:
|
||||
Return the set of all characters not included in the set returned by CharacterClassEscape :: w.
|
||||
CharacterClassEscape :: d
|
||||
1. Return the ten-element CharSet containing the characters 0, 1, 2, 3,
|
||||
4, 5, 6, 7, 8, and 9.
|
||||
CharacterClassEscape :: D
|
||||
1. Let S be the CharSet returned by CharacterClassEscape :: d.
|
||||
2. Return CharacterComplement(rer, S).
|
||||
CharacterClassEscape :: s
|
||||
1. Return the CharSet containing all characters corresponding to a code
|
||||
point on the right-hand side of the WhiteSpace or LineTerminator
|
||||
productions.
|
||||
CharacterClassEscape :: S
|
||||
1. Let S be the CharSet returned by CharacterClassEscape :: s.
|
||||
2. Return CharacterComplement(rer, S).
|
||||
CharacterClassEscape :: w
|
||||
1. Return MaybeSimpleCaseFolding(rer, WordCharacters(rer)).
|
||||
CharacterClassEscape :: W
|
||||
1. Let S be the CharSet returned by CharacterClassEscape :: w.
|
||||
2. Return CharacterComplement(rer, S).
|
||||
features: [String.fromCodePoint]
|
||||
includes: [regExpUtils.js]
|
||||
flags: [generated]
|
||||
|
@ -10,29 +10,36 @@ info: |
|
||||
https://github.com/tc39/test262/tree/main/tools/regexp-generator/
|
||||
for any changes.
|
||||
|
||||
CharacterClassEscape[U] ::
|
||||
CharacterClassEscape[UnicodeMode] ::
|
||||
d
|
||||
D
|
||||
s
|
||||
S
|
||||
w
|
||||
W
|
||||
[+UnicodeMode] p{ UnicodePropertyValueExpression }
|
||||
[+UnicodeMode] P{ UnicodePropertyValueExpression }
|
||||
|
||||
21.2.2.12 CharacterClassEscape
|
||||
22.2.2.9 Runtime Semantics: CompileToCharSet
|
||||
|
||||
The production CharacterClassEscape :: d evaluates as follows:
|
||||
Return the ten-element set of characters containing the characters 0 through 9 inclusive.
|
||||
The production CharacterClassEscape :: D evaluates as follows:
|
||||
Return the set of all characters not included in the set returned by CharacterClassEscape :: d.
|
||||
The production CharacterClassEscape :: s evaluates as follows:
|
||||
Return the set of characters containing the characters that are on the right-hand side of
|
||||
the WhiteSpace or LineTerminator productions.
|
||||
The production CharacterClassEscape :: S evaluates as follows:
|
||||
Return the set of all characters not included in the set returned by CharacterClassEscape :: s.
|
||||
The production CharacterClassEscape :: w evaluates as follows:
|
||||
Return the set of all characters returned by WordCharacters().
|
||||
The production CharacterClassEscape :: W evaluates as follows:
|
||||
Return the set of all characters not included in the set returned by CharacterClassEscape :: w.
|
||||
CharacterClassEscape :: d
|
||||
1. Return the ten-element CharSet containing the characters 0, 1, 2, 3,
|
||||
4, 5, 6, 7, 8, and 9.
|
||||
CharacterClassEscape :: D
|
||||
1. Let S be the CharSet returned by CharacterClassEscape :: d.
|
||||
2. Return CharacterComplement(rer, S).
|
||||
CharacterClassEscape :: s
|
||||
1. Return the CharSet containing all characters corresponding to a code
|
||||
point on the right-hand side of the WhiteSpace or LineTerminator
|
||||
productions.
|
||||
CharacterClassEscape :: S
|
||||
1. Let S be the CharSet returned by CharacterClassEscape :: s.
|
||||
2. Return CharacterComplement(rer, S).
|
||||
CharacterClassEscape :: w
|
||||
1. Return MaybeSimpleCaseFolding(rer, WordCharacters(rer)).
|
||||
CharacterClassEscape :: W
|
||||
1. Let S be the CharSet returned by CharacterClassEscape :: w.
|
||||
2. Return CharacterComplement(rer, S).
|
||||
features: [String.fromCodePoint]
|
||||
includes: [regExpUtils.js]
|
||||
flags: [generated]
|
||||
|
@ -10,29 +10,36 @@ info: |
|
||||
https://github.com/tc39/test262/tree/main/tools/regexp-generator/
|
||||
for any changes.
|
||||
|
||||
CharacterClassEscape[U] ::
|
||||
CharacterClassEscape[UnicodeMode] ::
|
||||
d
|
||||
D
|
||||
s
|
||||
S
|
||||
w
|
||||
W
|
||||
[+UnicodeMode] p{ UnicodePropertyValueExpression }
|
||||
[+UnicodeMode] P{ UnicodePropertyValueExpression }
|
||||
|
||||
21.2.2.12 CharacterClassEscape
|
||||
22.2.2.9 Runtime Semantics: CompileToCharSet
|
||||
|
||||
The production CharacterClassEscape :: d evaluates as follows:
|
||||
Return the ten-element set of characters containing the characters 0 through 9 inclusive.
|
||||
The production CharacterClassEscape :: D evaluates as follows:
|
||||
Return the set of all characters not included in the set returned by CharacterClassEscape :: d.
|
||||
The production CharacterClassEscape :: s evaluates as follows:
|
||||
Return the set of characters containing the characters that are on the right-hand side of
|
||||
the WhiteSpace or LineTerminator productions.
|
||||
The production CharacterClassEscape :: S evaluates as follows:
|
||||
Return the set of all characters not included in the set returned by CharacterClassEscape :: s.
|
||||
The production CharacterClassEscape :: w evaluates as follows:
|
||||
Return the set of all characters returned by WordCharacters().
|
||||
The production CharacterClassEscape :: W evaluates as follows:
|
||||
Return the set of all characters not included in the set returned by CharacterClassEscape :: w.
|
||||
CharacterClassEscape :: d
|
||||
1. Return the ten-element CharSet containing the characters 0, 1, 2, 3,
|
||||
4, 5, 6, 7, 8, and 9.
|
||||
CharacterClassEscape :: D
|
||||
1. Let S be the CharSet returned by CharacterClassEscape :: d.
|
||||
2. Return CharacterComplement(rer, S).
|
||||
CharacterClassEscape :: s
|
||||
1. Return the CharSet containing all characters corresponding to a code
|
||||
point on the right-hand side of the WhiteSpace or LineTerminator
|
||||
productions.
|
||||
CharacterClassEscape :: S
|
||||
1. Let S be the CharSet returned by CharacterClassEscape :: s.
|
||||
2. Return CharacterComplement(rer, S).
|
||||
CharacterClassEscape :: w
|
||||
1. Return MaybeSimpleCaseFolding(rer, WordCharacters(rer)).
|
||||
CharacterClassEscape :: W
|
||||
1. Let S be the CharSet returned by CharacterClassEscape :: w.
|
||||
2. Return CharacterComplement(rer, S).
|
||||
features: [String.fromCodePoint]
|
||||
includes: [regExpUtils.js]
|
||||
flags: [generated]
|
||||
|
@ -10,29 +10,36 @@ info: |
|
||||
https://github.com/tc39/test262/tree/main/tools/regexp-generator/
|
||||
for any changes.
|
||||
|
||||
CharacterClassEscape[U] ::
|
||||
CharacterClassEscape[UnicodeMode] ::
|
||||
d
|
||||
D
|
||||
s
|
||||
S
|
||||
w
|
||||
W
|
||||
[+UnicodeMode] p{ UnicodePropertyValueExpression }
|
||||
[+UnicodeMode] P{ UnicodePropertyValueExpression }
|
||||
|
||||
21.2.2.12 CharacterClassEscape
|
||||
22.2.2.9 Runtime Semantics: CompileToCharSet
|
||||
|
||||
The production CharacterClassEscape :: d evaluates as follows:
|
||||
Return the ten-element set of characters containing the characters 0 through 9 inclusive.
|
||||
The production CharacterClassEscape :: D evaluates as follows:
|
||||
Return the set of all characters not included in the set returned by CharacterClassEscape :: d.
|
||||
The production CharacterClassEscape :: s evaluates as follows:
|
||||
Return the set of characters containing the characters that are on the right-hand side of
|
||||
the WhiteSpace or LineTerminator productions.
|
||||
The production CharacterClassEscape :: S evaluates as follows:
|
||||
Return the set of all characters not included in the set returned by CharacterClassEscape :: s.
|
||||
The production CharacterClassEscape :: w evaluates as follows:
|
||||
Return the set of all characters returned by WordCharacters().
|
||||
The production CharacterClassEscape :: W evaluates as follows:
|
||||
Return the set of all characters not included in the set returned by CharacterClassEscape :: w.
|
||||
CharacterClassEscape :: d
|
||||
1. Return the ten-element CharSet containing the characters 0, 1, 2, 3,
|
||||
4, 5, 6, 7, 8, and 9.
|
||||
CharacterClassEscape :: D
|
||||
1. Let S be the CharSet returned by CharacterClassEscape :: d.
|
||||
2. Return CharacterComplement(rer, S).
|
||||
CharacterClassEscape :: s
|
||||
1. Return the CharSet containing all characters corresponding to a code
|
||||
point on the right-hand side of the WhiteSpace or LineTerminator
|
||||
productions.
|
||||
CharacterClassEscape :: S
|
||||
1. Let S be the CharSet returned by CharacterClassEscape :: s.
|
||||
2. Return CharacterComplement(rer, S).
|
||||
CharacterClassEscape :: w
|
||||
1. Return MaybeSimpleCaseFolding(rer, WordCharacters(rer)).
|
||||
CharacterClassEscape :: W
|
||||
1. Let S be the CharSet returned by CharacterClassEscape :: w.
|
||||
2. Return CharacterComplement(rer, S).
|
||||
features: [String.fromCodePoint]
|
||||
includes: [regExpUtils.js]
|
||||
flags: [generated]
|
||||
|
@ -10,29 +10,36 @@ info: |
|
||||
https://github.com/tc39/test262/tree/main/tools/regexp-generator/
|
||||
for any changes.
|
||||
|
||||
CharacterClassEscape[U] ::
|
||||
CharacterClassEscape[UnicodeMode] ::
|
||||
d
|
||||
D
|
||||
s
|
||||
S
|
||||
w
|
||||
W
|
||||
[+UnicodeMode] p{ UnicodePropertyValueExpression }
|
||||
[+UnicodeMode] P{ UnicodePropertyValueExpression }
|
||||
|
||||
21.2.2.12 CharacterClassEscape
|
||||
22.2.2.9 Runtime Semantics: CompileToCharSet
|
||||
|
||||
The production CharacterClassEscape :: d evaluates as follows:
|
||||
Return the ten-element set of characters containing the characters 0 through 9 inclusive.
|
||||
The production CharacterClassEscape :: D evaluates as follows:
|
||||
Return the set of all characters not included in the set returned by CharacterClassEscape :: d.
|
||||
The production CharacterClassEscape :: s evaluates as follows:
|
||||
Return the set of characters containing the characters that are on the right-hand side of
|
||||
the WhiteSpace or LineTerminator productions.
|
||||
The production CharacterClassEscape :: S evaluates as follows:
|
||||
Return the set of all characters not included in the set returned by CharacterClassEscape :: s.
|
||||
The production CharacterClassEscape :: w evaluates as follows:
|
||||
Return the set of all characters returned by WordCharacters().
|
||||
The production CharacterClassEscape :: W evaluates as follows:
|
||||
Return the set of all characters not included in the set returned by CharacterClassEscape :: w.
|
||||
CharacterClassEscape :: d
|
||||
1. Return the ten-element CharSet containing the characters 0, 1, 2, 3,
|
||||
4, 5, 6, 7, 8, and 9.
|
||||
CharacterClassEscape :: D
|
||||
1. Let S be the CharSet returned by CharacterClassEscape :: d.
|
||||
2. Return CharacterComplement(rer, S).
|
||||
CharacterClassEscape :: s
|
||||
1. Return the CharSet containing all characters corresponding to a code
|
||||
point on the right-hand side of the WhiteSpace or LineTerminator
|
||||
productions.
|
||||
CharacterClassEscape :: S
|
||||
1. Let S be the CharSet returned by CharacterClassEscape :: s.
|
||||
2. Return CharacterComplement(rer, S).
|
||||
CharacterClassEscape :: w
|
||||
1. Return MaybeSimpleCaseFolding(rer, WordCharacters(rer)).
|
||||
CharacterClassEscape :: W
|
||||
1. Let S be the CharSet returned by CharacterClassEscape :: w.
|
||||
2. Return CharacterComplement(rer, S).
|
||||
features: [String.fromCodePoint]
|
||||
includes: [regExpUtils.js]
|
||||
flags: [generated]
|
||||
|
@ -10,29 +10,36 @@ info: |
|
||||
https://github.com/tc39/test262/tree/main/tools/regexp-generator/
|
||||
for any changes.
|
||||
|
||||
CharacterClassEscape[U] ::
|
||||
CharacterClassEscape[UnicodeMode] ::
|
||||
d
|
||||
D
|
||||
s
|
||||
S
|
||||
w
|
||||
W
|
||||
[+UnicodeMode] p{ UnicodePropertyValueExpression }
|
||||
[+UnicodeMode] P{ UnicodePropertyValueExpression }
|
||||
|
||||
21.2.2.12 CharacterClassEscape
|
||||
22.2.2.9 Runtime Semantics: CompileToCharSet
|
||||
|
||||
The production CharacterClassEscape :: d evaluates as follows:
|
||||
Return the ten-element set of characters containing the characters 0 through 9 inclusive.
|
||||
The production CharacterClassEscape :: D evaluates as follows:
|
||||
Return the set of all characters not included in the set returned by CharacterClassEscape :: d.
|
||||
The production CharacterClassEscape :: s evaluates as follows:
|
||||
Return the set of characters containing the characters that are on the right-hand side of
|
||||
the WhiteSpace or LineTerminator productions.
|
||||
The production CharacterClassEscape :: S evaluates as follows:
|
||||
Return the set of all characters not included in the set returned by CharacterClassEscape :: s.
|
||||
The production CharacterClassEscape :: w evaluates as follows:
|
||||
Return the set of all characters returned by WordCharacters().
|
||||
The production CharacterClassEscape :: W evaluates as follows:
|
||||
Return the set of all characters not included in the set returned by CharacterClassEscape :: w.
|
||||
CharacterClassEscape :: d
|
||||
1. Return the ten-element CharSet containing the characters 0, 1, 2, 3,
|
||||
4, 5, 6, 7, 8, and 9.
|
||||
CharacterClassEscape :: D
|
||||
1. Let S be the CharSet returned by CharacterClassEscape :: d.
|
||||
2. Return CharacterComplement(rer, S).
|
||||
CharacterClassEscape :: s
|
||||
1. Return the CharSet containing all characters corresponding to a code
|
||||
point on the right-hand side of the WhiteSpace or LineTerminator
|
||||
productions.
|
||||
CharacterClassEscape :: S
|
||||
1. Let S be the CharSet returned by CharacterClassEscape :: s.
|
||||
2. Return CharacterComplement(rer, S).
|
||||
CharacterClassEscape :: w
|
||||
1. Return MaybeSimpleCaseFolding(rer, WordCharacters(rer)).
|
||||
CharacterClassEscape :: W
|
||||
1. Let S be the CharSet returned by CharacterClassEscape :: w.
|
||||
2. Return CharacterComplement(rer, S).
|
||||
features: [String.fromCodePoint]
|
||||
includes: [regExpUtils.js]
|
||||
flags: [generated]
|
||||
|
@ -10,29 +10,36 @@ info: |
|
||||
https://github.com/tc39/test262/tree/main/tools/regexp-generator/
|
||||
for any changes.
|
||||
|
||||
CharacterClassEscape[U] ::
|
||||
CharacterClassEscape[UnicodeMode] ::
|
||||
d
|
||||
D
|
||||
s
|
||||
S
|
||||
w
|
||||
W
|
||||
[+UnicodeMode] p{ UnicodePropertyValueExpression }
|
||||
[+UnicodeMode] P{ UnicodePropertyValueExpression }
|
||||
|
||||
21.2.2.12 CharacterClassEscape
|
||||
22.2.2.9 Runtime Semantics: CompileToCharSet
|
||||
|
||||
The production CharacterClassEscape :: d evaluates as follows:
|
||||
Return the ten-element set of characters containing the characters 0 through 9 inclusive.
|
||||
The production CharacterClassEscape :: D evaluates as follows:
|
||||
Return the set of all characters not included in the set returned by CharacterClassEscape :: d.
|
||||
The production CharacterClassEscape :: s evaluates as follows:
|
||||
Return the set of characters containing the characters that are on the right-hand side of
|
||||
the WhiteSpace or LineTerminator productions.
|
||||
The production CharacterClassEscape :: S evaluates as follows:
|
||||
Return the set of all characters not included in the set returned by CharacterClassEscape :: s.
|
||||
The production CharacterClassEscape :: w evaluates as follows:
|
||||
Return the set of all characters returned by WordCharacters().
|
||||
The production CharacterClassEscape :: W evaluates as follows:
|
||||
Return the set of all characters not included in the set returned by CharacterClassEscape :: w.
|
||||
CharacterClassEscape :: d
|
||||
1. Return the ten-element CharSet containing the characters 0, 1, 2, 3,
|
||||
4, 5, 6, 7, 8, and 9.
|
||||
CharacterClassEscape :: D
|
||||
1. Let S be the CharSet returned by CharacterClassEscape :: d.
|
||||
2. Return CharacterComplement(rer, S).
|
||||
CharacterClassEscape :: s
|
||||
1. Return the CharSet containing all characters corresponding to a code
|
||||
point on the right-hand side of the WhiteSpace or LineTerminator
|
||||
productions.
|
||||
CharacterClassEscape :: S
|
||||
1. Let S be the CharSet returned by CharacterClassEscape :: s.
|
||||
2. Return CharacterComplement(rer, S).
|
||||
CharacterClassEscape :: w
|
||||
1. Return MaybeSimpleCaseFolding(rer, WordCharacters(rer)).
|
||||
CharacterClassEscape :: W
|
||||
1. Let S be the CharSet returned by CharacterClassEscape :: w.
|
||||
2. Return CharacterComplement(rer, S).
|
||||
features: [String.fromCodePoint]
|
||||
includes: [regExpUtils.js]
|
||||
flags: [generated]
|
||||
|
@ -10,29 +10,36 @@ info: |
|
||||
https://github.com/tc39/test262/tree/main/tools/regexp-generator/
|
||||
for any changes.
|
||||
|
||||
CharacterClassEscape[U] ::
|
||||
CharacterClassEscape[UnicodeMode] ::
|
||||
d
|
||||
D
|
||||
s
|
||||
S
|
||||
w
|
||||
W
|
||||
[+UnicodeMode] p{ UnicodePropertyValueExpression }
|
||||
[+UnicodeMode] P{ UnicodePropertyValueExpression }
|
||||
|
||||
21.2.2.12 CharacterClassEscape
|
||||
22.2.2.9 Runtime Semantics: CompileToCharSet
|
||||
|
||||
The production CharacterClassEscape :: d evaluates as follows:
|
||||
Return the ten-element set of characters containing the characters 0 through 9 inclusive.
|
||||
The production CharacterClassEscape :: D evaluates as follows:
|
||||
Return the set of all characters not included in the set returned by CharacterClassEscape :: d.
|
||||
The production CharacterClassEscape :: s evaluates as follows:
|
||||
Return the set of characters containing the characters that are on the right-hand side of
|
||||
the WhiteSpace or LineTerminator productions.
|
||||
The production CharacterClassEscape :: S evaluates as follows:
|
||||
Return the set of all characters not included in the set returned by CharacterClassEscape :: s.
|
||||
The production CharacterClassEscape :: w evaluates as follows:
|
||||
Return the set of all characters returned by WordCharacters().
|
||||
The production CharacterClassEscape :: W evaluates as follows:
|
||||
Return the set of all characters not included in the set returned by CharacterClassEscape :: w.
|
||||
CharacterClassEscape :: d
|
||||
1. Return the ten-element CharSet containing the characters 0, 1, 2, 3,
|
||||
4, 5, 6, 7, 8, and 9.
|
||||
CharacterClassEscape :: D
|
||||
1. Let S be the CharSet returned by CharacterClassEscape :: d.
|
||||
2. Return CharacterComplement(rer, S).
|
||||
CharacterClassEscape :: s
|
||||
1. Return the CharSet containing all characters corresponding to a code
|
||||
point on the right-hand side of the WhiteSpace or LineTerminator
|
||||
productions.
|
||||
CharacterClassEscape :: S
|
||||
1. Let S be the CharSet returned by CharacterClassEscape :: s.
|
||||
2. Return CharacterComplement(rer, S).
|
||||
CharacterClassEscape :: w
|
||||
1. Return MaybeSimpleCaseFolding(rer, WordCharacters(rer)).
|
||||
CharacterClassEscape :: W
|
||||
1. Let S be the CharSet returned by CharacterClassEscape :: w.
|
||||
2. Return CharacterComplement(rer, S).
|
||||
features: [String.fromCodePoint]
|
||||
includes: [regExpUtils.js]
|
||||
flags: [generated]
|
||||
|
@ -10,29 +10,36 @@ info: |
|
||||
https://github.com/tc39/test262/tree/main/tools/regexp-generator/
|
||||
for any changes.
|
||||
|
||||
CharacterClassEscape[U] ::
|
||||
CharacterClassEscape[UnicodeMode] ::
|
||||
d
|
||||
D
|
||||
s
|
||||
S
|
||||
w
|
||||
W
|
||||
[+UnicodeMode] p{ UnicodePropertyValueExpression }
|
||||
[+UnicodeMode] P{ UnicodePropertyValueExpression }
|
||||
|
||||
21.2.2.12 CharacterClassEscape
|
||||
22.2.2.9 Runtime Semantics: CompileToCharSet
|
||||
|
||||
The production CharacterClassEscape :: d evaluates as follows:
|
||||
Return the ten-element set of characters containing the characters 0 through 9 inclusive.
|
||||
The production CharacterClassEscape :: D evaluates as follows:
|
||||
Return the set of all characters not included in the set returned by CharacterClassEscape :: d.
|
||||
The production CharacterClassEscape :: s evaluates as follows:
|
||||
Return the set of characters containing the characters that are on the right-hand side of
|
||||
the WhiteSpace or LineTerminator productions.
|
||||
The production CharacterClassEscape :: S evaluates as follows:
|
||||
Return the set of all characters not included in the set returned by CharacterClassEscape :: s.
|
||||
The production CharacterClassEscape :: w evaluates as follows:
|
||||
Return the set of all characters returned by WordCharacters().
|
||||
The production CharacterClassEscape :: W evaluates as follows:
|
||||
Return the set of all characters not included in the set returned by CharacterClassEscape :: w.
|
||||
CharacterClassEscape :: d
|
||||
1. Return the ten-element CharSet containing the characters 0, 1, 2, 3,
|
||||
4, 5, 6, 7, 8, and 9.
|
||||
CharacterClassEscape :: D
|
||||
1. Let S be the CharSet returned by CharacterClassEscape :: d.
|
||||
2. Return CharacterComplement(rer, S).
|
||||
CharacterClassEscape :: s
|
||||
1. Return the CharSet containing all characters corresponding to a code
|
||||
point on the right-hand side of the WhiteSpace or LineTerminator
|
||||
productions.
|
||||
CharacterClassEscape :: S
|
||||
1. Let S be the CharSet returned by CharacterClassEscape :: s.
|
||||
2. Return CharacterComplement(rer, S).
|
||||
CharacterClassEscape :: w
|
||||
1. Return MaybeSimpleCaseFolding(rer, WordCharacters(rer)).
|
||||
CharacterClassEscape :: W
|
||||
1. Let S be the CharSet returned by CharacterClassEscape :: w.
|
||||
2. Return CharacterComplement(rer, S).
|
||||
features: [String.fromCodePoint]
|
||||
includes: [regExpUtils.js]
|
||||
flags: [generated]
|
||||
|
@ -10,29 +10,36 @@ info: |
|
||||
https://github.com/tc39/test262/tree/main/tools/regexp-generator/
|
||||
for any changes.
|
||||
|
||||
CharacterClassEscape[U] ::
|
||||
CharacterClassEscape[UnicodeMode] ::
|
||||
d
|
||||
D
|
||||
s
|
||||
S
|
||||
w
|
||||
W
|
||||
[+UnicodeMode] p{ UnicodePropertyValueExpression }
|
||||
[+UnicodeMode] P{ UnicodePropertyValueExpression }
|
||||
|
||||
21.2.2.12 CharacterClassEscape
|
||||
22.2.2.9 Runtime Semantics: CompileToCharSet
|
||||
|
||||
The production CharacterClassEscape :: d evaluates as follows:
|
||||
Return the ten-element set of characters containing the characters 0 through 9 inclusive.
|
||||
The production CharacterClassEscape :: D evaluates as follows:
|
||||
Return the set of all characters not included in the set returned by CharacterClassEscape :: d.
|
||||
The production CharacterClassEscape :: s evaluates as follows:
|
||||
Return the set of characters containing the characters that are on the right-hand side of
|
||||
the WhiteSpace or LineTerminator productions.
|
||||
The production CharacterClassEscape :: S evaluates as follows:
|
||||
Return the set of all characters not included in the set returned by CharacterClassEscape :: s.
|
||||
The production CharacterClassEscape :: w evaluates as follows:
|
||||
Return the set of all characters returned by WordCharacters().
|
||||
The production CharacterClassEscape :: W evaluates as follows:
|
||||
Return the set of all characters not included in the set returned by CharacterClassEscape :: w.
|
||||
CharacterClassEscape :: d
|
||||
1. Return the ten-element CharSet containing the characters 0, 1, 2, 3,
|
||||
4, 5, 6, 7, 8, and 9.
|
||||
CharacterClassEscape :: D
|
||||
1. Let S be the CharSet returned by CharacterClassEscape :: d.
|
||||
2. Return CharacterComplement(rer, S).
|
||||
CharacterClassEscape :: s
|
||||
1. Return the CharSet containing all characters corresponding to a code
|
||||
point on the right-hand side of the WhiteSpace or LineTerminator
|
||||
productions.
|
||||
CharacterClassEscape :: S
|
||||
1. Let S be the CharSet returned by CharacterClassEscape :: s.
|
||||
2. Return CharacterComplement(rer, S).
|
||||
CharacterClassEscape :: w
|
||||
1. Return MaybeSimpleCaseFolding(rer, WordCharacters(rer)).
|
||||
CharacterClassEscape :: W
|
||||
1. Let S be the CharSet returned by CharacterClassEscape :: w.
|
||||
2. Return CharacterComplement(rer, S).
|
||||
features: [String.fromCodePoint]
|
||||
includes: [regExpUtils.js]
|
||||
flags: [generated]
|
||||
|
@ -10,29 +10,36 @@ info: |
|
||||
https://github.com/tc39/test262/tree/main/tools/regexp-generator/
|
||||
for any changes.
|
||||
|
||||
CharacterClassEscape[U] ::
|
||||
CharacterClassEscape[UnicodeMode] ::
|
||||
d
|
||||
D
|
||||
s
|
||||
S
|
||||
w
|
||||
W
|
||||
[+UnicodeMode] p{ UnicodePropertyValueExpression }
|
||||
[+UnicodeMode] P{ UnicodePropertyValueExpression }
|
||||
|
||||
21.2.2.12 CharacterClassEscape
|
||||
22.2.2.9 Runtime Semantics: CompileToCharSet
|
||||
|
||||
The production CharacterClassEscape :: d evaluates as follows:
|
||||
Return the ten-element set of characters containing the characters 0 through 9 inclusive.
|
||||
The production CharacterClassEscape :: D evaluates as follows:
|
||||
Return the set of all characters not included in the set returned by CharacterClassEscape :: d.
|
||||
The production CharacterClassEscape :: s evaluates as follows:
|
||||
Return the set of characters containing the characters that are on the right-hand side of
|
||||
the WhiteSpace or LineTerminator productions.
|
||||
The production CharacterClassEscape :: S evaluates as follows:
|
||||
Return the set of all characters not included in the set returned by CharacterClassEscape :: s.
|
||||
The production CharacterClassEscape :: w evaluates as follows:
|
||||
Return the set of all characters returned by WordCharacters().
|
||||
The production CharacterClassEscape :: W evaluates as follows:
|
||||
Return the set of all characters not included in the set returned by CharacterClassEscape :: w.
|
||||
CharacterClassEscape :: d
|
||||
1. Return the ten-element CharSet containing the characters 0, 1, 2, 3,
|
||||
4, 5, 6, 7, 8, and 9.
|
||||
CharacterClassEscape :: D
|
||||
1. Let S be the CharSet returned by CharacterClassEscape :: d.
|
||||
2. Return CharacterComplement(rer, S).
|
||||
CharacterClassEscape :: s
|
||||
1. Return the CharSet containing all characters corresponding to a code
|
||||
point on the right-hand side of the WhiteSpace or LineTerminator
|
||||
productions.
|
||||
CharacterClassEscape :: S
|
||||
1. Let S be the CharSet returned by CharacterClassEscape :: s.
|
||||
2. Return CharacterComplement(rer, S).
|
||||
CharacterClassEscape :: w
|
||||
1. Return MaybeSimpleCaseFolding(rer, WordCharacters(rer)).
|
||||
CharacterClassEscape :: W
|
||||
1. Let S be the CharSet returned by CharacterClassEscape :: w.
|
||||
2. Return CharacterComplement(rer, S).
|
||||
features: [String.fromCodePoint]
|
||||
includes: [regExpUtils.js]
|
||||
flags: [generated]
|
||||
|
@ -10,29 +10,36 @@ info: |
|
||||
https://github.com/tc39/test262/tree/main/tools/regexp-generator/
|
||||
for any changes.
|
||||
|
||||
CharacterClassEscape[U] ::
|
||||
CharacterClassEscape[UnicodeMode] ::
|
||||
d
|
||||
D
|
||||
s
|
||||
S
|
||||
w
|
||||
W
|
||||
[+UnicodeMode] p{ UnicodePropertyValueExpression }
|
||||
[+UnicodeMode] P{ UnicodePropertyValueExpression }
|
||||
|
||||
21.2.2.12 CharacterClassEscape
|
||||
22.2.2.9 Runtime Semantics: CompileToCharSet
|
||||
|
||||
The production CharacterClassEscape :: d evaluates as follows:
|
||||
Return the ten-element set of characters containing the characters 0 through 9 inclusive.
|
||||
The production CharacterClassEscape :: D evaluates as follows:
|
||||
Return the set of all characters not included in the set returned by CharacterClassEscape :: d.
|
||||
The production CharacterClassEscape :: s evaluates as follows:
|
||||
Return the set of characters containing the characters that are on the right-hand side of
|
||||
the WhiteSpace or LineTerminator productions.
|
||||
The production CharacterClassEscape :: S evaluates as follows:
|
||||
Return the set of all characters not included in the set returned by CharacterClassEscape :: s.
|
||||
The production CharacterClassEscape :: w evaluates as follows:
|
||||
Return the set of all characters returned by WordCharacters().
|
||||
The production CharacterClassEscape :: W evaluates as follows:
|
||||
Return the set of all characters not included in the set returned by CharacterClassEscape :: w.
|
||||
CharacterClassEscape :: d
|
||||
1. Return the ten-element CharSet containing the characters 0, 1, 2, 3,
|
||||
4, 5, 6, 7, 8, and 9.
|
||||
CharacterClassEscape :: D
|
||||
1. Let S be the CharSet returned by CharacterClassEscape :: d.
|
||||
2. Return CharacterComplement(rer, S).
|
||||
CharacterClassEscape :: s
|
||||
1. Return the CharSet containing all characters corresponding to a code
|
||||
point on the right-hand side of the WhiteSpace or LineTerminator
|
||||
productions.
|
||||
CharacterClassEscape :: S
|
||||
1. Let S be the CharSet returned by CharacterClassEscape :: s.
|
||||
2. Return CharacterComplement(rer, S).
|
||||
CharacterClassEscape :: w
|
||||
1. Return MaybeSimpleCaseFolding(rer, WordCharacters(rer)).
|
||||
CharacterClassEscape :: W
|
||||
1. Let S be the CharSet returned by CharacterClassEscape :: w.
|
||||
2. Return CharacterComplement(rer, S).
|
||||
features: [String.fromCodePoint]
|
||||
includes: [regExpUtils.js]
|
||||
flags: [generated]
|
||||
|
@ -10,29 +10,36 @@ info: |
|
||||
https://github.com/tc39/test262/tree/main/tools/regexp-generator/
|
||||
for any changes.
|
||||
|
||||
CharacterClassEscape[U] ::
|
||||
CharacterClassEscape[UnicodeMode] ::
|
||||
d
|
||||
D
|
||||
s
|
||||
S
|
||||
w
|
||||
W
|
||||
[+UnicodeMode] p{ UnicodePropertyValueExpression }
|
||||
[+UnicodeMode] P{ UnicodePropertyValueExpression }
|
||||
|
||||
21.2.2.12 CharacterClassEscape
|
||||
22.2.2.9 Runtime Semantics: CompileToCharSet
|
||||
|
||||
The production CharacterClassEscape :: d evaluates as follows:
|
||||
Return the ten-element set of characters containing the characters 0 through 9 inclusive.
|
||||
The production CharacterClassEscape :: D evaluates as follows:
|
||||
Return the set of all characters not included in the set returned by CharacterClassEscape :: d.
|
||||
The production CharacterClassEscape :: s evaluates as follows:
|
||||
Return the set of characters containing the characters that are on the right-hand side of
|
||||
the WhiteSpace or LineTerminator productions.
|
||||
The production CharacterClassEscape :: S evaluates as follows:
|
||||
Return the set of all characters not included in the set returned by CharacterClassEscape :: s.
|
||||
The production CharacterClassEscape :: w evaluates as follows:
|
||||
Return the set of all characters returned by WordCharacters().
|
||||
The production CharacterClassEscape :: W evaluates as follows:
|
||||
Return the set of all characters not included in the set returned by CharacterClassEscape :: w.
|
||||
CharacterClassEscape :: d
|
||||
1. Return the ten-element CharSet containing the characters 0, 1, 2, 3,
|
||||
4, 5, 6, 7, 8, and 9.
|
||||
CharacterClassEscape :: D
|
||||
1. Let S be the CharSet returned by CharacterClassEscape :: d.
|
||||
2. Return CharacterComplement(rer, S).
|
||||
CharacterClassEscape :: s
|
||||
1. Return the CharSet containing all characters corresponding to a code
|
||||
point on the right-hand side of the WhiteSpace or LineTerminator
|
||||
productions.
|
||||
CharacterClassEscape :: S
|
||||
1. Let S be the CharSet returned by CharacterClassEscape :: s.
|
||||
2. Return CharacterComplement(rer, S).
|
||||
CharacterClassEscape :: w
|
||||
1. Return MaybeSimpleCaseFolding(rer, WordCharacters(rer)).
|
||||
CharacterClassEscape :: W
|
||||
1. Let S be the CharSet returned by CharacterClassEscape :: w.
|
||||
2. Return CharacterComplement(rer, S).
|
||||
features: [String.fromCodePoint]
|
||||
includes: [regExpUtils.js]
|
||||
flags: [generated]
|
||||
|
@ -10,29 +10,36 @@ info: |
|
||||
https://github.com/tc39/test262/tree/main/tools/regexp-generator/
|
||||
for any changes.
|
||||
|
||||
CharacterClassEscape[U] ::
|
||||
CharacterClassEscape[UnicodeMode] ::
|
||||
d
|
||||
D
|
||||
s
|
||||
S
|
||||
w
|
||||
W
|
||||
[+UnicodeMode] p{ UnicodePropertyValueExpression }
|
||||
[+UnicodeMode] P{ UnicodePropertyValueExpression }
|
||||
|
||||
21.2.2.12 CharacterClassEscape
|
||||
22.2.2.9 Runtime Semantics: CompileToCharSet
|
||||
|
||||
The production CharacterClassEscape :: d evaluates as follows:
|
||||
Return the ten-element set of characters containing the characters 0 through 9 inclusive.
|
||||
The production CharacterClassEscape :: D evaluates as follows:
|
||||
Return the set of all characters not included in the set returned by CharacterClassEscape :: d.
|
||||
The production CharacterClassEscape :: s evaluates as follows:
|
||||
Return the set of characters containing the characters that are on the right-hand side of
|
||||
the WhiteSpace or LineTerminator productions.
|
||||
The production CharacterClassEscape :: S evaluates as follows:
|
||||
Return the set of all characters not included in the set returned by CharacterClassEscape :: s.
|
||||
The production CharacterClassEscape :: w evaluates as follows:
|
||||
Return the set of all characters returned by WordCharacters().
|
||||
The production CharacterClassEscape :: W evaluates as follows:
|
||||
Return the set of all characters not included in the set returned by CharacterClassEscape :: w.
|
||||
CharacterClassEscape :: d
|
||||
1. Return the ten-element CharSet containing the characters 0, 1, 2, 3,
|
||||
4, 5, 6, 7, 8, and 9.
|
||||
CharacterClassEscape :: D
|
||||
1. Let S be the CharSet returned by CharacterClassEscape :: d.
|
||||
2. Return CharacterComplement(rer, S).
|
||||
CharacterClassEscape :: s
|
||||
1. Return the CharSet containing all characters corresponding to a code
|
||||
point on the right-hand side of the WhiteSpace or LineTerminator
|
||||
productions.
|
||||
CharacterClassEscape :: S
|
||||
1. Let S be the CharSet returned by CharacterClassEscape :: s.
|
||||
2. Return CharacterComplement(rer, S).
|
||||
CharacterClassEscape :: w
|
||||
1. Return MaybeSimpleCaseFolding(rer, WordCharacters(rer)).
|
||||
CharacterClassEscape :: W
|
||||
1. Let S be the CharSet returned by CharacterClassEscape :: w.
|
||||
2. Return CharacterComplement(rer, S).
|
||||
features: [String.fromCodePoint]
|
||||
includes: [regExpUtils.js]
|
||||
flags: [generated]
|
||||
|
@ -10,29 +10,36 @@ info: |
|
||||
https://github.com/tc39/test262/tree/main/tools/regexp-generator/
|
||||
for any changes.
|
||||
|
||||
CharacterClassEscape[U] ::
|
||||
CharacterClassEscape[UnicodeMode] ::
|
||||
d
|
||||
D
|
||||
s
|
||||
S
|
||||
w
|
||||
W
|
||||
[+UnicodeMode] p{ UnicodePropertyValueExpression }
|
||||
[+UnicodeMode] P{ UnicodePropertyValueExpression }
|
||||
|
||||
21.2.2.12 CharacterClassEscape
|
||||
22.2.2.9 Runtime Semantics: CompileToCharSet
|
||||
|
||||
The production CharacterClassEscape :: d evaluates as follows:
|
||||
Return the ten-element set of characters containing the characters 0 through 9 inclusive.
|
||||
The production CharacterClassEscape :: D evaluates as follows:
|
||||
Return the set of all characters not included in the set returned by CharacterClassEscape :: d.
|
||||
The production CharacterClassEscape :: s evaluates as follows:
|
||||
Return the set of characters containing the characters that are on the right-hand side of
|
||||
the WhiteSpace or LineTerminator productions.
|
||||
The production CharacterClassEscape :: S evaluates as follows:
|
||||
Return the set of all characters not included in the set returned by CharacterClassEscape :: s.
|
||||
The production CharacterClassEscape :: w evaluates as follows:
|
||||
Return the set of all characters returned by WordCharacters().
|
||||
The production CharacterClassEscape :: W evaluates as follows:
|
||||
Return the set of all characters not included in the set returned by CharacterClassEscape :: w.
|
||||
CharacterClassEscape :: d
|
||||
1. Return the ten-element CharSet containing the characters 0, 1, 2, 3,
|
||||
4, 5, 6, 7, 8, and 9.
|
||||
CharacterClassEscape :: D
|
||||
1. Let S be the CharSet returned by CharacterClassEscape :: d.
|
||||
2. Return CharacterComplement(rer, S).
|
||||
CharacterClassEscape :: s
|
||||
1. Return the CharSet containing all characters corresponding to a code
|
||||
point on the right-hand side of the WhiteSpace or LineTerminator
|
||||
productions.
|
||||
CharacterClassEscape :: S
|
||||
1. Let S be the CharSet returned by CharacterClassEscape :: s.
|
||||
2. Return CharacterComplement(rer, S).
|
||||
CharacterClassEscape :: w
|
||||
1. Return MaybeSimpleCaseFolding(rer, WordCharacters(rer)).
|
||||
CharacterClassEscape :: W
|
||||
1. Let S be the CharSet returned by CharacterClassEscape :: w.
|
||||
2. Return CharacterComplement(rer, S).
|
||||
features: [String.fromCodePoint]
|
||||
includes: [regExpUtils.js]
|
||||
flags: [generated]
|
||||
|
@ -10,29 +10,36 @@ info: |
|
||||
https://github.com/tc39/test262/tree/main/tools/regexp-generator/
|
||||
for any changes.
|
||||
|
||||
CharacterClassEscape[U] ::
|
||||
CharacterClassEscape[UnicodeMode] ::
|
||||
d
|
||||
D
|
||||
s
|
||||
S
|
||||
w
|
||||
W
|
||||
[+UnicodeMode] p{ UnicodePropertyValueExpression }
|
||||
[+UnicodeMode] P{ UnicodePropertyValueExpression }
|
||||
|
||||
21.2.2.12 CharacterClassEscape
|
||||
22.2.2.9 Runtime Semantics: CompileToCharSet
|
||||
|
||||
The production CharacterClassEscape :: d evaluates as follows:
|
||||
Return the ten-element set of characters containing the characters 0 through 9 inclusive.
|
||||
The production CharacterClassEscape :: D evaluates as follows:
|
||||
Return the set of all characters not included in the set returned by CharacterClassEscape :: d.
|
||||
The production CharacterClassEscape :: s evaluates as follows:
|
||||
Return the set of characters containing the characters that are on the right-hand side of
|
||||
the WhiteSpace or LineTerminator productions.
|
||||
The production CharacterClassEscape :: S evaluates as follows:
|
||||
Return the set of all characters not included in the set returned by CharacterClassEscape :: s.
|
||||
The production CharacterClassEscape :: w evaluates as follows:
|
||||
Return the set of all characters returned by WordCharacters().
|
||||
The production CharacterClassEscape :: W evaluates as follows:
|
||||
Return the set of all characters not included in the set returned by CharacterClassEscape :: w.
|
||||
CharacterClassEscape :: d
|
||||
1. Return the ten-element CharSet containing the characters 0, 1, 2, 3,
|
||||
4, 5, 6, 7, 8, and 9.
|
||||
CharacterClassEscape :: D
|
||||
1. Let S be the CharSet returned by CharacterClassEscape :: d.
|
||||
2. Return CharacterComplement(rer, S).
|
||||
CharacterClassEscape :: s
|
||||
1. Return the CharSet containing all characters corresponding to a code
|
||||
point on the right-hand side of the WhiteSpace or LineTerminator
|
||||
productions.
|
||||
CharacterClassEscape :: S
|
||||
1. Let S be the CharSet returned by CharacterClassEscape :: s.
|
||||
2. Return CharacterComplement(rer, S).
|
||||
CharacterClassEscape :: w
|
||||
1. Return MaybeSimpleCaseFolding(rer, WordCharacters(rer)).
|
||||
CharacterClassEscape :: W
|
||||
1. Let S be the CharSet returned by CharacterClassEscape :: w.
|
||||
2. Return CharacterComplement(rer, S).
|
||||
features: [String.fromCodePoint]
|
||||
includes: [regExpUtils.js]
|
||||
flags: [generated]
|
||||
|
@ -10,29 +10,36 @@ info: |
|
||||
https://github.com/tc39/test262/tree/main/tools/regexp-generator/
|
||||
for any changes.
|
||||
|
||||
CharacterClassEscape[U] ::
|
||||
CharacterClassEscape[UnicodeMode] ::
|
||||
d
|
||||
D
|
||||
s
|
||||
S
|
||||
w
|
||||
W
|
||||
[+UnicodeMode] p{ UnicodePropertyValueExpression }
|
||||
[+UnicodeMode] P{ UnicodePropertyValueExpression }
|
||||
|
||||
21.2.2.12 CharacterClassEscape
|
||||
22.2.2.9 Runtime Semantics: CompileToCharSet
|
||||
|
||||
The production CharacterClassEscape :: d evaluates as follows:
|
||||
Return the ten-element set of characters containing the characters 0 through 9 inclusive.
|
||||
The production CharacterClassEscape :: D evaluates as follows:
|
||||
Return the set of all characters not included in the set returned by CharacterClassEscape :: d.
|
||||
The production CharacterClassEscape :: s evaluates as follows:
|
||||
Return the set of characters containing the characters that are on the right-hand side of
|
||||
the WhiteSpace or LineTerminator productions.
|
||||
The production CharacterClassEscape :: S evaluates as follows:
|
||||
Return the set of all characters not included in the set returned by CharacterClassEscape :: s.
|
||||
The production CharacterClassEscape :: w evaluates as follows:
|
||||
Return the set of all characters returned by WordCharacters().
|
||||
The production CharacterClassEscape :: W evaluates as follows:
|
||||
Return the set of all characters not included in the set returned by CharacterClassEscape :: w.
|
||||
CharacterClassEscape :: d
|
||||
1. Return the ten-element CharSet containing the characters 0, 1, 2, 3,
|
||||
4, 5, 6, 7, 8, and 9.
|
||||
CharacterClassEscape :: D
|
||||
1. Let S be the CharSet returned by CharacterClassEscape :: d.
|
||||
2. Return CharacterComplement(rer, S).
|
||||
CharacterClassEscape :: s
|
||||
1. Return the CharSet containing all characters corresponding to a code
|
||||
point on the right-hand side of the WhiteSpace or LineTerminator
|
||||
productions.
|
||||
CharacterClassEscape :: S
|
||||
1. Let S be the CharSet returned by CharacterClassEscape :: s.
|
||||
2. Return CharacterComplement(rer, S).
|
||||
CharacterClassEscape :: w
|
||||
1. Return MaybeSimpleCaseFolding(rer, WordCharacters(rer)).
|
||||
CharacterClassEscape :: W
|
||||
1. Let S be the CharSet returned by CharacterClassEscape :: w.
|
||||
2. Return CharacterComplement(rer, S).
|
||||
features: [String.fromCodePoint]
|
||||
includes: [regExpUtils.js]
|
||||
flags: [generated]
|
||||
|
@ -10,29 +10,36 @@ info: |
|
||||
https://github.com/tc39/test262/tree/main/tools/regexp-generator/
|
||||
for any changes.
|
||||
|
||||
CharacterClassEscape[U] ::
|
||||
CharacterClassEscape[UnicodeMode] ::
|
||||
d
|
||||
D
|
||||
s
|
||||
S
|
||||
w
|
||||
W
|
||||
[+UnicodeMode] p{ UnicodePropertyValueExpression }
|
||||
[+UnicodeMode] P{ UnicodePropertyValueExpression }
|
||||
|
||||
21.2.2.12 CharacterClassEscape
|
||||
22.2.2.9 Runtime Semantics: CompileToCharSet
|
||||
|
||||
The production CharacterClassEscape :: d evaluates as follows:
|
||||
Return the ten-element set of characters containing the characters 0 through 9 inclusive.
|
||||
The production CharacterClassEscape :: D evaluates as follows:
|
||||
Return the set of all characters not included in the set returned by CharacterClassEscape :: d.
|
||||
The production CharacterClassEscape :: s evaluates as follows:
|
||||
Return the set of characters containing the characters that are on the right-hand side of
|
||||
the WhiteSpace or LineTerminator productions.
|
||||
The production CharacterClassEscape :: S evaluates as follows:
|
||||
Return the set of all characters not included in the set returned by CharacterClassEscape :: s.
|
||||
The production CharacterClassEscape :: w evaluates as follows:
|
||||
Return the set of all characters returned by WordCharacters().
|
||||
The production CharacterClassEscape :: W evaluates as follows:
|
||||
Return the set of all characters not included in the set returned by CharacterClassEscape :: w.
|
||||
CharacterClassEscape :: d
|
||||
1. Return the ten-element CharSet containing the characters 0, 1, 2, 3,
|
||||
4, 5, 6, 7, 8, and 9.
|
||||
CharacterClassEscape :: D
|
||||
1. Let S be the CharSet returned by CharacterClassEscape :: d.
|
||||
2. Return CharacterComplement(rer, S).
|
||||
CharacterClassEscape :: s
|
||||
1. Return the CharSet containing all characters corresponding to a code
|
||||
point on the right-hand side of the WhiteSpace or LineTerminator
|
||||
productions.
|
||||
CharacterClassEscape :: S
|
||||
1. Let S be the CharSet returned by CharacterClassEscape :: s.
|
||||
2. Return CharacterComplement(rer, S).
|
||||
CharacterClassEscape :: w
|
||||
1. Return MaybeSimpleCaseFolding(rer, WordCharacters(rer)).
|
||||
CharacterClassEscape :: W
|
||||
1. Let S be the CharSet returned by CharacterClassEscape :: w.
|
||||
2. Return CharacterComplement(rer, S).
|
||||
features: [String.fromCodePoint]
|
||||
includes: [regExpUtils.js]
|
||||
flags: [generated]
|
||||
|
@ -10,29 +10,36 @@ info: |
|
||||
https://github.com/tc39/test262/tree/main/tools/regexp-generator/
|
||||
for any changes.
|
||||
|
||||
CharacterClassEscape[U] ::
|
||||
CharacterClassEscape[UnicodeMode] ::
|
||||
d
|
||||
D
|
||||
s
|
||||
S
|
||||
w
|
||||
W
|
||||
[+UnicodeMode] p{ UnicodePropertyValueExpression }
|
||||
[+UnicodeMode] P{ UnicodePropertyValueExpression }
|
||||
|
||||
21.2.2.12 CharacterClassEscape
|
||||
22.2.2.9 Runtime Semantics: CompileToCharSet
|
||||
|
||||
The production CharacterClassEscape :: d evaluates as follows:
|
||||
Return the ten-element set of characters containing the characters 0 through 9 inclusive.
|
||||
The production CharacterClassEscape :: D evaluates as follows:
|
||||
Return the set of all characters not included in the set returned by CharacterClassEscape :: d.
|
||||
The production CharacterClassEscape :: s evaluates as follows:
|
||||
Return the set of characters containing the characters that are on the right-hand side of
|
||||
the WhiteSpace or LineTerminator productions.
|
||||
The production CharacterClassEscape :: S evaluates as follows:
|
||||
Return the set of all characters not included in the set returned by CharacterClassEscape :: s.
|
||||
The production CharacterClassEscape :: w evaluates as follows:
|
||||
Return the set of all characters returned by WordCharacters().
|
||||
The production CharacterClassEscape :: W evaluates as follows:
|
||||
Return the set of all characters not included in the set returned by CharacterClassEscape :: w.
|
||||
CharacterClassEscape :: d
|
||||
1. Return the ten-element CharSet containing the characters 0, 1, 2, 3,
|
||||
4, 5, 6, 7, 8, and 9.
|
||||
CharacterClassEscape :: D
|
||||
1. Let S be the CharSet returned by CharacterClassEscape :: d.
|
||||
2. Return CharacterComplement(rer, S).
|
||||
CharacterClassEscape :: s
|
||||
1. Return the CharSet containing all characters corresponding to a code
|
||||
point on the right-hand side of the WhiteSpace or LineTerminator
|
||||
productions.
|
||||
CharacterClassEscape :: S
|
||||
1. Let S be the CharSet returned by CharacterClassEscape :: s.
|
||||
2. Return CharacterComplement(rer, S).
|
||||
CharacterClassEscape :: w
|
||||
1. Return MaybeSimpleCaseFolding(rer, WordCharacters(rer)).
|
||||
CharacterClassEscape :: W
|
||||
1. Let S be the CharSet returned by CharacterClassEscape :: w.
|
||||
2. Return CharacterComplement(rer, S).
|
||||
features: [String.fromCodePoint]
|
||||
includes: [regExpUtils.js]
|
||||
flags: [generated]
|
||||
|
@ -10,29 +10,36 @@ info: |
|
||||
https://github.com/tc39/test262/tree/main/tools/regexp-generator/
|
||||
for any changes.
|
||||
|
||||
CharacterClassEscape[U] ::
|
||||
CharacterClassEscape[UnicodeMode] ::
|
||||
d
|
||||
D
|
||||
s
|
||||
S
|
||||
w
|
||||
W
|
||||
[+UnicodeMode] p{ UnicodePropertyValueExpression }
|
||||
[+UnicodeMode] P{ UnicodePropertyValueExpression }
|
||||
|
||||
21.2.2.12 CharacterClassEscape
|
||||
22.2.2.9 Runtime Semantics: CompileToCharSet
|
||||
|
||||
The production CharacterClassEscape :: d evaluates as follows:
|
||||
Return the ten-element set of characters containing the characters 0 through 9 inclusive.
|
||||
The production CharacterClassEscape :: D evaluates as follows:
|
||||
Return the set of all characters not included in the set returned by CharacterClassEscape :: d.
|
||||
The production CharacterClassEscape :: s evaluates as follows:
|
||||
Return the set of characters containing the characters that are on the right-hand side of
|
||||
the WhiteSpace or LineTerminator productions.
|
||||
The production CharacterClassEscape :: S evaluates as follows:
|
||||
Return the set of all characters not included in the set returned by CharacterClassEscape :: s.
|
||||
The production CharacterClassEscape :: w evaluates as follows:
|
||||
Return the set of all characters returned by WordCharacters().
|
||||
The production CharacterClassEscape :: W evaluates as follows:
|
||||
Return the set of all characters not included in the set returned by CharacterClassEscape :: w.
|
||||
CharacterClassEscape :: d
|
||||
1. Return the ten-element CharSet containing the characters 0, 1, 2, 3,
|
||||
4, 5, 6, 7, 8, and 9.
|
||||
CharacterClassEscape :: D
|
||||
1. Let S be the CharSet returned by CharacterClassEscape :: d.
|
||||
2. Return CharacterComplement(rer, S).
|
||||
CharacterClassEscape :: s
|
||||
1. Return the CharSet containing all characters corresponding to a code
|
||||
point on the right-hand side of the WhiteSpace or LineTerminator
|
||||
productions.
|
||||
CharacterClassEscape :: S
|
||||
1. Let S be the CharSet returned by CharacterClassEscape :: s.
|
||||
2. Return CharacterComplement(rer, S).
|
||||
CharacterClassEscape :: w
|
||||
1. Return MaybeSimpleCaseFolding(rer, WordCharacters(rer)).
|
||||
CharacterClassEscape :: W
|
||||
1. Let S be the CharSet returned by CharacterClassEscape :: w.
|
||||
2. Return CharacterComplement(rer, S).
|
||||
features: [String.fromCodePoint]
|
||||
includes: [regExpUtils.js]
|
||||
flags: [generated]
|
||||
|
@ -10,29 +10,36 @@ info: |
|
||||
https://github.com/tc39/test262/tree/main/tools/regexp-generator/
|
||||
for any changes.
|
||||
|
||||
CharacterClassEscape[U] ::
|
||||
CharacterClassEscape[UnicodeMode] ::
|
||||
d
|
||||
D
|
||||
s
|
||||
S
|
||||
w
|
||||
W
|
||||
[+UnicodeMode] p{ UnicodePropertyValueExpression }
|
||||
[+UnicodeMode] P{ UnicodePropertyValueExpression }
|
||||
|
||||
21.2.2.12 CharacterClassEscape
|
||||
22.2.2.9 Runtime Semantics: CompileToCharSet
|
||||
|
||||
The production CharacterClassEscape :: d evaluates as follows:
|
||||
Return the ten-element set of characters containing the characters 0 through 9 inclusive.
|
||||
The production CharacterClassEscape :: D evaluates as follows:
|
||||
Return the set of all characters not included in the set returned by CharacterClassEscape :: d.
|
||||
The production CharacterClassEscape :: s evaluates as follows:
|
||||
Return the set of characters containing the characters that are on the right-hand side of
|
||||
the WhiteSpace or LineTerminator productions.
|
||||
The production CharacterClassEscape :: S evaluates as follows:
|
||||
Return the set of all characters not included in the set returned by CharacterClassEscape :: s.
|
||||
The production CharacterClassEscape :: w evaluates as follows:
|
||||
Return the set of all characters returned by WordCharacters().
|
||||
The production CharacterClassEscape :: W evaluates as follows:
|
||||
Return the set of all characters not included in the set returned by CharacterClassEscape :: w.
|
||||
CharacterClassEscape :: d
|
||||
1. Return the ten-element CharSet containing the characters 0, 1, 2, 3,
|
||||
4, 5, 6, 7, 8, and 9.
|
||||
CharacterClassEscape :: D
|
||||
1. Let S be the CharSet returned by CharacterClassEscape :: d.
|
||||
2. Return CharacterComplement(rer, S).
|
||||
CharacterClassEscape :: s
|
||||
1. Return the CharSet containing all characters corresponding to a code
|
||||
point on the right-hand side of the WhiteSpace or LineTerminator
|
||||
productions.
|
||||
CharacterClassEscape :: S
|
||||
1. Let S be the CharSet returned by CharacterClassEscape :: s.
|
||||
2. Return CharacterComplement(rer, S).
|
||||
CharacterClassEscape :: w
|
||||
1. Return MaybeSimpleCaseFolding(rer, WordCharacters(rer)).
|
||||
CharacterClassEscape :: W
|
||||
1. Let S be the CharSet returned by CharacterClassEscape :: w.
|
||||
2. Return CharacterComplement(rer, S).
|
||||
features: [String.fromCodePoint]
|
||||
includes: [regExpUtils.js]
|
||||
flags: [generated]
|
||||
|
@ -10,29 +10,36 @@ info: |
|
||||
https://github.com/tc39/test262/tree/main/tools/regexp-generator/
|
||||
for any changes.
|
||||
|
||||
CharacterClassEscape[U] ::
|
||||
CharacterClassEscape[UnicodeMode] ::
|
||||
d
|
||||
D
|
||||
s
|
||||
S
|
||||
w
|
||||
W
|
||||
[+UnicodeMode] p{ UnicodePropertyValueExpression }
|
||||
[+UnicodeMode] P{ UnicodePropertyValueExpression }
|
||||
|
||||
21.2.2.12 CharacterClassEscape
|
||||
22.2.2.9 Runtime Semantics: CompileToCharSet
|
||||
|
||||
The production CharacterClassEscape :: d evaluates as follows:
|
||||
Return the ten-element set of characters containing the characters 0 through 9 inclusive.
|
||||
The production CharacterClassEscape :: D evaluates as follows:
|
||||
Return the set of all characters not included in the set returned by CharacterClassEscape :: d.
|
||||
The production CharacterClassEscape :: s evaluates as follows:
|
||||
Return the set of characters containing the characters that are on the right-hand side of
|
||||
the WhiteSpace or LineTerminator productions.
|
||||
The production CharacterClassEscape :: S evaluates as follows:
|
||||
Return the set of all characters not included in the set returned by CharacterClassEscape :: s.
|
||||
The production CharacterClassEscape :: w evaluates as follows:
|
||||
Return the set of all characters returned by WordCharacters().
|
||||
The production CharacterClassEscape :: W evaluates as follows:
|
||||
Return the set of all characters not included in the set returned by CharacterClassEscape :: w.
|
||||
CharacterClassEscape :: d
|
||||
1. Return the ten-element CharSet containing the characters 0, 1, 2, 3,
|
||||
4, 5, 6, 7, 8, and 9.
|
||||
CharacterClassEscape :: D
|
||||
1. Let S be the CharSet returned by CharacterClassEscape :: d.
|
||||
2. Return CharacterComplement(rer, S).
|
||||
CharacterClassEscape :: s
|
||||
1. Return the CharSet containing all characters corresponding to a code
|
||||
point on the right-hand side of the WhiteSpace or LineTerminator
|
||||
productions.
|
||||
CharacterClassEscape :: S
|
||||
1. Let S be the CharSet returned by CharacterClassEscape :: s.
|
||||
2. Return CharacterComplement(rer, S).
|
||||
CharacterClassEscape :: w
|
||||
1. Return MaybeSimpleCaseFolding(rer, WordCharacters(rer)).
|
||||
CharacterClassEscape :: W
|
||||
1. Let S be the CharSet returned by CharacterClassEscape :: w.
|
||||
2. Return CharacterComplement(rer, S).
|
||||
features: [String.fromCodePoint]
|
||||
includes: [regExpUtils.js]
|
||||
flags: [generated]
|
||||
|
@ -11,29 +11,36 @@ info: |
|
||||
https://github.com/tc39/test262/tree/main/tools/regexp-generator/
|
||||
for any changes.
|
||||
|
||||
CharacterClassEscape[U] ::
|
||||
CharacterClassEscape[UnicodeMode] ::
|
||||
d
|
||||
D
|
||||
s
|
||||
S
|
||||
w
|
||||
W
|
||||
[+UnicodeMode] p{ UnicodePropertyValueExpression }
|
||||
[+UnicodeMode] P{ UnicodePropertyValueExpression }
|
||||
|
||||
21.2.2.12 CharacterClassEscape
|
||||
22.2.2.9 Runtime Semantics: CompileToCharSet
|
||||
|
||||
The production CharacterClassEscape :: d evaluates as follows:
|
||||
Return the ten-element set of characters containing the characters 0 through 9 inclusive.
|
||||
The production CharacterClassEscape :: D evaluates as follows:
|
||||
Return the set of all characters not included in the set returned by CharacterClassEscape :: d.
|
||||
The production CharacterClassEscape :: s evaluates as follows:
|
||||
Return the set of characters containing the characters that are on the right-hand side of
|
||||
the WhiteSpace or LineTerminator productions.
|
||||
The production CharacterClassEscape :: S evaluates as follows:
|
||||
Return the set of all characters not included in the set returned by CharacterClassEscape :: s.
|
||||
The production CharacterClassEscape :: w evaluates as follows:
|
||||
Return the set of all characters returned by WordCharacters().
|
||||
The production CharacterClassEscape :: W evaluates as follows:
|
||||
Return the set of all characters not included in the set returned by CharacterClassEscape :: w.
|
||||
CharacterClassEscape :: d
|
||||
1. Return the ten-element CharSet containing the characters 0, 1, 2, 3,
|
||||
4, 5, 6, 7, 8, and 9.
|
||||
CharacterClassEscape :: D
|
||||
1. Let S be the CharSet returned by CharacterClassEscape :: d.
|
||||
2. Return CharacterComplement(rer, S).
|
||||
CharacterClassEscape :: s
|
||||
1. Return the CharSet containing all characters corresponding to a code
|
||||
point on the right-hand side of the WhiteSpace or LineTerminator
|
||||
productions.
|
||||
CharacterClassEscape :: S
|
||||
1. Let S be the CharSet returned by CharacterClassEscape :: s.
|
||||
2. Return CharacterComplement(rer, S).
|
||||
CharacterClassEscape :: w
|
||||
1. Return MaybeSimpleCaseFolding(rer, WordCharacters(rer)).
|
||||
CharacterClassEscape :: W
|
||||
1. Let S be the CharSet returned by CharacterClassEscape :: w.
|
||||
2. Return CharacterComplement(rer, S).
|
||||
features: [String.fromCodePoint]
|
||||
includes: [regExpUtils.js]
|
||||
flags: [generated]
|
||||
|
Loading…
x
Reference in New Issue
Block a user