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

Unified Diff: sdk/lib/core/set.dart

Issue 1307363005: Add optional message argument to assert statements in the VM. (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: More tests. Created 4 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
Index: sdk/lib/core/set.dart
diff --git a/sdk/lib/core/set.dart b/sdk/lib/core/set.dart
index a4d7ed7ccb99f2f022b4c77a0c96e7ec11ae1fed..4509ddc0b8d3b6538cf9d544b0f8385c84530238 100644
--- a/sdk/lib/core/set.dart
+++ b/sdk/lib/core/set.dart
@@ -148,8 +148,8 @@ abstract class Set<E> extends Iterable<E> implements EfficientLength {
*/
void retainAll(Iterable<Object> elements);
- /**
- * Removes all elements of this set that satisfy [test].
+ /*
+* * Removes all elements of this set that satisfy [test].
*/
void removeWhere(bool test(E element));

Powered by Google App Engine
This is Rietveld 408576698