All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.llamalad7.mixinextras.expression.impl.pool.ArrayLengthDef Maven / Gradle / Ivy

package com.llamalad7.mixinextras.expression.impl.pool;

import org.objectweb.asm.Opcodes;
import org.objectweb.asm.tree.AbstractInsnNode;

class ArrayLengthDef implements SimpleMemberDefinition {
    @Override
    public boolean matches(AbstractInsnNode insn) {
        return insn.getOpcode() == Opcodes.ARRAYLENGTH;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy