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

Unified Diff: test/codegen/language/export_helper1.dart

Issue 1263583005: implement exports, fixes #141 (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: rebase Created 5 years, 4 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: test/codegen/language/export_helper1.dart
diff --git a/tool/input_sdk/lib/core/type.dart b/test/codegen/language/export_helper1.dart
similarity index 63%
copy from tool/input_sdk/lib/core/type.dart
copy to test/codegen/language/export_helper1.dart
index d2e107b6b183f9f674dfba4e7138c195a2d69c19..3a934b96685a0c8bbfc918e5b583d3f28ce0cb0a 100644
--- a/tool/input_sdk/lib/core/type.dart
+++ b/test/codegen/language/export_helper1.dart
@@ -2,9 +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.
-part of dart.core;
+library export_helper1;
-/**
- * Runtime representation of a type.
- */
-abstract class Type {}
+import 'export_helper2.dart';
+export 'export_helper2.dart';
+
+class Exported extends ReExported {
+
+}

Powered by Google App Engine
This is Rietveld 408576698