| Index: third_party/pkg/angular/lib/core_dom/module.dart
|
| ===================================================================
|
| --- third_party/pkg/angular/lib/core_dom/module.dart (revision 33054)
|
| +++ third_party/pkg/angular/lib/core_dom/module.dart (working copy)
|
| @@ -3,13 +3,13 @@
|
| import 'dart:async' as async;
|
| import 'dart:convert' show JSON;
|
| import 'dart:html' as dom;
|
| -import 'dart:mirrors';
|
|
|
| import 'package:di/di.dart';
|
| import 'package:perf_api/perf_api.dart';
|
|
|
| import 'package:angular/core/module.dart';
|
| import 'package:angular/core/parser/parser.dart';
|
| +import 'package:angular/utils.dart';
|
|
|
| part 'block.dart';
|
| part 'block_factory.dart';
|
| @@ -17,7 +17,6 @@
|
| part 'common.dart';
|
| part 'compiler.dart';
|
| part 'directive.dart';
|
| -part 'directive_map.dart';
|
| part 'http.dart';
|
| part 'ng_mustache.dart';
|
| part 'node_cursor.dart';
|
| @@ -29,6 +28,7 @@
|
| NgCoreDomModule() {
|
| value(dom.Window, dom.window);
|
|
|
| + value(TextChangeListener, null);
|
| factory(TemplateCache, (_) => new TemplateCache(capacity: 0));
|
| type(dom.NodeTreeSanitizer, implementedBy: NullTreeSanitizer);
|
|
|
| @@ -46,8 +46,6 @@
|
| type(BrowserCookies);
|
| type(Cookies);
|
| type(LocationWrapper);
|
| - type(FieldMetadataExtractor);
|
| - type(DirectiveMap);
|
| }
|
| }
|
|
|
|
|