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

Unified Diff: test/kernel/regression/issue_000004.dart.txt

Issue 2420053003: Update kernel module. (Closed)
Patch Set: Created 4 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 | « test/kernel/regression/for_loop.dart.txt ('k') | test/kernel/regression/super.dart.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/kernel/regression/issue_000004.dart.txt
diff --git a/test/kernel/regression/issue_000004.dart.txt b/test/kernel/regression/issue_000004.dart.txt
index 7634400c59fd69f1ad64e4be4e204ab9a20767b6..4c7bdc02570484d64e6a0bf13a84134fc48c16cf 100644
--- a/test/kernel/regression/issue_000004.dart.txt
+++ b/test/kernel/regression/issue_000004.dart.txt
@@ -5,7 +5,7 @@ import "package:expect/expect.dart" as exp;
static field dynamic global;
static method fact4() → dynamic {
dynamic f = 1;
- for(dynamic n in <dynamic>[1, 2, 3, 4]) {
+ for (dynamic n in <dynamic>[1, 2, 3, 4]) {
f = f.*(n);
}
return f;
@@ -13,7 +13,7 @@ static method fact4() → dynamic {
static method fact5() → dynamic {
dynamic f = 1;
dynamic n;
- for(final dynamic #t1 in <dynamic>[1, 2, 3, 4, 5]) {
+ for (final dynamic #t1 in <dynamic>[1, 2, 3, 4, 5]) {
n = #t1;
f = f.*(n);
}
@@ -21,7 +21,7 @@ static method fact5() → dynamic {
}
static method fact6() → dynamic {
dynamic f = 1;
- for(final dynamic #t2 in <dynamic>[1, 2, 3, 4, 5, 6]) {
+ for (final dynamic #t2 in <dynamic>[1, 2, 3, 4, 5, 6]) {
self::global = #t2;
f = f.*(self::global);
}
« no previous file with comments | « test/kernel/regression/for_loop.dart.txt ('k') | test/kernel/regression/super.dart.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698