<html>
    <head>
      <base href="https://bugs.webkit.org/" />
    </head>
    <body>
      <p>
        <div>
            <b><a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - Spread operator should be allowed when not the first argument of parameter list"
   href="https://bugs.webkit.org/show_bug.cgi?id=152721#c3">Comment # 3</a>
              on <a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - Spread operator should be allowed when not the first argument of parameter list"
   href="https://bugs.webkit.org/show_bug.cgi?id=152721">bug 152721</a>
              from <span class="vcard"><a class="email" href="mailto:joepeck&#64;webkit.org" title="Joseph Pecoraro &lt;joepeck&#64;webkit.org&gt;"> <span class="fn">Joseph Pecoraro</span></a>
</span></b>
        <pre>Created <span class=""><a href="attachment.cgi?id=268588" name="attach_268588" title="Incomplete Patch">attachment 268588</a> <a href="attachment.cgi?id=268588&amp;action=edit" title="Incomplete Patch">[details]</a></span>
Incomplete Patch

Passing on to Keith. This WIP changes the parser to parse argument lists allowing for multiple spread arguments:

<span class="quote">&gt; ArgumentList[Yield] :
&gt;     AssignmentExpression[In, ?Yield]
&gt;     ... AssignmentExpression[In, ?Yield]
&gt;     ArgumentList[?Yield] , AssignmentExpression[In, ?Yield]
&gt;     ArgumentList[?Yield] , ... AssignmentExpression[In, ?Yield]</span >

But I didn't make any progress inside of BytecodeGenerator::emitCall, which will need to then convert the ArgumentList of expressions which may now include multiple Spread Expressions into a var args call.</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>