Closed
Bug 891806
Opened 12 years ago
Closed 12 years ago
Fix "yield without a value is deprecated, and illegal in ES6" warnings
Categories
(Firefox :: General, defect)
Firefox
General
Tracking
()
RESOLVED
FIXED
Firefox 25
People
(Reporter: ttaubert, Assigned: ttaubert)
References
Details
Attachments
(4 files)
43.12 KB,
patch
|
jaws
:
review+
|
Details | Diff | Splinter Review |
54.30 KB,
patch
|
smaug
:
review+
|
Details | Diff | Splinter Review |
74.97 KB,
patch
|
smaug
:
review+
|
Details | Diff | Splinter Review |
385.50 KB,
patch
|
smaug
:
review+
|
Details | Diff | Splinter Review |
No description provided.
Assignee | ||
Comment 1•12 years ago
|
||
Attachment #773208 -
Flags: review?(jaws)
Assignee | ||
Comment 2•12 years ago
|
||
Attachment #773219 -
Flags: review?(bugs)
Assignee | ||
Comment 3•12 years ago
|
||
Attachment #773220 -
Flags: review?(bugs)
Assignee | ||
Comment 4•12 years ago
|
||
Attachment #773221 -
Flags: review?(bugs)
Assignee | ||
Comment 5•12 years ago
|
||
Looks good on try:
https://tbpl.mozilla.org/?tree=Try&rev=873115cf54fe
Updated•12 years ago
|
Attachment #773208 -
Flags: review?(jaws) → review+
Comment 6•12 years ago
|
||
Comment on attachment 773219 [details] [diff] [review]
part 2 - replace 'yield;' with 'yield undefined;' in content/
Super ugly, but I guess I need to accept this for now.
Attachment #773219 -
Flags: review?(bugs) → review+
Updated•12 years ago
|
Attachment #773220 -
Flags: review?(bugs) → review+
Comment 7•12 years ago
|
||
Comment on attachment 773221 [details] [diff] [review]
part 4 - replace 'yield;' with 'yield undefined;' in dom/
This has
- yield; yield;
+ yield undefined; yield;
few times.
Should be yield undefined; yield undefined;
(Don't know why the test has yield; yield;)
Attachment #773221 -
Flags: review?(bugs) → review+
Assignee | ||
Comment 8•12 years ago
|
||
(In reply to Olli Pettay [:smaug] from comment #7)
> This has
> - yield; yield;
> + yield undefined; yield;
> few times.
> Should be yield undefined; yield undefined;
> (Don't know why the test has yield; yield;)
Good catch, will correct.
Assignee | ||
Comment 9•12 years ago
|
||
Comment 10•12 years ago
|
||
https://hg.mozilla.org/mozilla-central/rev/35c5a0f94b65
https://hg.mozilla.org/mozilla-central/rev/d134dbb62202
https://hg.mozilla.org/mozilla-central/rev/3e5ac7b98a73
https://hg.mozilla.org/mozilla-central/rev/c6ecfbeb6553
Status: ASSIGNED → RESOLVED
Closed: 12 years ago
Resolution: --- → FIXED
Target Milestone: --- → Firefox 25
You need to log in
before you can comment on or make changes to this bug.
Description
•