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

Unified Diff: sdk/lib/core/core.dart

Issue 16019002: Merge the dart:uri library into dart:core and update the Uri class (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Add missing files Created 7 years, 7 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 side-by-side diff with in-line comments
Download patch
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";

Powered by Google App Engine
This is Rietveld 408576698