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

com.github.rapidark.framework.thirdparty.asm.tree.IincInsnNode Maven / Gradle / Ivy

The newest version!
package com.github.rapidark.framework.thirdparty.asm.tree;

import java.util.Map;

import com.github.rapidark.framework.thirdparty.asm.MethodVisitor;

public class IincInsnNode extends AbstractInsnNode {
	public int var;
	public int incr;

	public IincInsnNode(int var, int incr) {
		super(132);
		this.var = var;
		this.incr = incr;
	}

	public int getType() {
		return 10;
	}

	public void accept(MethodVisitor mv) {
		mv.visitIincInsn(this.var, this.incr);
	}

	public AbstractInsnNode clone(Map labels) {
		return new IincInsnNode(this.var, this.incr);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy