Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
tools
/
idea
/
3a2425a5aed1bef93dab954745ad5665265eb70b
/
.
/
python
/
testData
/
quickFixes
/
AddMethodQuickFixTest
/
addMethodFromMethod.py
blob: 26f30bc3ada11554f5b902f796f620e36c3080d3 [
file
] [
log
] [
blame
]
class
A
:
def
__init__
(
self
):
self
.
x
=
1
def
foo
(
self
,
a
):
self
.<
caret
><
warning descr
=
"Unresolved attribute reference 'y' for class 'A'"
>
y
</
warning
>(
1
,
a
)
# Some comment
class
B
:
pass