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

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

Issue 257423008: 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/formatter/module_internal.dart
diff --git a/third_party/pkg/angular/lib/formatter/module_internal.dart b/third_party/pkg/angular/lib/formatter/module_internal.dart
new file mode 100644
index 0000000000000000000000000000000000000000..f11bc95870306e0105124831a3945542e13b2398
--- /dev/null
+++ b/third_party/pkg/angular/lib/formatter/module_internal.dart
@@ -0,0 +1,36 @@
+library angular.formatter_internal;
+
+import 'dart:convert' show JSON;
+import 'package:intl/intl.dart';
+import 'package:di/di.dart';
+import 'package:angular/core/annotation.dart';
+import 'package:angular/core/module_internal.dart';
+import 'package:angular/core/parser/parser.dart';
+
+part 'currency.dart';
+part 'date.dart';
+part 'filter.dart';
+part 'json.dart';
+part 'limit_to.dart';
+part 'lowercase.dart';
+part 'arrayify.dart';
+part 'number.dart';
+part 'order_by.dart';
+part 'uppercase.dart';
+part 'stringify.dart';
+
+class FormatterModule extends Module {
+ FormatterModule() {
+ type(Arrayify);
+ type(Currency);
+ type(Date);
+ type(Filter);
+ type(Json);
+ type(LimitTo);
+ type(Lowercase);
+ type(Number);
+ type(OrderBy);
+ type(Uppercase);
+ type(Stringify);
+ }
+}
« no previous file with comments | « third_party/pkg/angular/lib/formatter/module.dart ('k') | third_party/pkg/angular/lib/formatter/number.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698