Chromium Code Reviews

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: Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | | Annotate | Revision Log
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...)
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

Powered by Google App Engine