blob: ddab7921f65395e9fa04591f60e8fb4f022d5de1 [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 flattenAccessContexts();
T get(DexField field);
void forEach(Consumer<T> consumer);
void removeIf(BiPredicate<DexField, FieldAccessInfoImpl> predicate);
void restrictToProgram(DexDefinitionSupplier definitions);
}