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

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


        final Instruction instruction;
        if (constant instanceof Type) {
            instruction = new ReferenceOperandInstruction(instructionList.size(), Opcode.LDC, currentLineNumber, constant.toString());
        }
        else {
            instruction = new ConstInstruction(instructionList.size(), Opcode.LDC, currentLineNumber, constant);
        }
        updateCurrentState(instruction);
    }
View Full Code Here

TOP

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

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.