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