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

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

Issue 256553002: Revert "Update all Angular libs (run update_all.sh)." (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 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_internal.dart
diff --git a/third_party/pkg/angular/lib/core/module_internal.dart b/third_party/pkg/angular/lib/core/module_internal.dart
deleted file mode 100644
index 13042e70f43d36cf6c8d637c0fcc373b7a523fb1..0000000000000000000000000000000000000000
--- a/third_party/pkg/angular/lib/core/module_internal.dart
+++ /dev/null
@@ -1,56 +0,0 @@
-library angular.core_internal;
-
-import 'dart:async' as async;
-import 'dart:collection';
-import 'dart:math';
-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/annotation_src.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';
-import 'package:angular/core/registry.dart';
-
-part "cache.dart";
-part "exception_handler.dart";
-part 'formatter.dart';
-part "interpolate.dart";
-part "scope.dart";
-part "zone.dart";
-
-
-class CoreModule extends Module {
- CoreModule() {
- type(ScopeDigestTTL);
-
- type(MetadataExtractor);
- type(Cache);
- type(ExceptionHandler);
- type(FormatterMap);
- type(Interpolate);
- type(RootScope);
- factory(Scope, (injector) => injector.get(RootScope));
- factory(ClosureMap, (_) => throw "Must provide dynamic/static ClosureMap.");
- type(ScopeStats);
- type(ScopeStatsEmitter);
- factory(ScopeStatsConfig, (i) => new ScopeStatsConfig());
- value(Object, {}); // RootScope context
- type(VmTurnZone);
-
- type(Parser, implementedBy: DynamicParser);
- type(ParserBackend, implementedBy: DynamicParserBackend);
- type(DynamicParser);
- type(DynamicParserBackend);
- type(Lexer);
- }
-}
« no previous file with comments | « third_party/pkg/angular/lib/core/module.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