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

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

Issue 19000006: First version of Codecs and Converters. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address comment. Created 7 years, 5 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
« no previous file with comments | « sdk/lib/codec/json.dart ('k') | sdk/lib/convert/convert_sources.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/convert/convert.dart
diff --git a/tests/language/duplicate_interface_lib.dart b/sdk/lib/convert/convert.dart
similarity index 59%
copy from tests/language/duplicate_interface_lib.dart
copy to sdk/lib/convert/convert.dart
index 4602bcda6152b8e7e29c5e470df0751f3bf7e0e8..c0eab66e5cdf10cbf0d1c506144c0b3d1ac6cf32 100644
--- a/tests/language/duplicate_interface_lib.dart
+++ b/sdk/lib/convert/convert.dart
@@ -1,11 +1,12 @@
// Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
-// Check fail because of cycles in super class relationship.
-library Interface_Lib;
+library dart.convert;
-class InterfA { }
-
-class InterfB { }
+import 'dart:json' as OLD_JSON_LIB;
+import 'dart:utf' as OLD_UTF_LIB;
+part 'converter.dart';
+part 'json.dart';
+part 'utf.dart';
« no previous file with comments | « sdk/lib/codec/json.dart ('k') | sdk/lib/convert/convert_sources.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698