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

Unified Diff: pkg/front_end/testcases/implicit_scope_test.dart.strong.expect

Issue 2951033004: Implement type inference for conventional for-loops. (Closed)
Patch Set: Created 3 years, 6 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: pkg/front_end/testcases/implicit_scope_test.dart.strong.expect
diff --git a/pkg/front_end/testcases/implicit_scope_test.dart.strong.expect b/pkg/front_end/testcases/implicit_scope_test.dart.strong.expect
index 3b8a5c77f7ca10529a0d4c967103a382b29b9d85..3af9646aa57860e9b6812e8b3b20526090e5116c 100644
--- a/pkg/front_end/testcases/implicit_scope_test.dart.strong.expect
+++ b/pkg/front_end/testcases/implicit_scope_test.dart.strong.expect
@@ -27,7 +27,7 @@ class ImplicitScopeTest extends core::Object {
}
exp::Expect::equals("foo", a);
exp::Expect::equals(null, b);
- for (core::int i = 0; i.<(10); i = i.+(1)) {
+ for (core::int i = 0; i.{core::num::<}(10); i = i.{core::num::+}(1)) {
dynamic a = "bar";
dynamic b = "baz";
}

Powered by Google App Engine
This is Rietveld 408576698