blob: 8fc50d17704c7b807bc0b2f7d15627c26f5a72c3 [file] [log] [blame]
// Copyright (c) 2021, 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.itf;
import com.android.tools.r8.graph.ProgramMethod;
public interface InterfaceProcessingDesugaringEventConsumer {
void acceptForwardingMethod(ProgramMethod method);
// TODO(b/183998768): Remove this once interface desugaring is moved to the R8 enqueuer.
void acceptCompanionClassClinit(ProgramMethod method);
}