Bug 1674949 - Don't use self in staticmethod in Codegen.py r=nika

Differential Revision: https://phabricator.services.mozilla.com/D95647
This commit is contained in:
Barret Rennie 2020-11-03 17:02:02 +00:00
Родитель ca8d3de9af
Коммит 96c4d18dcb
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -3108,7 +3108,7 @@ class AttrDefiner(PropertyDefiner):
raise TypeError(
"Don't know how to handle "
"static Promise-returning "
"attribute %s.%s" % (self.descriptor.name, attr.identifier.name)
"attribute %s.%s" % (descriptor.name, attr.identifier.name)
)
accessor = "get_" + IDLToCIdentifier(attr.identifier.name)
jitinfo = "nullptr"