[Webkit-unassigned] [Bug 38410] New: Add support for destructuring

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Fri Apr 30 15:57:25 PDT 2010


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

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


Destructuring (aka destructuring assignmen) is one of the approved proposals
for the next version of ECMAScript (Harmony). Destructuring is already
supported by SpiderMonkey and Opera (Carakan).

var [x, y] = [0, 1];
assertEquals(0, x);
assertEquals(1, y);

-- 
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