mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-11 20:07:01 +07:00
(cherry picked from commit cd6abb8ad8a01b22066bed85639242b03a85d1d0) IJ-MR-8050 GitOrigin-RevId: f8a350835ce303c96b7f404263d8367242f4eaa6
11 lines
189 B
Python
11 lines
189 B
Python
class Clazz:
|
|
def __init__(self, alpha):
|
|
self.alpha = alpha
|
|
|
|
def foo(self):
|
|
self.x<caret> = self.bar(42)
|
|
|
|
def bar(self, x):
|
|
print(x)
|
|
return x + 1
|