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

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

Issue 179783004: Verify the default locale in case we're given an invalid one and need to fall back. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 9 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
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 208 matching lines...) Expand 10 before | Expand all | Expand 10 after
219 Future initializeMessages(String localeName) { 219 Future initializeMessages(String localeName) {
220 initializeInternalMessageLookup(() => new CompositeMessageLookup()); 220 initializeInternalMessageLookup(() => new CompositeMessageLookup());
221 messageLookup.addLocale(localeName, _findGeneratedMessagesFor); 221 messageLookup.addLocale(localeName, _findGeneratedMessagesFor);
222 // TODO(alanknight): Restore once Issue 12824 is fixed. 222 // TODO(alanknight): Restore once Issue 12824 is fixed.
223 // var lib = deferredLibraries[localeName]; 223 // var lib = deferredLibraries[localeName];
224 // return lib == null ? new Future.value(false) : lib.load(); 224 // return lib == null ? new Future.value(false) : lib.load();
225 return new Future.value(true); 225 return new Future.value(true);
226 } 226 }
227 227
228 MessageLookupByLibrary _findGeneratedMessagesFor(locale) { 228 MessageLookupByLibrary _findGeneratedMessagesFor(locale) {
229 var actualLocale = Intl.verifiedLocale(locale, (x) => _findExact(x) != null); 229 var actualLocale = Intl.verifiedLocale(locale, (x) => _findExact(x) != null,
230 onFailure: (_) => null);
230 if (actualLocale == null) return null; 231 if (actualLocale == null) return null;
231 return _findExact(actualLocale); 232 return _findExact(actualLocale);
232 } 233 }
233 """; 234 """;
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698