| Index: pkg/docgen/lib/docgen.dart
|
| diff --git a/pkg/docgen/lib/docgen.dart b/pkg/docgen/lib/docgen.dart
|
| index aa8cb12275508584504641c3d0d05d13b9c893a1..72f6a132bf9d8c2a7f2d0651c9822b3559fdd586 100644
|
| --- a/pkg/docgen/lib/docgen.dart
|
| +++ b/pkg/docgen/lib/docgen.dart
|
| @@ -470,11 +470,13 @@ bool isError(String qualifiedName) {
|
| */
|
| class Indexable {
|
| String name;
|
| + String qualifiedName;
|
|
|
| /// Documentation comment with converted markdown.
|
| String comment;
|
|
|
| Indexable(this.name, this.comment, String qualifiedName) {
|
| + this.qualifiedName = qualifiedName;
|
| qualifiedNameIndex.add(qualifiedName);
|
| }
|
| }
|
| @@ -499,6 +501,7 @@ class Library extends Indexable {
|
| /// Generates a map describing the [Library] object.
|
| Map toMap() => {
|
| 'name': name,
|
| + 'qualifiedname': qualifiedName,
|
| 'comment': comment,
|
| 'variables': recurseMap(variables),
|
| 'functions': recurseMap(functions),
|
| @@ -536,6 +539,7 @@ class Class extends Indexable {
|
| /// Generates a map describing the [Class] object.
|
| Map toMap() => {
|
| 'name': name,
|
| + 'qualifiedname': qualifiedName,
|
| 'comment': comment,
|
| 'superclass': superclass,
|
| 'implements': new List.from(interfaces),
|
| @@ -563,6 +567,7 @@ class Typedef extends Indexable {
|
|
|
| Map toMap() => {
|
| 'name': name,
|
| + 'qualifiedname': qualifiedName,
|
| 'comment': comment,
|
| 'return': returnType,
|
| 'parameters': recurseMap(parameters),
|
| @@ -591,6 +596,7 @@ class Variable extends Indexable {
|
| /// Generates a map describing the [Variable] object.
|
| Map toMap() => {
|
| 'name': name,
|
| + 'qualifiedname': qualifiedName,
|
| 'comment': comment,
|
| 'final': isFinal.toString(),
|
| 'static': isStatic.toString(),
|
| @@ -624,6 +630,7 @@ class Method extends Indexable {
|
| /// Generates a map describing the [Method] object.
|
| Map toMap() => {
|
| 'name': name,
|
| + 'qualifiedname': qualifiedName,
|
| 'comment': comment,
|
| 'static': isStatic.toString(),
|
| 'abstract': isAbstract.toString(),
|
|
|