| Index: third_party/pkg/angular/lib/core/module.dart
|
| ===================================================================
|
| --- third_party/pkg/angular/lib/core/module.dart (revision 33054)
|
| +++ third_party/pkg/angular/lib/core/module.dart (working copy)
|
| @@ -2,10 +2,11 @@
|
|
|
| import 'dart:async' as async;
|
| import 'dart:collection';
|
| +import 'dart:convert' show JSON;
|
| import 'dart:mirrors';
|
| -import 'package:intl/intl.dart';
|
|
|
| import 'package:di/di.dart';
|
| +import 'package:perf_api/perf_api.dart';
|
|
|
| import 'package:angular/core/parser/parser.dart';
|
| import 'package:angular/core/parser/lexer.dart';
|
| @@ -14,13 +15,6 @@
|
| import 'package:angular/core/service.dart';
|
| export 'package:angular/core/service.dart';
|
|
|
| -import 'package:angular/change_detection/watch_group.dart';
|
| -export 'package:angular/change_detection/watch_group.dart';
|
| -import 'package:angular/change_detection/change_detection.dart';
|
| -import 'package:angular/change_detection/dirty_checking_change_detector.dart';
|
| -import 'package:angular/core/parser/utils.dart';
|
| -import 'package:angular/core/parser/syntax.dart';
|
| -
|
| part "cache.dart";
|
| part "directive.dart";
|
| part "exception_handler.dart";
|
| @@ -36,16 +30,13 @@
|
| type(ScopeDigestTTL);
|
|
|
| type(MetadataExtractor);
|
| + type(FieldMetadataExtractor);
|
| type(Cache);
|
| + type(DirectiveMap);
|
| type(ExceptionHandler);
|
| type(FilterMap);
|
| type(Interpolate);
|
| - type(RootScope);
|
| - factory(Scope, (injector) => injector.get(RootScope));
|
| - value(ScopeStats, new ScopeStats());
|
| - value(GetterCache, new GetterCache({}));
|
| - value(Object, {}); // RootScope context
|
| - type(AstParser);
|
| + type(Scope);
|
| type(NgZone);
|
|
|
| type(Parser, implementedBy: DynamicParser);
|
|
|