Index: tools/testing/dart/status_expression.dart |
diff --git a/tools/testing/dart/status_expression.dart b/tools/testing/dart/status_expression.dart |
index fcc11cbcc2d8f4fa63e82be75df079cf026187ee..e49dc6cbf462762fa8f4f023c6d6c1a47be1092f 100644 |
--- a/tools/testing/dart/status_expression.dart |
+++ b/tools/testing/dart/status_expression.dart |
@@ -182,7 +182,7 @@ class Scanner { |
bool hasMore() => current != null; |
void advance() { |
- current = tokenIterator.hasNext() ? tokenIterator.next() : null; |
+ current = tokenIterator.hasNext ? tokenIterator.next() : null; |
} |
} |