blob: f4a158c28edee9d51e8d21853d1995238dc993d1 [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.desugaredlibrary.machinespecification;
import com.android.tools.r8.graph.DexMethod;
import com.android.tools.r8.graph.DexType;
import java.util.List;
public class WrapperDescriptor {
private final List<DexMethod> methods;
private final List<DexType> subwrappers;
public WrapperDescriptor(List<DexMethod> methods, List<DexType> directSubtypes) {
this.methods = methods;
this.subwrappers = directSubtypes;
}
public List<DexMethod> getMethods() {
return methods;
}
public List<DexType> getSubwrappers() {
return subwrappers;
}
}