blob: e869207b6694a3ade3c6b040f4b8ff9c431872e7 [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.jvm.JvmMethodSignature;
public class AbsentKmFunctionSubject extends KmFunctionSubject {
@Override
public boolean isPresent() {
return false;
}
@Override
public boolean isRenamed() {
return false;
}
@Override
public boolean isSynthetic() {
return false;
}
@Override
public boolean isExtension() {
return false;
}
@Override
public JvmMethodSignature signature() {
return null;
}
}