blob: 0c1efe2ee051d59ed81daa0c18f582f46858d863 [file] [log] [blame]
// Copyright (c) 2022, 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.startup;
import com.android.tools.r8.Keep;
import com.android.tools.r8.references.MethodReference;
/** Interface for providing information about a startup method to the compiler. */
@Keep
public interface StartupMethodBuilder {
StartupMethodBuilder setMethodReference(MethodReference methodReference);
}