Lines Matching refs:target
16 // The current target watcher being evaluated.
18 Dep.target = null;
22 if (Dep.target) {
23 targetStack.push(Dep.target);
25 Dep.target = _target;
29 Dep.target = targetStack.pop();
33 Dep.target = null;
54 * Add self as a dependency to the target watcher.
57 if (Dep.target) {
58 Dep.target.addDep(this);