| Index: utils/apidoc/html_diff.dart
|
| diff --git a/utils/apidoc/html_diff.dart b/utils/apidoc/html_diff.dart
|
| index c9428bb0de05b50a974b4d9d140846c2b059b0bb..c4680d2c7de25ff27cb85fb4ea78bccab6ebd8a3 100644
|
| --- a/utils/apidoc/html_diff.dart
|
| +++ b/utils/apidoc/html_diff.dart
|
| @@ -101,7 +101,7 @@ class HtmlDiff {
|
| warn('Could not find $HTML_LIBRARY_NAME');
|
| return;
|
| }
|
| - for (InterfaceMirror htmlType in htmlLib.types.values) {
|
| + for (ClassMirror htmlType in htmlLib.types.values) {
|
| final domTypes = htmlToDomTypes(htmlType);
|
| if (domTypes.isEmpty) continue;
|
|
|
| @@ -139,7 +139,7 @@ class HtmlDiff {
|
| * [htmlType] from `dart:html`. This can be the empty list if no
|
| * correspondence is found.
|
| */
|
| - List<String> htmlToDomTypes(InterfaceMirror htmlType) {
|
| + List<String> htmlToDomTypes(ClassMirror htmlType) {
|
| if (htmlType.simpleName == null) return [];
|
| final tags = _getTags(comments.find(htmlType.location));
|
| if (tags.containsKey('domName')) {
|
|
|