| Index: third_party/pkg/angular/lib/core/module.dart
|
| diff --git a/third_party/pkg/angular/lib/core/module.dart b/third_party/pkg/angular/lib/core/module.dart
|
| index 4f69bd3c6a43741dc1d3f17beb66303d1ef2b0b0..ff989271e73b429ea2c9cba2c1d162914db7f535 100644
|
| --- a/third_party/pkg/angular/lib/core/module.dart
|
| +++ b/third_party/pkg/angular/lib/core/module.dart
|
| @@ -8,11 +8,12 @@ import 'dart:mirrors';
|
| import 'package:di/di.dart';
|
| import 'package:perf_api/perf_api.dart';
|
|
|
| -import 'package:angular/core/parser/parser_library.dart';
|
| +import 'package:angular/core/parser/parser.dart';
|
| +import 'package:angular/core/parser/lexer.dart';
|
| import 'package:angular/utils.dart';
|
|
|
| -import 'service.dart';
|
| -export 'service.dart';
|
| +import 'package:angular/core/service.dart';
|
| +export 'package:angular/core/service.dart';
|
|
|
| part "cache.dart";
|
| part "directive.dart";
|
| @@ -39,9 +40,10 @@ class NgCoreModule extends Module {
|
| type(NgZone);
|
|
|
| type(Parser, implementedBy: DynamicParser);
|
| + type(ParserBackend, implementedBy: DynamicParserBackend);
|
| type(DynamicParser);
|
| + type(DynamicParserBackend);
|
| type(Lexer);
|
| - type(ParserBackend);
|
| - type(GetterSetter);
|
| + type(ClosureMap);
|
| }
|
| }
|
|
|