()
| 259 | } |
| 260 | |
| 261 | public synchronized OtpErlangList requestFunctions() throws Exception { |
| 262 | assert !Platform.isFxApplicationThread() : "cannot run this method from the FX thread"; |
| 263 | |
| 264 | sendRPC("erlyberly", "module_functions", new OtpErlangList()); |
| 265 | return (OtpErlangList) receiveRPC(); |
| 266 | } |
| 267 | |
| 268 | public synchronized void startTrace(ModFunc mf) throws Exception { |
| 269 | assert mf.getFuncName() != null : "function name cannot be null"; |
no test coverage detected