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-04-01 15:49:14 -07:00
|
|
|
import {DEFAULT} from './constants';
|
2015-04-09 07:57:33 -07:00
|
|
|
import {BindingRecord} from './binding_record';
|
2015-03-30 16:54:10 -07:00
|
|
|
|
|
|
|
export class ProtoChangeDetector {
|
2015-04-09 07:57:33 -07:00
|
|
|
instantiate(dispatcher:any, bindingRecords:List, variableBindings:List, directiveRecords:List):ChangeDetector{
|
2015-03-30 16:54:10 -07:00
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-13 21:00:52 -07:00
|
|
|
/**
|
|
|
|
* Interface used by Angular to control the change detection strategy for an application.
|
|
|
|
*
|
|
|
|
* Angular implements the following change detection strategies by default:
|
|
|
|
*
|
|
|
|
* - [dynamicChangeDetection]: slower, but does not require `eval()`.
|
|
|
|
* - [jitChangeDetection]: faster, but requires `eval()`.
|
|
|
|
*
|
|
|
|
* In JavaScript, you should always use `jitChangeDetection`, unless you are in an environment that has
|
|
|
|
* [CSP](https://developer.mozilla.org/en-US/docs/Web/Security/CSP), such as a Chrome Extension.
|
|
|
|
*
|
|
|
|
* In Dart, use `dynamicChangeDetection` during development. The Angular transformer generates an analog to the
|
|
|
|
* `jitChangeDetection` strategy at compile time.
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* See: [dynamicChangeDetection], [jitChangeDetection]
|
|
|
|
*
|
|
|
|
* # Example
|
|
|
|
* ```javascript
|
|
|
|
* bootstrap(MyApp, [bind(ChangeDetection).toValue(dynamicChangeDetection)]);
|
|
|
|
* ```
|
|
|
|
* @exportedAs angular2/change_detection
|
|
|
|
*/
|
2015-03-30 16:54:10 -07:00
|
|
|
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-09 07:57:33 -07:00
|
|
|
notifyOnBinding(bindingRecord:BindingRecord, value:any) {}
|
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) {}
|
2015-04-14 18:01:44 -07:00
|
|
|
removeShadowDomChild(cd:ChangeDetector) {}
|
2015-01-14 13:51:16 -08:00
|
|
|
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() {}
|
|
|
|
}
|