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

Unified Diff: pkg/docgen/test/multi_library_code/lib/test_lib.dart

Issue 202193002: pkg/dartdoc: moving files around, fix library names (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: fixed year Created 6 years, 9 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: pkg/docgen/test/multi_library_code/lib/test_lib.dart
diff --git a/pkg/docgen/test/multi_library_code/lib/temp.dart b/pkg/docgen/test/multi_library_code/lib/test_lib.dart
similarity index 75%
rename from pkg/docgen/test/multi_library_code/lib/temp.dart
rename to pkg/docgen/test/multi_library_code/lib/test_lib.dart
index 694a8a75f93fea251ab65af7537b4509b0d9d0ef..ab0a5775c7e361ad98da4318917bb9dbfe513fd8 100644
--- a/pkg/docgen/test/multi_library_code/lib/temp.dart
+++ b/pkg/docgen/test/multi_library_code/lib/test_lib.dart
@@ -1,8 +1,9 @@
-library testLib;
-import 'temp2.dart';
-import 'temp3.dart';
-export 'temp2.dart';
-export 'temp3.dart';
+library test_lib;
+
+import 'test_lib_foo.dart';
+import 'test_lib_bar.dart';
+export 'test_lib_foo.dart';
+export 'test_lib_bar.dart';
/**
* Doc comment for class [A].
« no previous file with comments | « pkg/docgen/test/multi_library_code/lib/temp3.dart ('k') | pkg/docgen/test/multi_library_code/lib/test_lib_bar.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698