| Index: utils/apidoc/apidoc.dart
|
| diff --git a/utils/apidoc/apidoc.dart b/utils/apidoc/apidoc.dart
|
| index 8e016f3599cf84376e5d576f22c3358607366c3a..8a51cbf8eece98f2762e5578d6a7bb4a48d9d28f 100644
|
| --- a/utils/apidoc/apidoc.dart
|
| +++ b/utils/apidoc/apidoc.dart
|
| @@ -380,7 +380,7 @@ class Apidoc extends doc.Dartdoc {
|
|
|
| /** Override definition from parent class to strip out annotation tags. */
|
| doc.DocComment createDocComment(String text,
|
| - [InterfaceMirror inheritedFrom]) {
|
| + [ClassMirror inheritedFrom]) {
|
| String strippedText =
|
| text.replaceAll(const RegExp("@([a-zA-Z]+) ([^;]+)(?:;|\$)"),
|
| '').trim();
|
| @@ -570,7 +570,7 @@ class MdnComment implements doc.DocComment {
|
|
|
| String get text => mdnComment;
|
|
|
| - InterfaceMirror get inheritedFrom => null;
|
| + ClassMirror get inheritedFrom => null;
|
|
|
| String get html {
|
| // Wrap the mdn comment so we can highlight it and so we handle MDN scraped
|
|
|