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

Unified Diff: third_party/pkg/angular/lib/formatter/uppercase.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/uppercase.dart
diff --git a/third_party/pkg/angular/lib/filter/uppercase.dart b/third_party/pkg/angular/lib/formatter/uppercase.dart
similarity index 62%
rename from third_party/pkg/angular/lib/filter/uppercase.dart
rename to third_party/pkg/angular/lib/formatter/uppercase.dart
index 6627fce31cffe0b2683a679e2a39b9e9013bc3fb..722170d2fb80973283253770dba0508df452712c 100644
--- a/third_party/pkg/angular/lib/filter/uppercase.dart
+++ b/third_party/pkg/angular/lib/formatter/uppercase.dart
@@ -1,4 +1,4 @@
-part of angular.filter;
+part of angular.formatter_internal;
/**
* Converts string to uppercase.
@@ -7,7 +7,7 @@ part of angular.filter;
*
* {{ uppercase_expression | uppercase }}
*/
-@NgFilter(name:'uppercase')
-class UppercaseFilter {
+@Formatter(name:'uppercase')
+class Uppercase implements Function {
call(String text) => text == null ? text : text.toUpperCase();
}
« no previous file with comments | « third_party/pkg/angular/lib/formatter/stringify.dart ('k') | third_party/pkg/angular/lib/introspection.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698