Replace object$ -> OBJECT$, instance$ -> INSTANCE$ in the project
This commit is contained in:
@@ -3,10 +3,10 @@ import kotlinApi.KotlinObject;
|
||||
|
||||
class C {
|
||||
int foo() {
|
||||
KotlinObject.instance$.setProperty1(1);
|
||||
KotlinObject.instance$.setProperty2(2);
|
||||
return KotlinObject.instance$.foo() +
|
||||
KotlinObject.instance$.getProperty1() +
|
||||
KotlinObject.instance$.getProperty2();
|
||||
KotlinObject.INSTANCE$.setProperty1(1);
|
||||
KotlinObject.INSTANCE$.setProperty2(2);
|
||||
return KotlinObject.INSTANCE$.foo() +
|
||||
KotlinObject.INSTANCE$.getProperty1() +
|
||||
KotlinObject.INSTANCE$.getProperty2();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user