(name)
| 321 | } |
| 322 | |
| 323 | function findClass(name) { |
| 324 | return app.handler('rest').adapter |
| 325 | .getClasses() |
| 326 | .filter(function(c) { |
| 327 | return c.name === name; |
| 328 | })[0]; |
| 329 | } |
| 330 | |
| 331 | function getFormattedMethodsExcludingRelations(methods) { |
| 332 | return methods.filter(function(m) { |
no outgoing calls
no test coverage detected
searching dependent graphs…