Closed
Bug 681417
Opened 13 years ago
Closed 6 years ago
Error message when attempting to initialize an array with length > uint.MAX_VALUE is incorrect.
Categories
(Tamarin Graveyard :: Virtual Machine, defect, P5)
Tracking
(Not tracked)
RESOLVED
WONTFIX
Future
People
(Reporter: cpeyer, Unassigned)
References
Details
(Whiteboard: loose-end)
Attempting to initialize an array with:
Array(4294967297)
(Note that the int value is uint.MAX_VALUE+2)
Correctly throws a RangeError: Error #1005,
but the message is not correct:
RangeError: Error #1005: Array index is not a positive integer (4294967297).
Message should be something like:
Argument is not an array index.
Flags: in-testsuite-
Reporter | ||
Updated•13 years ago
|
Severity: normal → trivial
Flags: flashplayer-qrb+
Priority: -- → P5
Target Milestone: --- → Future
Updated•13 years ago
|
Blocks: array-correctness
Whiteboard: loose-end
Comment 1•6 years ago
|
||
Tamarin isn't maintained anymore. WONTFIX remaining bugs.
Status: NEW → RESOLVED
Closed: 6 years ago
Resolution: --- → WONTFIX
You need to log in
before you can comment on or make changes to this bug.
Description
•