[Webkit-unassigned] [Bug 24967] eval and new Function are both substantially slower than other browsers

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Wed Sep 30 16:05:57 PDT 2009


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





--- Comment #1 from Oliver Hunt <oliver at apple.com>  2009-09-30 16:05:57 PDT ---
new Function (at least) results in a double parse -- eg.
new Function(string)

is considered

function /*foo*/ (..) {
   string
}

which parses the function statement, but does not generate an AST for `string`
as it is inside the function statement

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