()
| 1000 | */ |
| 1001 | //主题对象Dep构造函数 主要用于添加发布事件后,用户更新数据的 响应式原理之一函数 |
| 1002 | var Dep = function Dep() { |
| 1003 | //uid 初始化为0 |
| 1004 | this.id = uid++; |
| 1005 | /* 用来存放Watcher对象的数组 */ |
| 1006 | this.subs = []; |
| 1007 | }; |
| 1008 | |
| 1009 | Dep.prototype.addSub = function addSub(sub) { |
| 1010 | /* 在subs中添加一个Watcher对象 */ |
nothing calls this directly
no outgoing calls
no test coverage detected