com.googlecode.d2j.node.insn.Stmt2R1NNode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gradle Show documentation
Show all versions of gradle Show documentation
fakeradnroid gradle builder
package com.googlecode.d2j.node.insn;
import com.googlecode.d2j.reader.Op;
import com.googlecode.d2j.visitors.DexCodeVisitor;
public class Stmt2R1NNode extends DexStmtNode {
public final int distReg;
public final int srcReg;
public final int content;
public Stmt2R1NNode(Op op, int distReg, int srcReg, int content) {
super(op);
this.distReg = distReg;
this.srcReg = srcReg;
this.content = content;
}
@Override
public void accept(DexCodeVisitor cv) {
cv.visitStmt2R1N(op, distReg, srcReg, content);
}
}