feat(change_detection): implement hydration/dehydration

This commit is contained in:
vsavkin
2015-02-27 07:56:50 -08:00
parent c1dc3ccf48
commit 21f24d19dd
8 changed files with 159 additions and 38 deletions

View File

@ -2,5 +2,6 @@ export var NO_CHANGE = new Object();
export class Pipe {
supports(obj):boolean {return false;}
onDestroy() {}
transform(value:any):any {return null;}
}