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