(srv, parent)
| 500 | } |
| 501 | |
| 502 | function parentDepth(srv, parent) { |
| 503 | var depth = 0; |
| 504 | while (parent) { |
| 505 | parent = srv.fileMap[parent].parent; |
| 506 | ++depth; |
| 507 | } |
| 508 | return depth; |
| 509 | } |
| 510 | |
| 511 | function budgetName(srv, file) { |
| 512 | for (;;) { |
no outgoing calls
no test coverage detected