Bug 1410640 - Enable nursery allocation of arrow functions. r=jonco

This commit is contained in:
André Bargull 2017-10-24 18:25:46 +09:00
Родитель 8c122016c2
Коммит c20b56fe3d
1 изменённых файлов: 1 добавлений и 2 удалений

Просмотреть файл

@ -4411,8 +4411,7 @@ js::LambdaArrow(JSContext* cx, HandleFunction fun, HandleObject parent, HandleVa
{
MOZ_ASSERT(fun->isArrow());
JSFunction* clone = CloneFunctionObjectIfNotSingleton(cx, fun, parent, nullptr,
TenuredObject);
JSFunction* clone = CloneFunctionObjectIfNotSingleton(cx, fun, parent);
if (!clone)
return nullptr;