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

Unified Diff: tests/compiler/dart2js/identity_test.dart

Issue 11783009: Big merge from experimental to bleeding edge. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 11 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/compiler/dart2js/gvn_test.dart ('k') | tests/compiler/dart2js/mock_compiler.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/compiler/dart2js/identity_test.dart
diff --git a/tests/compiler/dart2js/identity_test.dart b/tests/compiler/dart2js/identity_test.dart
index 2b72fe5b4deb6e4dc405684626d24eacf440cce3..1e47d5878f0ee2963ad2c1ef82121ea55b234ec1 100644
--- a/tests/compiler/dart2js/identity_test.dart
+++ b/tests/compiler/dart2js/identity_test.dart
@@ -18,12 +18,11 @@ main() {
// Check that no boolify code is generated.
RegExp regexp = new RegExp("=== true");
- Iterator matches = regexp.allMatches(generated).iterator();
+ Iterator matches = regexp.allMatches(generated).iterator;
Expect.isFalse(matches.hasNext);
regexp = new RegExp("===");
- matches = regexp.allMatches(generated).iterator();
- Expect.isTrue(matches.hasNext);
- matches.next();
- Expect.isFalse(matches.hasNext);
+ matches = regexp.allMatches(generated).iterator;
+ Expect.isTrue(matches.moveNext());
+ Expect.isFalse(matches.moveNext());
}
« no previous file with comments | « tests/compiler/dart2js/gvn_test.dart ('k') | tests/compiler/dart2js/mock_compiler.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698