| Index: pkg/docgen/lib/src/models.dart
|
| diff --git a/pkg/docgen/lib/src/models.dart b/pkg/docgen/lib/src/models.dart
|
| index ed46394449973de8124432fc6034df61329f63f9..e0aa9dc86aadcf0fded42b3eef4ab239d8646fb0 100644
|
| --- a/pkg/docgen/lib/src/models.dart
|
| +++ b/pkg/docgen/lib/src/models.dart
|
| @@ -474,8 +474,7 @@ abstract class OwnedIndexable<TMirror extends DeclarationMirror>
|
| }
|
|
|
| /// A class containing contents of a Dart class.
|
| -class Class
|
| - extends OwnedIndexable<dart2js_mirrors.Dart2JsInterfaceTypeMirror>
|
| +class Class extends OwnedIndexable<dart2js_mirrors.Dart2JsInterfaceTypeMirror>
|
| implements Comparable<Class> {
|
|
|
| /// List of the names of interfaces that this class implements.
|
| @@ -982,7 +981,7 @@ class Parameter extends MirrorBased {
|
| isOptional = mirror.isOptional,
|
| isNamed = mirror.isNamed,
|
| hasDefaultValue = mirror.hasDefaultValue,
|
| - defaultValue = '${mirror.defaultValue}',
|
| + defaultValue = getDefaultValue(mirror),
|
| type = new Type(mirror.type, owningLibrary),
|
| annotations = createAnnotations(mirror, owningLibrary);
|
|
|
|
|