OLD | NEW |
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 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
150 * [Dart Language Specification](http://www.dartlang.org/docs/spec/) | 150 * [Dart Language Specification](http://www.dartlang.org/docs/spec/) |
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:_internal" hide Symbol; | 156 import "dart:_internal" hide Symbol; |
157 import "dart:_internal" as internal show Symbol; | 157 import "dart:_internal" as internal show Symbol; |
158 import "dart:convert" show UTF8, LATIN1, Encoding; | 158 import "dart:convert" show UTF8, LATIN1, Encoding; |
159 import "dart:math" show Random; // Used by List.shuffle. | 159 import "dart:math" show Random; // Used by List.shuffle. |
| 160 import "dart:async" show Stream, Future; // Used by Resource. |
160 | 161 |
161 part "annotations.dart"; | 162 part "annotations.dart"; |
162 part "bool.dart"; | 163 part "bool.dart"; |
163 part "comparable.dart"; | 164 part "comparable.dart"; |
164 part "date_time.dart"; | 165 part "date_time.dart"; |
165 part "double.dart"; | 166 part "double.dart"; |
166 part "duration.dart"; | 167 part "duration.dart"; |
167 part "errors.dart"; | 168 part "errors.dart"; |
168 part "exceptions.dart"; | 169 part "exceptions.dart"; |
169 part "expando.dart"; | 170 part "expando.dart"; |
170 part "function.dart"; | 171 part "function.dart"; |
171 part "identical.dart"; | 172 part "identical.dart"; |
172 part "int.dart"; | 173 part "int.dart"; |
173 part "invocation.dart"; | 174 part "invocation.dart"; |
174 part "iterable.dart"; | 175 part "iterable.dart"; |
175 part "iterator.dart"; | 176 part "iterator.dart"; |
176 part "list.dart"; | 177 part "list.dart"; |
177 part "map.dart"; | 178 part "map.dart"; |
178 part "null.dart"; | 179 part "null.dart"; |
179 part "num.dart"; | 180 part "num.dart"; |
180 part "object.dart"; | 181 part "object.dart"; |
181 part "pattern.dart"; | 182 part "pattern.dart"; |
182 part "print.dart"; | 183 part "print.dart"; |
183 part "regexp.dart"; | 184 part "regexp.dart"; |
| 185 part "resource.dart"; |
184 part "set.dart"; | 186 part "set.dart"; |
185 part "sink.dart"; | 187 part "sink.dart"; |
186 part "stacktrace.dart"; | 188 part "stacktrace.dart"; |
187 part "stopwatch.dart"; | 189 part "stopwatch.dart"; |
188 part "string.dart"; | 190 part "string.dart"; |
189 part "string_buffer.dart"; | 191 part "string_buffer.dart"; |
190 part "string_sink.dart"; | 192 part "string_sink.dart"; |
191 part "symbol.dart"; | 193 part "symbol.dart"; |
192 part "type.dart"; | 194 part "type.dart"; |
193 part "uri.dart"; | 195 part "uri.dart"; |
OLD | NEW |