Chromium Code Reviews| Index: sdk/lib/core/core.dart |
| diff --git a/sdk/lib/core/core.dart b/sdk/lib/core/core.dart |
| index 391000c8a0533fd30fdec5be3c2142de5a62a3c5..2d3c4fa85e0ad1be98d8adc5c674504f8b37d6ba 100644 |
| --- a/sdk/lib/core/core.dart |
| +++ b/sdk/lib/core/core.dart |
| @@ -7,6 +7,7 @@ library dart.core; |
| import "dart:collection"; |
| import "dart:_collection-dev" hide Symbol; |
| import "dart:_collection-dev" as _collection_dev; |
| +import "dart:utf" show codepointsToUtf8, decodeUtf8; |
|
Ivan Posva
2013/05/24 22:24:51
Any particular reason why you cannot just
import
Søren Gjesse
2013/05/27 10:47:21
The only reason was to show how much of dart:utf i
|
| part "bool.dart"; |
| part "comparable.dart"; |
| @@ -14,9 +15,11 @@ part "date_time.dart"; |
| part "double.dart"; |
| part "duration.dart"; |
| part "errors.dart"; |
| +part "encode_decode.dart"; |
| part "exceptions.dart"; |
| part "expando.dart"; |
| part "function.dart"; |
| +part "helpers.dart"; |
| part "identical.dart"; |
| part "int.dart"; |
| part "invocation.dart"; |
| @@ -37,3 +40,4 @@ part "string_buffer.dart"; |
| part "string_sink.dart"; |
| part "symbol.dart"; |
| part "type.dart"; |
| +part "uri.dart"; |