[Webkit-unassigned] [Bug 17013] New: JSC can't round trip an for-loops

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Fri Jan 25 19:13:53 PST 2008


http://bugs.webkit.org/show_bug.cgi?id=17013

           Summary: JSC can't round trip an for-loops
           Product: WebKit
           Version: 525+ (Nightly build)
          Platform: Macintosh
        OS/Version: Mac OS X 10.4
            Status: NEW
          Keywords: HasReduction, Regression, NeedsRadar
          Severity: Normal
          Priority: P2
         Component: JavaScriptCore
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: oliver at apple.com
                CC: darin at apple.com, jruderman at gmail.com


Given the code
function f(){
    for (var x;;)
        ;
}

f.toString() produces:
function f(){
    var x;
    for (var true;true;true)
        ;
}

in which "Var true" is invalid.

Found by JSFunFuzz


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



More information about the webkit-unassigned mailing list