Reintroduce lost space in r13867.

R=rossberg@chromium.org

Review URL: https://codereview.chromium.org/12449004

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@13870 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
This commit is contained in:
mstarzinger@chromium.org 2013-03-07 16:59:18 +00:00
parent 5afa1a0d3a
commit 25acd805f5

View File

@ -1710,7 +1710,7 @@ function NewFunction(arg1) { // length == 1
p += '\n/' + '**/';
}
var body = (n > 0) ? ToString(%_Arguments(n - 1)) : '';
var source = '(function(\n' + p + '\n){\n' + body + '\n})';
var source = '(function(\n' + p + '\n) {\n' + body + '\n})';
// The call to SetNewFunctionAttributes will ensure the prototype
// property of the resulting function is enumerable (ECMA262, 15.3.5.2).