Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(318)

Unified Diff: utils/apidoc/html_diff.dart

Issue 9225039: Integrate MDN content into API documentation. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Remove temp code. Created 8 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: utils/apidoc/html_diff.dart
diff --git a/utils/apidoc/html_diff.dart b/utils/apidoc/html_diff.dart
index d9db65138da4e0dfe88d895347505cb4de58891b..93d06bbeb43071375f9ac428aa4d706b0df70a28 100644
--- a/utils/apidoc/html_diff.dart
+++ b/utils/apidoc/html_diff.dart
@@ -168,10 +168,10 @@ class HtmlDiff {
} else if ((getter = implMember.name.startsWith('get:')) ||
(setter = implMember.name.startsWith('set:'))) {
// Use getMember to follow interface inheritance chains. If it's a
- // ConcreteMember, though, it's an implementation of some data structure
+ // Member, though, it's an implementation of some data structure
// and we don't care about it.
var htmlProperty = htmlType.getMember(implMember.name.substring(4));
- if (htmlProperty != null && htmlProperty is! ConcreteMember) {
+ if (htmlProperty != null && htmlProperty is! Member) {
return getter ? htmlProperty.getter : htmlProperty.setter;
} else {
return null;

Powered by Google App Engine
This is Rietveld 408576698