blob: b3f9c2506096b3da4dd660145a606a7cb55dad0d [file] [log] [blame]
// Copyright (c) 2019, 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.graph;
import java.util.function.BiPredicate;
import java.util.function.Consumer;
/** Provides immutable access to {@link FieldAccessInfoCollectionImpl}. */
public interface FieldAccessInfoCollection<T extends FieldAccessInfo> {
void destroyAccessContexts();
void flattenAccessContexts();
boolean contains(DexField field);
T get(DexField field);
void forEach(Consumer<T> consumer);
void removeIf(BiPredicate<DexField, FieldAccessInfoImpl> predicate);
void restrictToProgram(DexDefinitionSupplier definitions);
}