<html>
    <head>
      <base href="https://bugs.webkit.org/" />
    </head>
    <body>
      <p>
        <div>
            <b><a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - [ES6] Arrow function syntax. Arrow function should support the destructuring parameters."
   href="https://bugs.webkit.org/show_bug.cgi?id=146934#c4">Comment # 4</a>
              on <a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - [ES6] Arrow function syntax. Arrow function should support the destructuring parameters."
   href="https://bugs.webkit.org/show_bug.cgi?id=146934">bug 146934</a>
              from <span class="vcard"><a class="email" href="mailto:gskachkov&#64;gmail.com" title="GSkachkov &lt;gskachkov&#64;gmail.com&gt;"> <span class="fn">GSkachkov</span></a>
</span></b>
        <pre>Comment on <span class="bz_obsolete"><a href="attachment.cgi?id=268657&amp;action=diff" name="attach_268657" title="Patch">attachment 268657</a> <a href="attachment.cgi?id=268657&amp;action=edit" title="Patch">[details]</a></span>
Patch

View in context: <a href="https://bugs.webkit.org/attachment.cgi?id=268657&amp;action=review">https://bugs.webkit.org/attachment.cgi?id=268657&amp;action=review</a>

<span class="quote">&gt;&gt; Source/JavaScriptCore/parser/Parser.h:1080
&gt;&gt; +        
&gt; 
&gt; This code isn't correct.
&gt; It won't parse:
&gt; ```
&gt; (a, b, {c}, [d], {e, f}) =&gt; ...;
&gt; ```
&gt; 
&gt; I suggest an alternate approach here:
&gt; have this code check if we have the single parameter name with no parens case:
&gt; ```
&gt; let x = a=&gt;a;
&gt; ``` 
&gt; and otherwise, we already know how to parse &quot;(p1, p2, ...)&quot; style parameter lists
&gt; in another function in the parser. We should use that same code here. Either we use
&gt; it directly as is (probably not possible), or we should abstract that code in such a way
&gt; that this code can use it. That way, we don't have to places in the parser where we parse parameters.
&gt; 
&gt; The reason we have this problem in the first place is that we have two places where we parse
&gt; parameters, lets not make that mistake again.</span >

I've tried to use function that parse parameters - parseFormalParameters, however parseFormalParameters adds parsed parameters to current scope, so I had to make face scope to avoid errors. 
Could you please check if it acceptable?</pre>
        </div>
      </p>
      <hr>
      <span>You are receiving this mail because:</span>
      
      <ul>
          <li>You are the assignee for the bug.</li>
      </ul>
    </body>
</html>