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

Unified Diff: third_party/pkg/angular/perf/scope_perf.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
« no previous file with comments | « third_party/pkg/angular/perf/parser_perf.dart ('k') | third_party/pkg/angular/pubspec.yaml » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/pkg/angular/perf/scope_perf.dart
diff --git a/third_party/pkg/angular/perf/scope_perf.dart b/third_party/pkg/angular/perf/scope_perf.dart
index 888060d10adb6b37d8ad8b13a12c0edef94bc91b..4d592cb8cc21c9041df52ad243549f082a9022d5 100644
--- a/third_party/pkg/angular/perf/scope_perf.dart
+++ b/third_party/pkg/angular/perf/scope_perf.dart
@@ -2,14 +2,15 @@ library scope_perf;
import '_perf.dart';
import 'package:angular/core/module.dart';
-import 'package:angular/core/parser/parser_library.dart';
+import 'package:angular/core/parser/parser.dart';
import 'package:di/di.dart';
import 'package:di/dynamic_injector.dart';
main() {
var scope = new DynamicInjector(
modules: [new Module()
- ..type(Parser, implementedBy: DynamicParser)],
+ ..type(Parser, implementedBy: DynamicParser)
+ ..type(ParserBackend, implementedBy: DynamicParserBackend)],
allowImplicitInjection:true).get(Scope);
var scope2, scope3, scope4, scope5;
var fill = (scope) {
« no previous file with comments | « third_party/pkg/angular/perf/parser_perf.dart ('k') | third_party/pkg/angular/pubspec.yaml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698