зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1582567. Stop emitting 'virtual' in codegen if we're already emitting 'override'. r=edgar
Differential Revision: https://phabricator.services.mozilla.com/D46527 --HG-- extra : moz-landing-system : lando
This commit is contained in:
Родитель
f570c09b42
Коммит
5bc8266c20
|
@ -10834,7 +10834,7 @@ class ClassMethod(ClassItem):
|
|||
if declaring:
|
||||
if self.static:
|
||||
decorators.append('static')
|
||||
if self.virtual:
|
||||
if self.virtual and not self.override:
|
||||
decorators.append('virtual')
|
||||
if decorators:
|
||||
return ' '.join(decorators) + ' '
|
||||
|
|
Загрузка…
Ссылка в новой задаче