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

Side by Side Diff: sdk/lib/_collection_dev/collection_dev.dart

Issue 27523002: Add "deprecated" to the standard library. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 2 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) 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 library dart._collection.dev; 5 library dart._collection.dev;
6 6
7 import 'dart:collection'; 7 import 'dart:collection';
8 8
9 import 'dart:core' hide Symbol; 9 import 'dart:core' hide Symbol;
10 import 'dart:core' as core; 10 import 'dart:core' as core;
11 import 'dart:math' show Random; 11 import 'dart:math' show Random;
12 import 'dart:collection' show HashSet; 12 import 'dart:collection' show HashSet;
13 13
14 // This is a hack to make @deprecated work in dart:io. Don't remove or use this,
15 // unless coordinated with either me or the core library team. Thanks!
16 // When complete, no part of the standard libraries should be deprecated, and
17 // this export can be removed.
18 // TODO(ajohnsen): Remove at the 11th of August 2013.
19 // TODO(ajohnsen): Remove hide in:
20 // tools/dom/templates/html/dart2js/html_dart2js.darttemplate
21 // tools/dom/templates/html/dart2js/svg_dart2js.darttemplate
22 // tools/dom/templates/html/dart2js/web_audio_dart2js.darttemplate
23 // tools/dom/templates/html/dart2js/web_gl_dart2js.darttemplate
24 // tools/dom/templates/html/dart2js/web_sql_dart2js.darttemplate
25 // tools/dom/templates/html/dartium/html_dartium.darttemplate
26 // tools/dom/templates/html/dartium/svg_dartium.darttemplate
27 // tools/dom/templates/html/dartium/web_audio_dartium.darttemplate
28 // tools/dom/templates/html/dartium/web_gl_dartium.darttemplate
29 // tools/dom/templates/html/dartium/web_sql_dartium.darttemplate
30 // sdk/lib/core/regexp.dart
31 // TODO(floitsch): also used in dart:async until end of September for
32 // deprecation of runZonedExperimental.
33 // TODO(floitsch): also used in dart:json and dart:utf until middle of October
34 // for deprecation of json and utf libraries.
35 // TODO(floitsch): and dart:async until middle of October for deprecation of
36 // getAttachedStackTrace.
37 // TODO(floitsch): and dart:async until end of October for deprecation of
38 // runAsync.
39 export 'dart:annotation' show deprecated;
40
14 part 'arrays.dart'; 41 part 'arrays.dart';
15 part 'iterable.dart'; 42 part 'iterable.dart';
16 part 'list.dart'; 43 part 'list.dart';
17 part 'print.dart'; 44 part 'print.dart';
18 part 'sort.dart'; 45 part 'sort.dart';
19 part 'symbol.dart'; 46 part 'symbol.dart';
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698