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

Unified Diff: packages/quiver_iterables/lib/src/infinite_iterable.dart

Issue 2119523002: Added full js & js_util packages (Closed) Base URL: git@github.com:dart-lang/observatory_pub_packages.git@master
Patch Set: Created 4 years, 6 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: packages/quiver_iterables/lib/src/infinite_iterable.dart
diff --git a/packages/quiver/lib/src/iterables/infinite_iterable.dart b/packages/quiver_iterables/lib/src/infinite_iterable.dart
similarity index 91%
copy from packages/quiver/lib/src/iterables/infinite_iterable.dart
copy to packages/quiver_iterables/lib/src/infinite_iterable.dart
index cfe0bd2cf21b65e7795f357b4689683dfed15cb8..69085ea90c3ee99fcefaa446416a27ac4ef4fe72 100644
--- a/packages/quiver/lib/src/iterables/infinite_iterable.dart
+++ b/packages/quiver_iterables/lib/src/infinite_iterable.dart
@@ -14,10 +14,8 @@
part of quiver.iterables;
-/**
- * A base class for [Iterable]s of infinite length that throws
- * [UnsupportedError] for methods that would require the Iterable to terminate.
- */
+/// A base class for [Iterable]s of infinite length that throws
+/// [UnsupportedError] for methods that would require the Iterable to terminate.
abstract class InfiniteIterable<T> extends IterableBase<T> {
bool get isEmpty => false;
« no previous file with comments | « packages/quiver_iterables/lib/src/generating_iterable.dart ('k') | packages/quiver_iterables/lib/src/merge.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698