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

Unified Diff: tools/test-runtime.dart

Issue 11230011: Make hasNext a getter instead of a method. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 2 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: tools/test-runtime.dart
diff --git a/tools/test-runtime.dart b/tools/test-runtime.dart
index ec1a45062962d51df61a9aed35b7fa0e12f9c17a..b4a229fadeba18494ebbd5d133c88cb8ee9aa6fa 100755
--- a/tools/test-runtime.dart
+++ b/tools/test-runtime.dart
@@ -68,7 +68,7 @@ main() {
var configurationIterator = configurations.iterator();
void enqueueConfiguration(ProcessQueue queue) {
- if (!configurationIterator.hasNext()) return;
+ if (!configurationIterator.hasNext) return;
var conf = configurationIterator.next();
if (selectors.containsKey('co19')) {

Powered by Google App Engine
This is Rietveld 408576698