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

Unified Diff: pkg/front_end/testcases/expressions.dart

Issue 2820323005: Run formatter on a few frontend and kernel files that hadn't been formatted. (Closed)
Patch Set: Run formatter on a few frontend and kernel files that hadn't been formatted. Created 3 years, 8 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 | « pkg/front_end/testcases/cycles.dart ('k') | pkg/front_end/testcases/functions.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/front_end/testcases/expressions.dart
diff --git a/pkg/front_end/testcases/expressions.dart b/pkg/front_end/testcases/expressions.dart
index 9b1f55d0ec0a53d3c551f5fdaecfaaaaf7e3b2f0..2cfc53978519012c4d8a3bc6bfb0b669aaa6dec2 100644
--- a/pkg/front_end/testcases/expressions.dart
+++ b/pkg/front_end/testcases/expressions.dart
@@ -26,7 +26,7 @@ main() {
print(e);
if (s != null) print(s);
}
- for(;false;) {}
+ for (; false;) {}
var list = ["Hello, World!"];
print(list[i]);
list[i] = "Hello, Brave New World!";
@@ -46,6 +46,7 @@ main() {
f() {
print("f was called");
}
+
caller(f);
caller(() {
print("<anon> was called");
@@ -53,6 +54,7 @@ main() {
g([message]) {
print(message);
}
+
g("Hello, World");
caller(([x]) {
print("<anon> was called with $x");
@@ -60,6 +62,7 @@ main() {
h({message}) {
print(message);
}
+
h(message: "Hello, World");
caller(({x}) {
print("<anon> was called with $x");
« no previous file with comments | « pkg/front_end/testcases/cycles.dart ('k') | pkg/front_end/testcases/functions.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698