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

Side by Side Diff: sdk/lib/core/core.dart

Issue 27523002: Add "deprecated" to the standard library. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Updated toString message for Deprecated. 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
« no previous file with comments | « sdk/lib/core/annotations.dart ('k') | sdk/lib/core/corelib_sources.gypi » ('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 * 6 *
7 * Built-in types, collections, 7 * Built-in types, collections,
8 * and other core functionality for every Dart program. 8 * and other core functionality for every Dart program.
9 * 9 *
10 * This library is automatically imported. 10 * This library is automatically imported.
(...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after
151 * provides technical details. 151 * provides technical details.
152 */ 152 */
153 library dart.core; 153 library dart.core;
154 154
155 import "dart:collection"; 155 import "dart:collection";
156 import "dart:_collection-dev" hide Symbol; 156 import "dart:_collection-dev" hide Symbol;
157 import "dart:_collection-dev" as _collection_dev; 157 import "dart:_collection-dev" as _collection_dev;
158 import "dart:convert" show UTF8, Encoding; 158 import "dart:convert" show UTF8, Encoding;
159 import "dart:math" show Random; // Used by List.shuffle. 159 import "dart:math" show Random; // Used by List.shuffle.
160 160
161 part "annotations.dart";
161 part "bool.dart"; 162 part "bool.dart";
162 part "comparable.dart"; 163 part "comparable.dart";
163 part "date_time.dart"; 164 part "date_time.dart";
164 part "double.dart"; 165 part "double.dart";
165 part "duration.dart"; 166 part "duration.dart";
166 part "errors.dart"; 167 part "errors.dart";
167 part "exceptions.dart"; 168 part "exceptions.dart";
168 part "expando.dart"; 169 part "expando.dart";
169 part "function.dart"; 170 part "function.dart";
170 part "identical.dart"; 171 part "identical.dart";
(...skipping 11 matching lines...) Expand all
182 part "regexp.dart"; 183 part "regexp.dart";
183 part "set.dart"; 184 part "set.dart";
184 part "stacktrace.dart"; 185 part "stacktrace.dart";
185 part "stopwatch.dart"; 186 part "stopwatch.dart";
186 part "string.dart"; 187 part "string.dart";
187 part "string_buffer.dart"; 188 part "string_buffer.dart";
188 part "string_sink.dart"; 189 part "string_sink.dart";
189 part "symbol.dart"; 190 part "symbol.dart";
190 part "type.dart"; 191 part "type.dart";
191 part "uri.dart"; 192 part "uri.dart";
OLDNEW
« no previous file with comments | « sdk/lib/core/annotations.dart ('k') | sdk/lib/core/corelib_sources.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698