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

Unified Diff: tests/standalone/io/test_runner_exit_code_test.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: Remove unused variable. 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
« no previous file with comments | « tests/standalone/io/http_server_early_client_close_test.dart ('k') | utils/apidoc/mdn/extract.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/standalone/io/test_runner_exit_code_test.dart
diff --git a/tests/standalone/io/test_runner_exit_code_test.dart b/tests/standalone/io/test_runner_exit_code_test.dart
index 9799ebbd897740b9f42244e4ff1655cfff6708b2..ced3acca04b46354a2d0a7f103cc7007b88544b0 100644
--- a/tests/standalone/io/test_runner_exit_code_test.dart
+++ b/tests/standalone/io/test_runner_exit_code_test.dart
@@ -5,7 +5,7 @@
#import('dart:io');
void runTests(String executable, String script, Iterator iterator) {
- if (iterator.hasNext()) {
+ if (iterator.hasNext) {
var progressIndicator = iterator.next();
Process.run(executable, [script, progressIndicator]).then((result) {
Expect.equals(1, result.exitCode);
« no previous file with comments | « tests/standalone/io/http_server_early_client_close_test.dart ('k') | utils/apidoc/mdn/extract.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698