Bug 742167. Give extendedAttribute() a better name. r=khuey

This commit is contained in:
Boris Zbarsky 2012-04-10 12:40:12 -04:00
Родитель 9a8b846bd4
Коммит f56e7860e0
2 изменённых файлов: 2 добавлений и 2 удалений

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

@ -604,7 +604,7 @@ class CGClassHasInstanceHook(CGAbstractStaticMethod):
""" % (self.descriptor.name, self.descriptor.hasInstanceInterface)
def isChromeOnly(m):
return m.extendedAttribute("ChromeOnly")
return m.getExtendedAttribute("ChromeOnly")
class PropertyDefiner:
"""

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

@ -1340,7 +1340,7 @@ class IDLInterfaceMember(IDLObjectWithIdentifier):
def handleExtendedAttribute(self, name, list):
pass
def extendedAttribute(self, name):
def getExtendedAttribute(self, name):
return self._extendedAttrDict.get(name, None)
class IDLConst(IDLInterfaceMember):