Bug 1259172 - Fix assertion in Codegen.py's InitUnforgeablePropertiesOnHolder function. r=bz

This commit is contained in:
Jonathan Watt 2016-03-04 16:24:16 +00:00
Родитель bbfe3dbc14
Коммит d274717f72
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -3397,7 +3397,7 @@ def InitUnforgeablePropertiesOnHolder(descriptor, properties, failureCode):
assert (properties.unforgeableAttrs.hasNonChromeOnly() or
properties.unforgeableAttrs.hasChromeOnly() or
properties.unforgeableMethods.hasNonChromeOnly() or
properties.unforgeableMethods.hasChromeOnly)
properties.unforgeableMethods.hasChromeOnly())
unforgeables = []