Package org.freud.analysed.classbytecode.method.instruction

Examples of org.freud.analysed.classbytecode.method.instruction.VarInstruction


        }
        updateCurrentState(instruction);
    }

    public void visitVarInsn(final int opcodeUsed, final int var) {
        final Instruction instruction = new VarInstruction(instructionList.size(), OPCODES_ARRAY[opcodeUsed], currentLineNumber, var);
        updateCurrentState(instruction);
    }
View Full Code Here

TOP

Related Classes of org.freud.analysed.classbytecode.method.instruction.VarInstruction

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.