feat(change_detection): change binding syntax to explicitly specify pipes

This commit is contained in:
vsavkin
2015-02-19 17:47:25 -08:00
parent 69e02ee76f
commit 58ba700b14
20 changed files with 236 additions and 101 deletions
@@ -119,7 +119,7 @@ function setUpChangeDetection(changeDetection:ChangeDetection, iterations) {
parser.parseBinding('field9', null)
];
for (var j = 0; j < 10; ++j) {
proto.addAst(astWithSource[j].ast, "memo", j, false);
proto.addAst(astWithSource[j].ast, "memo", j);
}
for (var i = 0; i < iterations; ++i) {
@@ -169,7 +169,7 @@ export function setupReflectorForAngular() {
'annotations' : [new Viewport({
selector: '[foreach]',
bind: {
'iterableChanges[]': 'in'
'iterableChanges': 'in | iterableDiff'
}
})]
});