Closed
Bug 1602780
Opened 6 years ago
Closed 1 year ago
Simplify for-in iterator bytecode
Categories
(Core :: JavaScript Engine, task, P2)
Core
JavaScript Engine
Tracking
()
RESOLVED
WONTFIX
People
(Reporter: jandem, Unassigned)
Details
With legacy generators gone, I think instead of:
JSOP_MOREITER
JSOP_ISNOITER
JSOP_IFEQ end
JSOP_ITERNEXT # hint for Ion
...
We could do:
JSOP_ITERDONE
JSOP_IFEQ end
JSOP_ITERMORE
...
Then we don't need the MagicValue and JSOP_ITERNEXT anymore.
Updated•6 years ago
|
Priority: -- → P2
Updated•3 years ago
|
Severity: normal → S3
Comment 1•1 year ago
|
||
This has all changed enormously
Status: NEW → RESOLVED
Closed: 1 year ago
Resolution: --- → WONTFIX
You need to log in
before you can comment on or make changes to this bug.
Description
•