BytecodeParser icon indicating copy to clipboard operation
BytecodeParser copied to clipboard

const string paramter return null

Open jiqimaogou opened this issue 6 years ago • 0 comments

class.forname("test") with example code:

            DecodedMethodInvocationOp dmio = (DecodedMethodInvocationOp) frame.decodedOp;
            MethodParams methodParams = DecodedMethodInvocationOp.resolveParameters(frame);
            MethodParam[] params = methodParams.merge();
            System.out.println("method '" + dmio.getName() + "' has been called with the following arguments: " + java.util.Arrays.toString(params));

params return null;

jiqimaogou avatar Nov 09 '18 07:11 jiqimaogou