Rename DoubleColonLHS.Expression.isObject -> isObjectQualifier

This commit is contained in:
Alexander Udalov
2017-02-06 14:34:10 +03:00
parent 478352b7e7
commit e58baa51ae
6 changed files with 25 additions and 13 deletions
@@ -3393,7 +3393,7 @@ public class ExpressionCodegen extends KtVisitor<StackValue, StackValue> impleme
@Override
public Unit invoke(InstructionAdapter v) {
KotlinType type = lhs.getType();
if (lhs instanceof DoubleColonLHS.Expression && !((DoubleColonLHS.Expression) lhs).isObject()) {
if (lhs instanceof DoubleColonLHS.Expression && !((DoubleColonLHS.Expression) lhs).isObjectQualifier()) {
JavaClassProperty.INSTANCE.generateImpl(v, gen(receiverExpression));
}
else {