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

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


    public void visitFieldInsn(
            final int opcode,
            final String owner,
            final String name,
            final String desc) {
        final Instruction instruction = new FieldInstruction(instructionList.size(), OPCODES_ARRAY[opcode], currentLineNumber, owner, name, desc);
        updateCurrentState(instruction);
    }
View Full Code Here

TOP

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

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.