| Summary: | [ES6] Support rest element in destructuring assignments | ||||||||
|---|---|---|---|---|---|---|---|---|---|
| Product: | WebKit | Reporter: | Yusuke Suzuki <ysuzuki> | ||||||
| Component: | New Bugs | Assignee: | Yusuke Suzuki <ysuzuki> | ||||||
| Status: | RESOLVED FIXED | ||||||||
| Severity: | Normal | CC: | barraclough, commit-queue, darin, fpizlo, ggaren, mark.lam, msaboff, oliver, rniwa, saam | ||||||
| Priority: | P2 | ||||||||
| Version: | 528+ (Nightly build) | ||||||||
| Hardware: | Unspecified | ||||||||
| OS: | Unspecified | ||||||||
| Attachments: |
|
||||||||
|
Description
Yusuke Suzuki
2015-06-22 07:40:12 PDT
Created attachment 255394 [details]
Patch
Attachment 255394 [details] did not pass style-queue:
ERROR: Source/JavaScriptCore/parser/Nodes.h:1794: Missing space before { [whitespace/braces] [5]
Total errors found: 1 in 9 files
If any of these errors are false positives, please file a bug against check-webkit-style.
Comment on attachment 255394 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=255394&action=review > Source/JavaScriptCore/parser/Nodes.h:1794 > + m_targetPatterns.append(Entry{ bindingType, node, defaultValue }); Styling warns it, but I think it's ok. What do you think about it? Comment on attachment 255394 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=255394&action=review >> Source/JavaScriptCore/parser/Nodes.h:1794 >> + m_targetPatterns.append(Entry{ bindingType, node, defaultValue }); > > Styling warns it, but I think it's ok. What do you think about it? I think the style script doesn’t understand the code, but I agree it’s OK. However, we can write this an even better way now that we have improved Vector; the type can be omitted: m_targetPatterns.append({ bindingType, node, defaultValue }); Comment on attachment 255394 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=255394&action=review >>> Source/JavaScriptCore/parser/Nodes.h:1794 >>> + m_targetPatterns.append(Entry{ bindingType, node, defaultValue }); >> >> Styling warns it, but I think it's ok. What do you think about it? > > I think the style script doesn’t understand the code, but I agree it’s OK. However, we can write this an even better way now that we have improved Vector; the type can be omitted: > > m_targetPatterns.append({ bindingType, node, defaultValue }); Looks nice. I'll update it ;) Created attachment 255397 [details]
Patch
The patch is ready. Could anyone take a look? Could you take a look? Comment on attachment 255397 [details]
Patch
R=me
Comment on attachment 255397 [details]
Patch
Thank you for your review, oliver@!
Comment on attachment 255397 [details] Patch Clearing flags on attachment: 255397 Committed r185981: <http://trac.webkit.org/changeset/185981> All reviewed patches have been landed. Closing bug. |