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

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

Issue 243483005: pkg/docgen: fixed type references within typedef doc comments (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 8 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/root_lib.dart
diff --git a/tests/compiler/dart2js/path with spaces/library space/part space/part space.dart b/pkg/docgen/test/multi_library_code/lib/root_lib.dart
similarity index 68%
copy from tests/compiler/dart2js/path with spaces/library space/part space/part space.dart
copy to pkg/docgen/test/multi_library_code/lib/root_lib.dart
index 58aff0fb6e8a8e53197e400cf859718ce5e65606..0a79b4707b62165fe2ca491fa5ed1d7f6fad5a75 100644
--- a/tests/compiler/dart2js/path with spaces/library space/part space/part space.dart
+++ b/pkg/docgen/test/multi_library_code/lib/root_lib.dart
@@ -2,6 +2,8 @@
// 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 spaces;
+library root_lib;
kevmoo 2014/04/20 21:34:54 Test library with just exports. typedef was failin
-bar() => 499;
+export 'test_lib.dart';
+export 'test_lib_foo.dart';
+export 'test_lib_bar.dart';

Powered by Google App Engine
This is Rietveld 408576698