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