blob: 873d5e55c6351a00fa31cfedf7ab83b0cf3f1ec9 [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.ir.desugar.apimodel;
import com.android.tools.r8.graph.ProgramMethod;
public interface ApiInvokeOutlinerDesugaringEventConsumer {
void acceptOutlinedMethod(ProgramMethod outlinedMethod, ProgramMethod context);
}