blob: bfe03a962052df1f57d0cdac97cb1fb22a54ca43 [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;
import com.android.tools.r8.contexts.CompilationContext.ClassSynthesisDesugaringContext;
public interface CfClassSynthesizerDesugaring {
String uniqueIdentifier();
void synthesizeClasses(
ClassSynthesisDesugaringContext processingContext,
CfClassSynthesizerDesugaringEventConsumer eventConsumer);
}