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

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

Issue 22986014: Add a null check to avoid trying to load libraries that don't exist. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 4 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 | « no previous file | pkg/intl/test/message_extraction/sample_with_messages.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 197 matching lines...) Expand 10 before | Expand all | Expand 10 after
208 */ 208 */
209 const closing = """ 209 const closing = """
210 default: return null; 210 default: return null;
211 } 211 }
212 } 212 }
213 213
214 /** User programs should call this before using [localeName] for messages.*/ 214 /** User programs should call this before using [localeName] for messages.*/
215 Future initializeMessages(String localeName) { 215 Future initializeMessages(String localeName) {
216 initializeInternalMessageLookup(() => new CompositeMessageLookup()); 216 initializeInternalMessageLookup(() => new CompositeMessageLookup());
217 messageLookup.addLocale(localeName, _findGeneratedMessagesFor); 217 messageLookup.addLocale(localeName, _findGeneratedMessagesFor);
218 return deferredLibraries[localeName].load(); 218 var lib = deferredLibraries[localeName];
219 return lib == null ? new Future.value(false) : lib.load();
219 } 220 }
220 221
221 MessageLookupByLibrary _findGeneratedMessagesFor(locale) { 222 MessageLookupByLibrary _findGeneratedMessagesFor(locale) {
222 var actualLocale = Intl.verifiedLocale(locale, (x) => _findExact(x) != null); 223 var actualLocale = Intl.verifiedLocale(locale, (x) => _findExact(x) != null);
223 if (actualLocale == null) return null; 224 if (actualLocale == null) return null;
224 return _findExact(actualLocale); 225 return _findExact(actualLocale);
225 } 226 }
226 """; 227 """;
OLDNEW
« no previous file with comments | « no previous file | pkg/intl/test/message_extraction/sample_with_messages.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698