(srv, parent)
| 507 | } |
| 508 | |
| 509 | function parentDepth(srv, parent) { |
| 510 | var depth = 0; |
| 511 | while (parent) { |
| 512 | parent = srv.fileMap[parent].parent; |
| 513 | ++depth; |
| 514 | } |
| 515 | return depth; |
| 516 | } |
| 517 | |
| 518 | function budgetName(srv, file) { |
| 519 | for (;;) { |
no outgoing calls
no test coverage detected
searching dependent graphs…