| OLD | NEW |
| 1 /** | |
| 2 * Core functionality for [angular.dart](#angular/angular), a web framework for
Dart. | |
| 3 * | |
| 4 * This library is included as part of [angular.dart](#angular/angular). The ang
ular.core library | |
| 5 * provides all of the fundamental Classes and Type Definitions that provide the
basis for | |
| 6 * formatters (in [angular .formatter](#angular-formatter)) and directives (in [
angular.directive] | |
| 7 * (#angular-directive)). | |
| 8 * | |
| 9 */ | |
| 10 library angular.core; | 1 library angular.core; |
| 11 | 2 |
| 12 export "package:angular/change_detection/watch_group.dart" show | 3 import 'dart:async' as async; |
| 13 ReactionFn; | 4 import 'dart:collection'; |
| 5 import 'dart:mirrors'; |
| 6 import 'package:intl/intl.dart'; |
| 14 | 7 |
| 15 export "package:angular/core/parser/parser.dart" show | 8 import 'package:di/di.dart'; |
| 16 Parser; | |
| 17 | 9 |
| 18 export "package:angular/core/parser/dynamic_parser.dart" show | 10 import 'package:angular/core/parser/parser.dart'; |
| 19 ClosureMap; | 11 import 'package:angular/core/parser/lexer.dart'; |
| 12 import 'package:angular/utils.dart'; |
| 20 | 13 |
| 21 export "package:angular/change_detection/change_detection.dart" show | 14 import 'package:angular/core/service.dart'; |
| 22 AvgStopwatch, | 15 export 'package:angular/core/service.dart'; |
| 23 FieldGetterFactory; | |
| 24 | 16 |
| 25 export "package:angular/core_dom/module_internal.dart" show | 17 import 'package:angular/change_detection/watch_group.dart'; |
| 26 Animation, | 18 export 'package:angular/change_detection/watch_group.dart'; |
| 27 AnimationResult, | 19 import 'package:angular/change_detection/change_detection.dart'; |
| 28 BrowserCookies, | 20 import 'package:angular/change_detection/dirty_checking_change_detector.dart'; |
| 29 Cache, | 21 import 'package:angular/core/parser/utils.dart'; |
| 30 Compiler, | 22 import 'package:angular/core/parser/syntax.dart'; |
| 31 Cookies, | |
| 32 BoundViewFactory, | |
| 33 DirectiveMap, | |
| 34 ElementProbe, | |
| 35 EventHandler, | |
| 36 Http, | |
| 37 HttpBackend, | |
| 38 HttpDefaultHeaders, | |
| 39 HttpDefaults, | |
| 40 HttpInterceptor, | |
| 41 HttpInterceptors, | |
| 42 HttpResponse, | |
| 43 HttpResponseConfig, | |
| 44 LocationWrapper, | |
| 45 NgAnimate, | |
| 46 NgElement, | |
| 47 NoOpAnimation, | |
| 48 NullTreeSanitizer, | |
| 49 Animate, | |
| 50 RequestErrorInterceptor, | |
| 51 RequestInterceptor, | |
| 52 Response, | |
| 53 ResponseError, | |
| 54 UrlRewriter, | |
| 55 TemplateCache, | |
| 56 View, | |
| 57 ViewCache, | |
| 58 ViewFactory, | |
| 59 ViewPort; | |
| 60 | 23 |
| 61 export "package:angular/core/module_internal.dart" show | 24 part "cache.dart"; |
| 62 CacheStats, | 25 part "directive.dart"; |
| 63 ExceptionHandler, | 26 part "exception_handler.dart"; |
| 64 FilterMap, | 27 part "filter.dart"; |
| 65 Interpolate, | 28 part "interpolate.dart"; |
| 66 VmTurnZone, | 29 part "registry.dart"; |
| 67 PrototypeMap, | 30 part "scope.dart"; |
| 68 RootScope, | 31 part "zone.dart"; |
| 69 Scope, | 32 |
| 70 ScopeDigestTTL, | 33 |
| 71 ScopeEvent, | 34 class NgCoreModule extends Module { |
| 72 ScopeStats, | 35 NgCoreModule() { |
| 73 ScopeStatsConfig, | 36 type(ScopeDigestTTL); |
| 74 ScopeStatsEmitter, | 37 |
| 75 Watch; | 38 type(MetadataExtractor); |
| 39 type(Cache); |
| 40 type(ExceptionHandler); |
| 41 type(FilterMap); |
| 42 type(Interpolate); |
| 43 type(RootScope); |
| 44 factory(Scope, (injector) => injector.get(RootScope)); |
| 45 value(ScopeStats, new ScopeStats()); |
| 46 value(GetterCache, new GetterCache({})); |
| 47 value(Object, {}); // RootScope context |
| 48 type(AstParser); |
| 49 type(NgZone); |
| 50 |
| 51 type(Parser, implementedBy: DynamicParser); |
| 52 type(ParserBackend, implementedBy: DynamicParserBackend); |
| 53 type(DynamicParser); |
| 54 type(DynamicParserBackend); |
| 55 type(Lexer); |
| 56 type(ClosureMap); |
| 57 } |
| 58 } |
| OLD | NEW |