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

Side by Side Diff: pkg/intl/lib/generate_localized.dart

Issue 14070010: Refactor Future constructors. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Added co19 issue number. Created 7 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « pkg/intl/lib/date_symbol_data_local.dart ('k') | pkg/intl/lib/intl_browser.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 /** 5 /**
6 * This provides utilities for generating localized versions of 6 * This provides utilities for generating localized versions of
7 * messages. It does not stand alone, but expects to be given 7 * messages. It does not stand alone, but expects to be given
8 * TranslatedMessage objects and generate code for a particular locale 8 * TranslatedMessage objects and generate code for a particular locale
9 * based on them. 9 * based on them.
10 * 10 *
(...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after
176 */ 176 */
177 const closing = """ 177 const closing = """
178 default: return null; 178 default: return null;
179 } 179 }
180 } 180 }
181 181
182 /** User programs should call this before using [localeName] for messages.*/ 182 /** User programs should call this before using [localeName] for messages.*/
183 initializeMessages(localeName) { 183 initializeMessages(localeName) {
184 initializeInternalMessageLookup(() => new CompositeMessageLookup()); 184 initializeInternalMessageLookup(() => new CompositeMessageLookup());
185 messageLookup.addLocale(localeName, _findGeneratedMessagesFor); 185 messageLookup.addLocale(localeName, _findGeneratedMessagesFor);
186 return new Future.immediate(null); 186 return new Future.value();
187 } 187 }
188 188
189 MessageLookupByLibrary _findGeneratedMessagesFor(locale) { 189 MessageLookupByLibrary _findGeneratedMessagesFor(locale) {
190 var actualLocale = Intl.verifiedLocale(locale, (x) => _findExact(x) != null); 190 var actualLocale = Intl.verifiedLocale(locale, (x) => _findExact(x) != null);
191 if (actualLocale == null) return null; 191 if (actualLocale == null) return null;
192 return _findExact(actualLocale); 192 return _findExact(actualLocale);
193 } 193 }
194 """; 194 """;
OLDNEW
« no previous file with comments | « pkg/intl/lib/date_symbol_data_local.dart ('k') | pkg/intl/lib/intl_browser.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698