dart-archive / angular.dart

Legacy source repository. See github.com/dart-lang/angular
https://webdev.dartlang.org/angular/
1.25k stars 248 forks source link

Replace context map with component Controller. #914

Open mhevery opened 10 years ago

mhevery commented 10 years ago

Currently the scope.context is Map or ProtoMap. This should be removed in favor of the component Controller. This means that we can remove publishAs from the Component declaration. It means that templates which say {{cntl.foo}} will become {{foo}}.

vicb commented 10 years ago

I have started to tackle this one