(depMap)
| 485 | } |
| 486 | |
| 487 | function getModule(depMap) { |
| 488 | var id = depMap.id, |
| 489 | mod = getOwn(registry, id); |
| 490 | |
| 491 | if (!mod) { |
| 492 | mod = registry[id] = new context.Module(depMap); |
| 493 | } |
| 494 | |
| 495 | return mod; |
| 496 | } |
| 497 | |
| 498 | function on(depMap, name, fn) { |
| 499 | var id = depMap.id, |
no test coverage detected
searching dependent graphs…