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

Unified Diff: pkg/docgen/test/multi_library_test.dart

Issue 135653009: Fix package docnames for select return types, and some more docgen refactoring. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 11 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 | « pkg/docgen/lib/docgen.dart ('k') | pkg/docgen/test/single_library_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/docgen/test/multi_library_test.dart
diff --git a/pkg/docgen/test/multi_library_test.dart b/pkg/docgen/test/multi_library_test.dart
index 1346de8a6d5d5028a46e2578cbdde46dd1aae153..f4d91d967c6aac4e56b6954eed1181d8dfe63af9 100644
--- a/pkg/docgen/test/multi_library_test.dart
+++ b/pkg/docgen/test/multi_library_test.dart
@@ -128,7 +128,7 @@ main() {
(dep) => dep.isImport).targetLibrary;
var aClassMirror = importedLib.classes.values.first;
expect(aClassMirror.qualifiedName, 'testLib2.foo.B');
- var exportedClass = getDocgenObject(aClassMirror, library);
+ var exportedClass = Indexable.getDocgenObject(aClassMirror, library);
expect(exportedClass is Class, isTrue);
@@ -156,7 +156,7 @@ main() {
'testLib.bar').targetLibrary;
aClassMirror = importedLib.classes.values.first;
expect(aClassMirror.qualifiedName, 'testLib.bar.C');
- exportedClass = getDocgenObject(aClassMirror, library);
+ exportedClass = Indexable.getDocgenObject(aClassMirror, library);
expect(exportedClass is Class, isTrue);
expect(exportedClass.docName, 'testLib.C');
« no previous file with comments | « pkg/docgen/lib/docgen.dart ('k') | pkg/docgen/test/single_library_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698