(OtpErlangAtom module, OtpErlangAtom function, OtpErlangLong arity)
| 408 | } |
| 409 | |
| 410 | public synchronized OtpErlangObject callGraph(OtpErlangAtom module, OtpErlangAtom function, OtpErlangLong arity) throws IOException, OtpErlangException { |
| 411 | sendRPC("erlyberly", "xref_analysis", list(module, function, arity)); |
| 412 | |
| 413 | OtpErlangObject result = (OtpErlangObject) receiveRPC(); |
| 414 | |
| 415 | System.out.println(result); |
| 416 | |
| 417 | return result; |
| 418 | } |
| 419 | |
| 420 | public synchronized String moduleFunctionSourceCode(String module, String function, Integer arity) throws IOException, OtpErlangException { |
| 421 | OtpErlangInt otpArity = new OtpErlangInt(arity); |
no test coverage detected