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

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


            final String argsAsString = matcher.group(1);
            final ArrayList<String> argsContainer = new ArrayList<String>();
            String returnType = matcher.group(2);
            parseArgs(argsAsString, argsContainer);
            String[] args = argsContainer.toArray(new String[argsContainer.size()]);
            final Instruction instruction = new MethodInvocationInstruction(instructionList.size(), OPCODES_ARRAY[opcode], currentLineNumber,
                                                                            "L" + owner + ";", name, args, returnType);
            updateCurrentState(instruction);
        }
    }
View Full Code Here

TOP

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

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.