Bug 59795

Summary: Inconsistent SyntaxError from new Function(...)
Product: WebKit Reporter: mikesamuel <mikesamuel>
Component: JavaScriptCoreAssignee: Nobody <webkit-unassigned>
Status: RESOLVED WORKSFORME    
Severity: Normal CC: barraclough, oliver
Priority: P2    
Version: 528+ (Nightly build)   
Hardware: Mac   
OS: OS X 10.5   

Description mikesamuel@gmail.com 2011-04-29 07:38:32 PDT
Executing the Function constructor with a mis-parenthesized input thus
    Function("(i + (j)")
exits abruptly with a SyntaxError:
    SyntaxError: Parse error

Executing the same but with the return keyword before the mis-parenthesized expression does not error out:
    Function("return (i + (j)")
evaluates normally with the value
    function anonymous() { return (i + (j);
    }

I expected the first example and the second example to both produce a SyntaxError.
I.e., if this is fixed, I expect
    Function("return (i + (j)")


Note that
    var i = 1
    var j = 2
    typeof Function("return (i + (j)")()
evaluates normally with the string
    "undefined"
not "number" as might be done if bad inputs are being intentionally massaged or a SyntaxError as might be done if parsing is intentionally done lazily.
Comment 1 Gavin Barraclough 2012-03-11 12:53:04 PDT
Looks like these have been fixed, added the extra test cases in r110398