| // Copyright (c) 2020, 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 com.android.tools.r8.errors.Unreachable; |
| public class FinalInitClassLens extends InitClassLens { |
| private final Map<DexType, DexField> mapping; |
| FinalInitClassLens(Map<DexType, DexField> mapping) { |
| public DexField getInitClassField(DexType type) { |
| DexField field = mapping.get(type); |
| throw new Unreachable("Unexpected InitClass instruction for `" + type.toSourceString() + "`"); |
| public boolean isFinal() { |
| public InitClassLens rewrittenWithLens(GraphLens lens) { |
| InitClassLens.Builder builder = InitClassLens.builder(); |
| DexType rewrittenType = lens.lookupType(type); |
| DexField rewrittenField = lens.lookupField(field); |
| builder.map(rewrittenType, rewrittenField); |