Details
-
Bug
-
Resolution: Fixed
-
P4
-
None
-
None
-
b91
-
Verified
Description
A regexp regression was introduced in changeset 125:037e1de7ab1a where an escaped dash in a character class is not escaped in the pattern produced by RegExpScanner removes the backslash.
Example:
/[a\-b]/
is converted to:
/[a-b]/
Example:
/[a\-b]/
is converted to:
/[a-b]/