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

Unified Diff: tests/language/export_helper3.dart

Issue 10990060: Added support for exports and re-exports. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Updated cf. comments. Created 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tests/language/export_helper2.dart ('k') | tests/language/export_helper4.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/language/export_helper3.dart
diff --git a/tests/language/issue1363_lib.dart b/tests/language/export_helper3.dart
similarity index 64%
copy from tests/language/issue1363_lib.dart
copy to tests/language/export_helper3.dart
index 0dc03eab54c26efd4d7fcd6e4b6e2faca05b4883..c4cf3d824978b03fa4176142940d5a6098ac1917 100644
--- a/tests/language/issue1363_lib.dart
+++ b/tests/language/export_helper3.dart
@@ -2,13 +2,11 @@
// 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.
-#library('Issue1363');
+library export_helper3;
-class C { }
+import 'export_helper4.dart';
+export 'export_helper4.dart';
-class Cup<T> {
- var foo;
- Cup(this.foo);
+class Exported extends ReExported {
- T getContents() => foo;
-}
+}
« no previous file with comments | « tests/language/export_helper2.dart ('k') | tests/language/export_helper4.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698