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

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

Issue 320323004: Fix for link resolution of docgen (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 6 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/docgen/lib/src/models/variable.dart
diff --git a/pkg/docgen/lib/src/models/variable.dart b/pkg/docgen/lib/src/models/variable.dart
index 2d8b02a2b7c3b51ffc93178f1918d9005c19983c..b4b83ac7bd4f641895fb9a670a3cd1aa51eb5de9 100644
--- a/pkg/docgen/lib/src/models/variable.dart
+++ b/pkg/docgen/lib/src/models/variable.dart
@@ -24,7 +24,7 @@ class Variable extends OwnedIndexable<VariableMirror> {
final String name;
factory Variable(String name, VariableMirror mirror, Indexable owner) {
- var variable = getDocgenObject(mirror);
+ var variable = getDocgenObject(mirror, owner);
if (variable is DummyMirror) {
return new Variable._(name, mirror, owner);
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698