aboutsummaryrefslogtreecommitdiffstats
path: root/src/service/parse.js
AgeCommit message (Collapse)Author
2012-02-21feat(parse): add support for local vars in expressionsMisko Hevery
2012-01-25fix($parse): simplify getterFnIgor Minar
2012-01-25fix($parse): small fixesIgor Minar
- typos - dead code removal - remove unneeded variable
2012-01-25fix($parse): get rid of $unboundFnIgor Minar
Closes #731
2012-01-23fix($parse): fixing typos in JS_KEYWORDSIgor Minar
2011-11-30feat($parse): add support for transparent evaluation of PromisesIgor Minar
Parser now builds expressions that can detect promises and transparently evaluate them to undefined or the promise value. If promiseA is resolved with value 'A', then {{promiseA}} evals to 'A'; If promiseA is unresolved, then {{promiseA}} evals to undefined; Following invocations are supported: - {{promise}} - {{promise.futureProp}} - {{[promise][0]}} - {{object.promise}} - {{object[promise]}} - {{array[promise]}} - {{fn(promise)}} - combinations of the above
2011-11-14refactor(api): remove type augmentationMisko Hevery
BREAK: - remove angular.[Object/Array/String/Function] - in templates [].$filter(predicate) and friends need to change to [] | filter:predicate
2011-11-14refactor(filter): filters are now injectable and servicesMisko Hevery
BREAK: - removed CSS support from filters
2011-11-14refactor(parser): turn parser into a service (keep compatibility hack)Misko Hevery
2011-11-14fix(JSON): json date parsing same native/ngular parserMisko Hevery
2011-11-14move(parser): appease the History GodMisko Hevery