()
| 607 | * directives subscribing to it. |
| 608 | */ |
| 609 | var Dep = function Dep () { |
| 610 | this.id = uid$1++; |
| 611 | this.subs = []; |
| 612 | }; |
| 613 | |
| 614 | Dep.prototype.addSub = function addSub (sub) { |
| 615 | this.subs.push(sub); |
nothing calls this directly
no outgoing calls
no test coverage detected