refactor(change_detection): add change_detection library file

This commit is contained in:
vsavkin
2014-12-29 09:51:52 -08:00
parent f06433fb58
commit 739f624cc8
33 changed files with 49 additions and 67 deletions

View File

@ -0,0 +1,7 @@
export {ChangeDetectionError, ChangeDetector} from './change_detector';
export {AST, ASTWithSource} from './parser/ast';
export {Lexer} from './parser/lexer';
export {Parser} from './parser/parser';
export {ProtoRecordRange, RecordRange, ChangeDispatcher} from './record_range';
export {ProtoRecord, Record} from './record';
export {ContextWithVariableBindings} from './parser/context_with_variable_bindings';