mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
type migration: normalize declaration so it's possible to migrate separate parts (IDEA-132521)
This commit is contained in:
@@ -1,13 +1,8 @@
|
||||
Types:
|
||||
PsiField:bar : int
|
||||
PsiField:foo : int
|
||||
PsiParameter:bar : int
|
||||
PsiParameter:foo : int
|
||||
PsiReferenceExpression:bar : int
|
||||
PsiReferenceExpression:bar : int
|
||||
PsiReferenceExpression:foo : int
|
||||
PsiReferenceExpression:foo : int
|
||||
PsiReferenceExpression:this.bar : int
|
||||
PsiReferenceExpression:this.foo : int
|
||||
|
||||
Conversions:
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
class Test {
|
||||
private int foo, bar;
|
||||
private int foo;
|
||||
private long bar;
|
||||
|
||||
public long getFoo() {
|
||||
return foo;
|
||||
@@ -13,7 +14,7 @@ class Test {
|
||||
return bar;
|
||||
}
|
||||
|
||||
public void setBar(int bar) {
|
||||
public void setBar(long bar) {
|
||||
this.bar = bar;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user