blob: 66a60d50a56ee346cb2be3fab25b62d88f6afff1 [file] [log] [blame]
// Copyright (c) 2023, 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.lens;
import com.android.tools.r8.errors.Unreachable;
import com.android.tools.r8.graph.DexField;
import com.android.tools.r8.graph.DexType;
public class ThrowingInitClassLens extends InitClassLens {
private static final ThrowingInitClassLens INSTANCE = new ThrowingInitClassLens();
private ThrowingInitClassLens() {}
public static ThrowingInitClassLens getInstance() {
return INSTANCE;
}
@Override
public DexField getInitClassField(DexType type) {
throw new Unreachable("Unexpected InitClass instruction for `" + type.toSourceString() + "`");
}
@Override
public InitClassLens rewrittenWithLens(GraphLens lens) {
return this;
}
}