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

Unified Diff: pkg/docgen/lib/src/models/library.dart

Issue 929353004: Handle mutually recursive re-exports in dartdocgen (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 10 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/lib/src/models/library.dart
diff --git a/pkg/docgen/lib/src/models/library.dart b/pkg/docgen/lib/src/models/library.dart
index ccd12a22b7c07773298be38c2ba46bb35415272a..94032394db6a88ff997f1f060d4614d50ee02fad 100644
--- a/pkg/docgen/lib/src/models/library.dart
+++ b/pkg/docgen/lib/src/models/library.dart
@@ -53,7 +53,7 @@ class Library extends Indexable {
}
Library._(LibraryMirror libraryMirror) : super(libraryMirror) {
- var exported = calcExportedItems(libraryMirror);
+ var exported = calcExportedItems(libraryMirror, {});
var exportedClasses = addAll(exported['classes'],
dart2js_util.typesOf(libraryMirror.declarations));
updateLibraryPackage(mirror);
« no previous file with comments | « no previous file | pkg/docgen/lib/src/models/model_helpers.dart » ('j') | pkg/docgen/lib/src/models/model_helpers.dart » ('J')

Powered by Google App Engine
This is Rietveld 408576698