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