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

Unified Diff: tests/language/export_helper1.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_cyclic_test.dart ('k') | tests/language/export_helper2.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/language/export_helper1.dart
diff --git a/runtime/bin/socket_macos.h b/tests/language/export_helper1.dart
similarity index 66%
copy from runtime/bin/socket_macos.h
copy to tests/language/export_helper1.dart
index b77857c87d93af32b8e83ffc6a735d5c23cd7689..3a934b96685a0c8bbfc918e5b583d3f28ce0cb0a 100644
--- a/runtime/bin/socket_macos.h
+++ b/tests/language/export_helper1.dart
@@ -2,11 +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.
-#ifndef BIN_SOCKET_MACOS_H_
-#define BIN_SOCKET_MACOS_H_
+library export_helper1;
-#include <arpa/inet.h>
-#include <netdb.h>
-#include <sys/socket.h>
+import 'export_helper2.dart';
+export 'export_helper2.dart';
-#endif // BIN_SOCKET_MACOS_H_
+class Exported extends ReExported {
+
+}
« no previous file with comments | « tests/language/export_cyclic_test.dart ('k') | tests/language/export_helper2.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698