Bug 1461791 - Part 1: Create shape table for intrinsic lookups. r=jandem

This commit is contained in:
André Bargull 2018-05-16 04:35:40 -07:00
Родитель 4782ef15d6
Коммит 853592a685
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -691,7 +691,7 @@ class GlobalObject : public NativeObject
if (!holder)
return false;
if (Shape* shape = holder->lookupPure(name)) {
if (Shape* shape = holder->lookup(cx, name)) {
vp.set(holder->getSlot(shape->slot()));
*exists = true;
} else {