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

Unified Diff: tests/compiler/dart2js/jumps/data/simple_loops.dart

Issue 3007903002: Support annotations on assignment and postfix operations (Closed)
Patch Set: Updated cf. comments Created 3 years, 3 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: tests/compiler/dart2js/jumps/data/simple_loops.dart
diff --git a/tests/compiler/dart2js/jumps/data/simple_loops.dart b/tests/compiler/dart2js/jumps/data/simple_loops.dart
index 5230ea978525725b506bf384d3a33e5ba236ba8f..3e683ba30b186ea3dd97b279aeb3873dd318f429 100644
--- a/tests/compiler/dart2js/jumps/data/simple_loops.dart
+++ b/tests/compiler/dart2js/jumps/data/simple_loops.dart
@@ -3,7 +3,7 @@
// BSD-style license that can be found in the LICENSE file.
simpleForLoop(count) {
- for (int i = 0; i < count; i = i + 1) {
+ for (int i = 0; i < count; i++) {
print(i);
}
}
« no previous file with comments | « tests/compiler/dart2js/inference/inference_test_helper.dart ('k') | tests/compiler/dart2js/jumps/jump_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698