lega911 / angular-light

Alight is a library for building interactive MVVM web interfaces/applications. (project is deprecated)
MIT License
274 stars 43 forks source link

optimization for text-directives + expressions #156

Closed lega911 closed 7 years ago

lega911 commented 8 years ago

https://github.com/lega911/angular-light/issues/155

types: 1) text 2) variable/expression 3) expression with filter 4) text-directive

cases (watchers): 1) text (0) 2) variable + variable (1+0) 3) filter + filter (1+2) 4) directive + directive (0) 5) variable + directive (1+1) <-- need to optimize 6) filter + directive (1+1) 7) variable + filter + directive (1+2)