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

Unified Diff: pkg/intl/lib/intl_helpers.dart

Issue 10917069: Async initialization for DateFormat (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 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 side-by-side diff with in-line comments
Download patch
Index: pkg/intl/lib/intl_helpers.dart
===================================================================
--- pkg/intl/lib/intl_helpers.dart (revision 0)
+++ pkg/intl/lib/intl_helpers.dart (revision 0)
@@ -0,0 +1,41 @@
+// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
+// for details. All rights reserved. Use of this source code is governed by a
+// BSD-style license that can be found in the LICENSE file.
+
+/**
+ * A library for general helper code associated with the intl library
+ * rather than confined to specific parts of it.
+ */
+
+#library("intl_helpers");
+
+/**
+ * This is used as a marker for a locale data map that hasn't been initialized,
+ * and will throw an exception on any usage.
+ */
+class UninitializedLocaleData {
+ final String message;
+ const UninitializedLocaleData(this.message);
+
+ operator [](String key) {
+ _throwException();
+ }
+ List getKeys() => _throwException();
+ bool containsKey(String key) => _throwException();
+
+ _throwException() {
+ throw new LocaleDataException("Locale data has not been initialized"
+ ", call $message.");
+ }
+}
+
+class LocaleDataException implements Exception {
+ final String message;
+ LocaleDataException(this.message);
+ toString() => "LocaleDataException: $message";
+}
+
+/// An abstract superclass for data readers to keep the type system happy.
Emily Fortuna 2012/09/04 20:14:42 Style nit: I'd say have consistent commenting styl
Alan Knight 2012/09/04 23:39:03 Done.
+abstract class LocaleDataReader {
+ abstract Future read(String locale);
+}

Powered by Google App Engine
This is Rietveld 408576698