mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
* Dependency info may be lost when new member is created, so we store it on PSI level * Support target reference dependency * Method can't be abstract when property depends on it GitOrigin-RevId: 24b9b64ef4ce60dd19bc4696e1d7aabf6a260067
8 lines
80 B
Python
8 lines
80 B
Python
class C:
|
|
def __add__(self, other):
|
|
pass
|
|
|
|
__radd__ = __add__
|
|
#
|
|
#
|