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

Unified Diff: third_party/pkg/angular/lib/formatter/module.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.dart
diff --git a/third_party/pkg/angular/lib/formatter/module.dart b/third_party/pkg/angular/lib/formatter/module.dart
new file mode 100644
index 0000000000000000000000000000000000000000..ea84d0231717fefd6384a93fec7e1133fbb01ae9
--- /dev/null
+++ b/third_party/pkg/angular/lib/formatter/module.dart
@@ -0,0 +1,36 @@
+/**
+ *
+ * Formatters for [angular.dart](#angular/angular), a web framework for Dart. A formatter is a
+ * pure function that performs a transformation on input data from an expression.
+ *
+ * This library is included as part of [angular.dart](#angular/angular). It provides all of
+ * the core formatters available in Angular. You can extend Angular by writing your own formatters
+ * and providing them as part of a custom library.
+ *
+ * Formatters are typically used within `{{ }}` to
+ * convert data to human-readable form. They may also be used inside repeaters to transform arrays.
+ *
+ * For example:
+ *
+ * {{ _some_expression_ | json }}
+ *
+ * or, in a repeater:
+ *
+ * <div ng-repeat="item in items | filter:_predicate_">
+ *
+ *
+ */
+library angular.formatter;
+
+export "package:angular/formatter/module_internal.dart" show
+ Currency,
+ Date,
+ Filter,
+ Json,
+ LimitTo,
+ Lowercase,
+ Arrayify,
+ Number,
+ OrderBy,
+ Uppercase,
+ Stringify;
« no previous file with comments | « third_party/pkg/angular/lib/formatter/lowercase.dart ('k') | third_party/pkg/angular/lib/formatter/module_internal.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698