(String msg, Method method, Object[] args)
| 853 | |
| 854 | |
| 855 | private static void logInvokeMethod(String msg, Method method, Object[] args) { |
| 856 | if (Interpreter.DEBUG) { |
| 857 | Interpreter.debug(msg + method + " with args:"); |
| 858 | for (int i = 0; i < args.length; i++) { |
| 859 | final Object arg = args[i]; |
| 860 | Interpreter.debug("args[" + i + "] = " + arg + " type = " + (arg == null ? "<unkown>" : arg.getClass())); |
| 861 | } |
| 862 | } |
| 863 | } |
| 864 | |
| 865 | |
| 866 | private static void checkFoundStaticMethod(Method method, boolean staticOnly, Class clas) throws UtilEvalError { |
no test coverage detected