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

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

Issue 46593003: Add @proxy to annotations.dart - remove package:meta. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Merge to head Created 7 years, 1 month 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 | « pkg/custom_element/lib/custom_element.dart ('k') | pkg/logging/lib/logging.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) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, 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 library provides internationalization and localization. This includes 6 * This library provides internationalization and localization. This includes
7 * message formatting and replacement, date and number formatting and parsing, 7 * message formatting and replacement, date and number formatting and parsing,
8 * and utilities for working with Bidirectional text. 8 * and utilities for working with Bidirectional text.
9 * 9 *
10 * ## Installing ## 10 * ## Installing ##
(...skipping 15 matching lines...) Expand all
26 * 26 *
27 * There is also a simple example application that can be found in the 27 * There is also a simple example application that can be found in the
28 * `example/basic` directory. 28 * `example/basic` directory.
29 * 29 *
30 * [pub]: http://pub.dartlang.org 30 * [pub]: http://pub.dartlang.org
31 */ 31 */
32 library intl; 32 library intl;
33 33
34 import 'dart:collection'; 34 import 'dart:collection';
35 import 'dart:convert'; 35 import 'dart:convert';
36 import 'package:meta/meta.dart';
37 import 'src/intl_helpers.dart'; 36 import 'src/intl_helpers.dart';
38 import 'dart:math'; 37 import 'dart:math';
39 import 'date_symbols.dart'; 38 import 'date_symbols.dart';
40 import 'src/date_format_internal.dart'; 39 import 'src/date_format_internal.dart';
41 import "number_symbols.dart"; 40 import "number_symbols.dart";
42 import "number_symbols_data.dart"; 41 import "number_symbols_data.dart";
43 42
44 part 'date_format.dart'; 43 part 'date_format.dart';
45 part 'src/date_format_field.dart'; 44 part 'src/date_format_field.dart';
46 part 'src/date_format_helpers.dart'; 45 part 'src/date_format_helpers.dart';
(...skipping 316 matching lines...) Expand 10 before | Expand all | Expand 10 after
363 * unless for some reason this gets called inside a message that resets the 362 * unless for some reason this gets called inside a message that resets the
364 * locale. 363 * locale.
365 */ 364 */
366 static String getCurrentLocale() { 365 static String getCurrentLocale() {
367 if (defaultLocale == null) defaultLocale = systemLocale; 366 if (defaultLocale == null) defaultLocale = systemLocale;
368 return defaultLocale; 367 return defaultLocale;
369 } 368 }
370 369
371 toString() => "Intl($locale)"; 370 toString() => "Intl($locale)";
372 } 371 }
OLDNEW
« no previous file with comments | « pkg/custom_element/lib/custom_element.dart ('k') | pkg/logging/lib/logging.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698