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

Unified Diff: pkg/intl/number_format.dart

Issue 10916128: Clean up Intl for language changes (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 3 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
« no previous file with comments | « pkg/intl/lib/date_format_field.dart ('k') | pkg/intl/test/date_time_format_test_core.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/intl/number_format.dart
===================================================================
--- pkg/intl/number_format.dart (revision 11902)
+++ pkg/intl/number_format.dart (working copy)
@@ -62,13 +62,13 @@
/**
* Return the locale code in which we operate, e.g. 'en_US' or 'pt'.
*/
- String get locale() => _locale;
+ String get locale => _locale;
/**
* Return the symbols which are used in our locale. Cache them to avoid
* repeated lookup.
*/
- NumberSymbols get symbols() {
+ NumberSymbols get symbols {
return _symbols;
}
@@ -249,10 +249,10 @@
}
/** Returns the code point for the character '0'. */
- int get _zero() => '0'.charCodes()[0];
+ int get _zero => '0'.charCodes()[0];
/** Returns the code point for the locale's zero digit. */
- int get _localeZero() => symbols.ZERO_DIGIT.charCodeAt(0);
+ int get _localeZero => symbols.ZERO_DIGIT.charCodeAt(0);
/**
* Returns the prefix for [x] based on whether it's positive or negative.
« no previous file with comments | « pkg/intl/lib/date_format_field.dart ('k') | pkg/intl/test/date_time_format_test_core.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698