Closed
Bug 10023
Opened 26 years ago
Closed 26 years ago
Regular expression parse errors
Categories
(Core :: JavaScript Engine, defect, P3)
Tracking
()
RESOLVED
FIXED
People
(Reporter: waldemar, Assigned: rogerl)
Details
The following regular expressions should parse according to ECMA Edition 3 but
don't:
/[]/
/[^]/
RegExp("[\0]+")
RegExp("[^\0]+")
With respect to the last two, please go through the code and remove all checks
for a null string terminator since nulls are legal in strings and regular
expressions obtained from strings according to ECMA.
Waldemar
| Assignee | ||
Updated•26 years ago
|
Status: NEW → ASSIGNED
| Assignee | ||
Updated•26 years ago
|
Status: ASSIGNED → RESOLVED
Closed: 26 years ago
Resolution: --- → FIXED
| Assignee | ||
Comment 1•26 years ago
|
||
Checked in fix for this and a few other null termination problems.
| Comment hidden (collapsed) |
You need to log in
before you can comment on or make changes to this bug.
Description
•