2015-04-10 06:45:02 -04:00
|
|
|
/**
|
|
|
|
* @module
|
|
|
|
* @public
|
|
|
|
* @description
|
2015-04-14 00:00:52 -04:00
|
|
|
* Change detection enables data binding in Angular.
|
2015-04-10 06:45:02 -04:00
|
|
|
*/
|
|
|
|
|
2015-03-23 17:10:55 -04:00
|
|
|
export {
|
2015-05-01 17:05:19 -04:00
|
|
|
ASTWithSource,
|
|
|
|
AST,
|
|
|
|
AstTransformer,
|
|
|
|
AccessMember,
|
|
|
|
LiteralArray,
|
|
|
|
ImplicitReceiver
|
2015-03-23 17:10:55 -04:00
|
|
|
} from './src/change_detection/parser/ast';
|
2015-04-14 16:48:44 -04:00
|
|
|
|
2015-02-05 16:08:05 -05:00
|
|
|
export {Lexer} from './src/change_detection/parser/lexer';
|
|
|
|
export {Parser} from './src/change_detection/parser/parser';
|
2015-04-14 16:48:44 -04:00
|
|
|
export {Locals} from './src/change_detection/parser/locals';
|
|
|
|
|
2015-05-01 17:05:19 -04:00
|
|
|
export {
|
|
|
|
ExpressionChangedAfterItHasBeenChecked,
|
|
|
|
ChangeDetectionError
|
|
|
|
} from './src/change_detection/exceptions';
|
|
|
|
export {
|
|
|
|
ProtoChangeDetector,
|
|
|
|
ChangeDispatcher,
|
|
|
|
ChangeDetector,
|
2015-05-13 16:01:31 -04:00
|
|
|
ChangeDetection,
|
|
|
|
ChangeDetectorDefinition
|
2015-05-01 17:05:19 -04:00
|
|
|
} from './src/change_detection/interfaces';
|
|
|
|
export {
|
|
|
|
CHECK_ONCE,
|
|
|
|
CHECK_ALWAYS,
|
|
|
|
DETACHED,
|
|
|
|
CHECKED,
|
|
|
|
ON_PUSH,
|
|
|
|
DEFAULT
|
|
|
|
} from './src/change_detection/constants';
|
|
|
|
export {
|
|
|
|
DynamicProtoChangeDetector,
|
|
|
|
JitProtoChangeDetector
|
|
|
|
} from './src/change_detection/proto_change_detector';
|
2015-04-14 16:48:44 -04:00
|
|
|
export {BindingRecord} from './src/change_detection/binding_record';
|
2015-04-21 14:47:53 -04:00
|
|
|
export {DirectiveIndex, DirectiveRecord} from './src/change_detection/directive_record';
|
2015-04-14 16:48:44 -04:00
|
|
|
export {DynamicChangeDetector} from './src/change_detection/dynamic_change_detector';
|
2015-04-14 10:47:12 -04:00
|
|
|
export {ChangeDetectorRef} from './src/change_detection/change_detector_ref';
|
2015-04-14 16:48:44 -04:00
|
|
|
export {PipeRegistry} from './src/change_detection/pipes/pipe_registry';
|
2015-03-13 20:52:27 -04:00
|
|
|
export {uninitialized} from './src/change_detection/change_detection_util';
|
2015-04-23 20:19:29 -04:00
|
|
|
export {WrappedValue, Pipe} from './src/change_detection/pipes/pipe';
|
2015-04-30 21:09:51 -04:00
|
|
|
export {NullPipe, NullPipeFactory} from './src/change_detection/pipes/null_pipe';
|
2015-04-14 16:48:44 -04:00
|
|
|
export {
|
2015-05-01 17:05:19 -04:00
|
|
|
defaultPipes,
|
|
|
|
DynamicChangeDetection,
|
|
|
|
JitChangeDetection,
|
|
|
|
defaultPipeRegistry
|
2015-04-14 16:48:44 -04:00
|
|
|
} from './src/change_detection/change_detection';
|
2015-05-01 17:05:19 -04:00
|
|
|
|
|
|
|
// HACK: workaround for Traceur behavior.
|
|
|
|
// It expects all transpiled modules to contain this marker.
|
|
|
|
// TODO: remove this when we no longer use traceur
|
|
|
|
export var __esModule = true;
|