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

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

Issue 1058283006: Update pubspecs and dependencies to get pkgbuild tests working. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 8 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
deleted file mode 100644
index 4558a3d5f3cce23088e10abd67c73599a8e1d858..0000000000000000000000000000000000000000
--- a/third_party/pkg/angular/lib/core/module.dart
+++ /dev/null
@@ -1,58 +0,0 @@
-library angular.core;
-
-import 'dart:async' as async;
-import 'dart:collection';
-import 'dart:mirrors';
-import 'package:intl/intl.dart';
-
-import 'package:di/di.dart';
-
-import 'package:angular/core/parser/parser.dart';
-import 'package:angular/core/parser/lexer.dart';
-import 'package:angular/utils.dart';
-
-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";
-part "filter.dart";
-part "interpolate.dart";
-part "registry.dart";
-part "scope.dart";
-part "zone.dart";
-
-
-class NgCoreModule extends Module {
- NgCoreModule() {
- type(ScopeDigestTTL);
-
- type(MetadataExtractor);
- type(Cache);
- 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(NgZone);
-
- type(Parser, implementedBy: DynamicParser);
- type(ParserBackend, implementedBy: DynamicParserBackend);
- type(DynamicParser);
- type(DynamicParserBackend);
- type(Lexer);
- type(ClosureMap);
- }
-}
« no previous file with comments | « third_party/pkg/angular/lib/core/interpolate.dart ('k') | third_party/pkg/angular/lib/core/parser/characters.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698