| Index: lib/dartdoc/dartdoc.dart
|
| diff --git a/lib/dartdoc/dartdoc.dart b/lib/dartdoc/dartdoc.dart
|
| index 90e3b705329c7aaa5ae7c8ac930c373aa3c8dd19..2997dab9acd284fb5af894b31a3c6390deac54c5 100644
|
| --- a/lib/dartdoc/dartdoc.dart
|
| +++ b/lib/dartdoc/dartdoc.dart
|
| @@ -1263,6 +1263,11 @@ class Dartdoc {
|
| write('void');
|
| return;
|
| }
|
| + if (type.isDynamic) {
|
| + // Do not generate links for Dynamic.
|
| + write('Dynamic');
|
| + return;
|
| + }
|
|
|
| if (type.isTypeVariable) {
|
| // If we're using a type parameter within the body of a generic class then
|
|
|