2015-02-05 13:08:05 -08:00
|
|
|
import {List} from 'angular2/src/facade/collection';
|
2015-03-11 21:11:39 -07:00
|
|
|
import {Locals} from './parser/locals';
|
2015-03-30 16:54:10 -07:00
|
|
|
import {AST} from './parser/ast';
|
2015-04-01 15:49:14 -07:00
|
|
|
import {DEFAULT} from './constants';
|
2015-03-30 16:54:10 -07:00
|
|
|
|
|
|
|
export class ProtoChangeDetector {
|
|
|
|
addAst(ast:AST, bindingMemento:any, directiveMemento:any = null){}
|
2015-04-01 15:49:14 -07:00
|
|
|
instantiate(dispatcher:any, bindingRecords:List, variableBindings:List, directiveMementos:List):ChangeDetector{
|
2015-03-30 16:54:10 -07:00
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export class ChangeDetection {
|
2015-04-01 15:49:14 -07:00
|
|
|
createProtoChangeDetector(name:string, changeControlStrategy:string=DEFAULT):ProtoChangeDetector{
|
2015-03-30 16:54:10 -07:00
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
2015-01-14 13:51:16 -08:00
|
|
|
|
|
|
|
export class ChangeDispatcher {
|
2015-04-01 15:49:14 -07:00
|
|
|
invokeMementoFor(memento:any, value) {}
|
2015-01-14 13:51:16 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
export class ChangeDetector {
|
|
|
|
parent:ChangeDetector;
|
2015-02-01 12:09:35 -08:00
|
|
|
mode:string;
|
2015-01-14 13:51:16 -08:00
|
|
|
|
|
|
|
addChild(cd:ChangeDetector) {}
|
2015-04-09 07:29:32 -07:00
|
|
|
addShadowDomChild(cd:ChangeDetector) {}
|
2015-01-14 13:51:16 -08:00
|
|
|
removeChild(cd:ChangeDetector) {}
|
|
|
|
remove() {}
|
2015-04-01 15:49:14 -07:00
|
|
|
hydrate(context:any, locals:Locals, directives:any) {}
|
2015-02-27 07:56:50 -08:00
|
|
|
dehydrate() {}
|
2015-02-02 17:40:54 -08:00
|
|
|
markPathToRootAsCheckOnce() {}
|
2015-01-14 13:51:16 -08:00
|
|
|
|
|
|
|
detectChanges() {}
|
|
|
|
checkNoChanges() {}
|
|
|
|
}
|