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

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

Issue 23598003: Disable Intl deferred loading until it works in dart2js (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | 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 141 matching lines...) Expand 10 before | Expand all | Expand 10 after
152 /** 152 /**
153 * This section generates the messages_all.dart file based on the list of 153 * This section generates the messages_all.dart file based on the list of
154 * [allLocales]. 154 * [allLocales].
155 */ 155 */
156 String generateMainImportFile() { 156 String generateMainImportFile() {
157 var output = new StringBuffer(); 157 var output = new StringBuffer();
158 output.write(mainPrologue); 158 output.write(mainPrologue);
159 for (var locale in allLocales) { 159 for (var locale in allLocales) {
160 var baseFile = '${generatedFilePrefix}messages_$locale.dart'; 160 var baseFile = '${generatedFilePrefix}messages_$locale.dart';
161 var file = importForGeneratedFile(baseFile); 161 var file = importForGeneratedFile(baseFile);
162 output.write("@${_deferredName(locale)}\n"); 162 // TODO(alanknight): Restore this once deferred loading works in dartj2s.
163 // Issue 12824
164 // output.write("@${_deferredName(locale)}\n");
163 output.write("import '$file' as ${_libraryName(locale)};\n"); 165 output.write("import '$file' as ${_libraryName(locale)};\n");
164 } 166 }
165 output.write("\n"); 167 output.write("\n");
166 for (var locale in allLocales) { 168 for (var locale in allLocales) {
167 output.write("const ${_deferredName(locale)} = const DeferredLibrary"); 169 output.write("const ${_deferredName(locale)} = const DeferredLibrary");
168 output.write("('${_libraryName(locale)}');\n"); 170 output.write("('${_libraryName(locale)}');\n");
169 } 171 }
170 output.write("\nconst deferredLibraries = const {\n"); 172 output.write("\nconst deferredLibraries = const {\n");
171 for (var locale in allLocales) { 173 for (var locale in allLocales) {
172 output.write(" '$locale' : ${_deferredName(locale)},\n"); 174 output.write(" '$locale' : ${_deferredName(locale)},\n");
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
208 */ 210 */
209 const closing = """ 211 const closing = """
210 default: return null; 212 default: return null;
211 } 213 }
212 } 214 }
213 215
214 /** User programs should call this before using [localeName] for messages.*/ 216 /** User programs should call this before using [localeName] for messages.*/
215 Future initializeMessages(String localeName) { 217 Future initializeMessages(String localeName) {
216 initializeInternalMessageLookup(() => new CompositeMessageLookup()); 218 initializeInternalMessageLookup(() => new CompositeMessageLookup());
217 messageLookup.addLocale(localeName, _findGeneratedMessagesFor); 219 messageLookup.addLocale(localeName, _findGeneratedMessagesFor);
218 var lib = deferredLibraries[localeName]; 220 var lib = deferredLibraries[localeName];
219 return lib == null ? new Future.value(false) : lib.load(); 221 // TODO(alanknight): Restore once Issue 12824 is fixed.
222 // return lib == null ? new Future.value(false) : lib.load();
223 return new Future.value(true);
220 } 224 }
221 225
222 MessageLookupByLibrary _findGeneratedMessagesFor(locale) { 226 MessageLookupByLibrary _findGeneratedMessagesFor(locale) {
223 var actualLocale = Intl.verifiedLocale(locale, (x) => _findExact(x) != null); 227 var actualLocale = Intl.verifiedLocale(locale, (x) => _findExact(x) != null);
224 if (actualLocale == null) return null; 228 if (actualLocale == null) return null;
225 return _findExact(actualLocale); 229 return _findExact(actualLocale);
226 } 230 }
227 """; 231 """;
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698