String methodType = TypeInferrer.getReturnType(argsList);
// Get Return type
List<Expression> argValues = this.getArguments(popMax);
MethodAccessExpression mex = new StaticMethodAccessExpression(classType,
methodName, methodType, argValues);
if (!methodType.equals(String.valueOf(JVM_TYPE_VOID))) {
// Non-void method.Push the result onto the stack.
evalMachine.push(mex);