Closed
Bug 725605
Opened 13 years ago
Closed 13 years ago
IonMonkey: CallGetProperty should accept both objects and strings
Categories
(Core :: JavaScript Engine, defect)
Core
JavaScript Engine
Tracking
()
RESOLVED
FIXED
People
(Reporter: jandem, Assigned: jandem)
References
(Blocks 1 open bug)
Details
Attachments
(1 file)
9.46 KB,
patch
|
dvander
:
review+
|
Details | Diff | Splinter Review |
date-format-xparb has this function:
--
var result = new String(val);
// ...
while (result.length < size) {
result = ch + result;
}
--
result.length bails out because result is a string after the first iteration and is unboxed as object. The patch changes CallGetProperty to accept a Value so that we can handle both objects and strings without bailing out.
The patch may regress some other tests a bit, but I think this is the right way forward and we can use IC's or fast paths to fix these regressions.
Attachment #595694 -
Flags: review?(dvander)
![]() |
||
Updated•13 years ago
|
Attachment #595694 -
Flags: review?(dvander) → review+
Assignee | ||
Comment 1•13 years ago
|
||
Status: ASSIGNED → RESOLVED
Closed: 13 years ago
Resolution: --- → FIXED
You need to log in
before you can comment on or make changes to this bug.
Description
•