MCPcopy Index your code
hub / github.com/beanshell/beanshell / logInvokeMethod

Method logInvokeMethod

src/bsh/Reflect.java:855–863  ·  view source on GitHub ↗
(String msg, Method method, Object[] args)

Source from the content-addressed store, hash-verified

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 {

Callers 1

invokeMethodMethod · 0.95

Calls 2

debugMethod · 0.95
getClassMethod · 0.80

Tested by

no test coverage detected