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