|
1 | | -export {AST} from './src/parser/ast'; |
2 | | -export {Lexer} from './src/parser/lexer'; |
3 | | -export {Parser} from './src/parser/parser'; |
4 | | -export {ContextWithVariableBindings} from './src/parser/context_with_variable_bindings'; |
| 1 | +export {AST} from './src/change_detection/parser/ast'; |
| 2 | +export {Lexer} from './src/change_detection/parser/lexer'; |
| 3 | +export {Parser} from './src/change_detection/parser/parser'; |
| 4 | +export {ContextWithVariableBindings} |
| 5 | + from './src/change_detection/parser/context_with_variable_bindings'; |
5 | 6 |
|
6 | | -export {ExpressionChangedAfterItHasBeenChecked, ChangeDetectionError} from './src/exceptions'; |
| 7 | +export {ExpressionChangedAfterItHasBeenChecked, ChangeDetectionError} |
| 8 | + from './src/change_detection/exceptions'; |
7 | 9 | export {ChangeRecord, ChangeDispatcher, ChangeDetector, |
8 | | - CHECK_ONCE, CHECK_ALWAYS, DETACHED, CHECKED} from './src/interfaces'; |
9 | | -export {ProtoChangeDetector, DynamicProtoChangeDetector, JitProtoChangeDetector} from './src/proto_change_detector'; |
10 | | -export {DynamicChangeDetector} from './src/dynamic_change_detector'; |
| 10 | + CHECK_ONCE, CHECK_ALWAYS, DETACHED, CHECKED} from './src/change_detection/interfaces'; |
| 11 | +export {ProtoChangeDetector, DynamicProtoChangeDetector, JitProtoChangeDetector} |
| 12 | + from './src/change_detection/proto_change_detector'; |
| 13 | +export {DynamicChangeDetector} |
| 14 | + from './src/change_detection/dynamic_change_detector'; |
11 | 15 |
|
12 | | -import {ProtoChangeDetector, DynamicProtoChangeDetector, JitProtoChangeDetector} from './src/proto_change_detector'; |
| 16 | +import {ProtoChangeDetector, DynamicProtoChangeDetector, JitProtoChangeDetector} |
| 17 | + from './src/change_detection/proto_change_detector'; |
13 | 18 |
|
14 | 19 | export class ChangeDetection { |
15 | 20 | createProtoChangeDetector(name:string){} |
|
0 commit comments