(depMap)
| 497 | } |
| 498 | |
| 499 | function getModule(depMap) { |
| 500 | var id = depMap.id, |
| 501 | mod = getOwn(registry, id); |
| 502 | |
| 503 | if (!mod) { |
| 504 | mod = registry[id] = new context.Module(depMap); |
| 505 | } |
| 506 | |
| 507 | return mod; |
| 508 | } |
| 509 | |
| 510 | function on(depMap, name, fn) { |
| 511 | var id = depMap.id, |
no test coverage detected
searching dependent graphs…