blob: 3994d6e1ade1826bfd66d3e46b8f3c32378ab3aa [file] [log] [blame]
// Copyright (c) 2020, the R8 project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
package com.android.tools.r8.kotlin;
import com.android.tools.r8.graph.DexField;
import com.android.tools.r8.graph.DexString;
import com.android.tools.r8.naming.NamingLens;
import kotlin.metadata.KmClass;
// Structure around a kotlin companion object that can be assigned to a field.
public class KotlinCompanionInfo implements KotlinFieldLevelInfo {
private final String companionObjectFieldName;
public KotlinCompanionInfo(String companionObjectFieldName) {
this.companionObjectFieldName = companionObjectFieldName;
}
@Override
public boolean isCompanion() {
return true;
}
@Override
public KotlinCompanionInfo asCompanion() {
return this;
}
boolean rewrite(KmClass clazz, DexField field, NamingLens lens) {
DexString dexString = lens.lookupName(field);
String finalName = dexString.toString();
clazz.setCompanionObject(finalName);
return !finalName.equals(companionObjectFieldName);
}
@Override
public void trace(KotlinMetadataUseRegistry registry) {
// Do nothing.
}
}