| OLD | NEW |
| 1 library angular.core; | 1 library angular.core; |
| 2 | 2 |
| 3 import 'dart:async' as async; | 3 import 'dart:async' as async; |
| 4 import 'dart:collection'; | 4 import 'dart:collection'; |
| 5 import 'dart:convert' show JSON; | 5 import 'dart:convert' show JSON; |
| 6 import 'dart:mirrors'; | 6 import 'dart:mirrors'; |
| 7 | 7 |
| 8 import 'package:di/di.dart'; | 8 import 'package:di/di.dart'; |
| 9 import 'package:perf_api/perf_api.dart'; | 9 import 'package:perf_api/perf_api.dart'; |
| 10 | 10 |
| 11 import 'package:angular/core/parser/parser_library.dart'; | 11 import 'package:angular/core/parser/parser.dart'; |
| 12 import 'package:angular/core/parser/lexer.dart'; |
| 12 import 'package:angular/utils.dart'; | 13 import 'package:angular/utils.dart'; |
| 13 | 14 |
| 14 import 'service.dart'; | 15 import 'package:angular/core/service.dart'; |
| 15 export 'service.dart'; | 16 export 'package:angular/core/service.dart'; |
| 16 | 17 |
| 17 part "cache.dart"; | 18 part "cache.dart"; |
| 18 part "directive.dart"; | 19 part "directive.dart"; |
| 19 part "exception_handler.dart"; | 20 part "exception_handler.dart"; |
| 20 part "filter.dart"; | 21 part "filter.dart"; |
| 21 part "interpolate.dart"; | 22 part "interpolate.dart"; |
| 22 part "registry.dart"; | 23 part "registry.dart"; |
| 23 part "scope.dart"; | 24 part "scope.dart"; |
| 24 part "zone.dart"; | 25 part "zone.dart"; |
| 25 | 26 |
| 26 | 27 |
| 27 class NgCoreModule extends Module { | 28 class NgCoreModule extends Module { |
| 28 NgCoreModule() { | 29 NgCoreModule() { |
| 29 type(ScopeDigestTTL); | 30 type(ScopeDigestTTL); |
| 30 | 31 |
| 31 type(MetadataExtractor); | 32 type(MetadataExtractor); |
| 32 type(FieldMetadataExtractor); | 33 type(FieldMetadataExtractor); |
| 33 type(Cache); | 34 type(Cache); |
| 34 type(DirectiveMap); | 35 type(DirectiveMap); |
| 35 type(ExceptionHandler); | 36 type(ExceptionHandler); |
| 36 type(FilterMap); | 37 type(FilterMap); |
| 37 type(Interpolate); | 38 type(Interpolate); |
| 38 type(Scope); | 39 type(Scope); |
| 39 type(NgZone); | 40 type(NgZone); |
| 40 | 41 |
| 41 type(Parser, implementedBy: DynamicParser); | 42 type(Parser, implementedBy: DynamicParser); |
| 43 type(ParserBackend, implementedBy: DynamicParserBackend); |
| 42 type(DynamicParser); | 44 type(DynamicParser); |
| 45 type(DynamicParserBackend); |
| 43 type(Lexer); | 46 type(Lexer); |
| 44 type(ParserBackend); | 47 type(ClosureMap); |
| 45 type(GetterSetter); | |
| 46 } | 48 } |
| 47 } | 49 } |
| OLD | NEW |