blob: d04e0981b25ba6ce76a111b029140e8e8e803a7c [file] [log] [blame]
// Copyright (c) 2016, 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.code;
import com.android.tools.r8.dex.IndexedItemCollection;
import com.android.tools.r8.graph.DexField;
abstract class SgetOrSput extends Format21c<DexField> {
SgetOrSput(int high, BytecodeStream stream, DexField[] map) {
super(high, stream, map);
}
protected SgetOrSput(int AA, DexField BBBB) {
super(AA, BBBB);
}
@Override
public final void collectIndexedItems(IndexedItemCollection indexedItems) {
getField().collectIndexedItems(indexedItems);
}
@Override
public final DexField getField() {
return BBBB;
}
}