blob: 056430be8e299fa83ec3828eed4acbedd34e6749 [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.keepanno.ast;
// TODO: finish this.
public abstract class KeepFieldAccessPattern {
public static KeepFieldAccessPattern any() {
return Any.getInstance();
}
public abstract boolean isAny();
private static class Any extends KeepFieldAccessPattern {
private static final Any INSTANCE = new Any();
private static Any getInstance() {
return INSTANCE;
}
@Override
public boolean isAny() {
return true;
}
@Override
public boolean equals(Object obj) {
return this == obj;
}
@Override
public int hashCode() {
return System.identityHashCode(this);
}
@Override
public String toString() {
return "*";
}
}
}