Closed
Bug 813996
Opened 13 years ago
Closed 11 years ago
Support Array.push in parallel execution mode
Categories
(Core :: JavaScript Engine, defect)
Tracking
()
RESOLVED
WONTFIX
People
(Reporter: nmatsakis, Unassigned)
References
Details
(Whiteboard: PJS)
It should be possible to execute:
let x = [];
for (var i = 0; i < 99; i++) x.push(i);
in parallel execution mode.
To do this right, it requires refactoring the various allocation pathways for the elements of objects to work without a JSContext* and so forth.
![]() |
Reporter | |
Comment 1•13 years ago
|
||
This was mostly done in bug 807853 / bug 829602. You can write code like:
let x = [];
for (var i = 0; i < 99; i++) x[i] = i;
I am going to leave the bug open because the `push` method still doesn't work, but I will update the title.
![]() |
Reporter | |
Updated•13 years ago
|
Summary: Support array extension in parallel execution mode → Support Array.push in parallel execution mode
Assignee | ||
Updated•11 years ago
|
Assignee: general → nobody
![]() |
||
Updated•11 years ago
|
Status: NEW → RESOLVED
Closed: 11 years ago
Resolution: --- → WONTFIX
You need to log in
before you can comment on or make changes to this bug.
Description
•