blob: 941f0bafd5120be4982d36796a1d51563c84e13d [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.ir.desugar.backports;
import com.android.tools.r8.cf.code.CfInvoke;
import com.android.tools.r8.ir.desugar.BackportedMethodRewriter.MethodInvokeRewriter;
import org.objectweb.asm.Opcodes;
public final class TypedArrayMethodRewrites {
private TypedArrayMethodRewrites() {}
public static MethodInvokeRewriter rewriteClose() {
// Rewrite android/content/res/TypedArray#close to android/content/res/TypedArray#recycle
return (invoke, factory) ->
new CfInvoke(
Opcodes.INVOKEVIRTUAL, factory.androidContentResTypedArrayMembers.recycle, false);
}
}