Replace OBJECT$ usages in code and test data

This commit is contained in:
Pavel V. Talanov
2015-03-25 15:49:16 +03:00
parent ed218c473a
commit 9d618ca767
13 changed files with 31 additions and 31 deletions

View File

@@ -2,13 +2,13 @@ package test;
class ClassObject {
void accessToClassObject() {
WithClassObject.OBJECT$.foo();
WithClassObject.OBJECT$.getValue();
WithClassObject.OBJECT$.getValueWithGetter();
WithClassObject.OBJECT$.getVariable();
WithClassObject.OBJECT$.setVariable(0);
WithClassObject.OBJECT$.getVariableWithAccessors();
WithClassObject.OBJECT$.setVariableWithAccessors(0);
WithClassObject.Companion.foo();
WithClassObject.Companion.getValue();
WithClassObject.Companion.getValueWithGetter();
WithClassObject.Companion.getVariable();
WithClassObject.Companion.setVariable(0);
WithClassObject.Companion.getVariableWithAccessors();
WithClassObject.Companion.setVariableWithAccessors(0);
}
void accessToPackageObject() {