[Webkit-unassigned] [Bug 38411] New: Add support for the spread operator

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Fri Apr 30 16:03:41 PDT 2010


https://bugs.webkit.org/show_bug.cgi?id=38411

           Summary: Add support for the spread operator
           Product: WebKit
           Version: 528+ (Nightly build)
          Platform: All
               URL: http://wiki.ecmascript.org/doku.php?id=harmony:spread
        OS/Version: All
            Status: NEW
          Severity: Normal
          Priority: P2
         Component: JavaScriptCore
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: arv at chromium.org


The spread operator is one of the approved proposals for the next version of
ECMAScript (Harmony)

function f(a, b) {
  assertEquals(0, a);
  assertEquals(1, b);
}

var array = [0, 1];
f(...array);

The spread operator removes most needs of Function.prototype.apply.

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list