blob: d0e0a37ee214f4cbab6ca73551c39055c0371dcc [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.utils.codeinspector;
import kotlinx.metadata.KmFunction;
import kotlinx.metadata.jvm.JvmMethodSignature;
public abstract class KmFunctionSubject extends Subject {
// TODO(b/145824437): This is a dup of KotlinMetadataSynthesizer#isExtension
static boolean isExtension(KmFunction kmFunction) {
return kmFunction.getReceiverParameterType() != null;
}
public abstract boolean isExtension();
public abstract JvmMethodSignature signature();
public abstract KmTypeSubject receiverParameterType();
public abstract KmTypeSubject returnType();
}