feat(ChangeDetector): change View to construct a WatchGroup hierarchy

This commit is contained in:
vsavkin
2014-11-17 17:22:45 -08:00
parent 384f0ae858
commit f0d6464856
4 changed files with 19 additions and 15 deletions

View File

@ -65,6 +65,7 @@ export class View {
addChild(childView: View) {
ListWrapper.push(this.childViews, childView);
this.watchGroup.addChild(childView.watchGroup);
}
}