Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(956)

Unified Diff: third_party/pkg/angular/lib/core/module.dart

Issue 148453003: Updating Angular version (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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);
}
}
« no previous file with comments | « third_party/pkg/angular/lib/core/interpolate.dart ('k') | third_party/pkg/angular/lib/core/parser/backend.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698