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

Unified Diff: utils/apidoc/mdn/extract.dart

Issue 11363252: Extend Iterable instead of implementing it. (Closed) Base URL: https://dart.googlecode.com/svn/experimental/lib_v2/dart
Patch Set: Address Stephen's comments. Created 8 years, 1 month 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
« sdk/lib/utf/utf16.dart ('K') | « tests/compiler/dart2js_extra/for_in_test.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: utils/apidoc/mdn/extract.dart
diff --git a/utils/apidoc/mdn/extract.dart b/utils/apidoc/mdn/extract.dart
index 4a37154995653f381fb1e6944f9d275896d21cdf..a1976cbae5debb0c4119cf9fc989a2d7372bdf25 100644
--- a/utils/apidoc/mdn/extract.dart
+++ b/utils/apidoc/mdn/extract.dart
@@ -475,7 +475,7 @@ class PostOrderTraversalIterator implements Iterator<Node> {
}
}
-class PostOrderTraversal implements Iterable<Node> {
+class PostOrderTraversal extends Iterable<Node> {
final Node _node;
PostOrderTraversal(this._node);
« sdk/lib/utf/utf16.dart ('K') | « tests/compiler/dart2js_extra/for_in_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698