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

Side by Side Diff: pkg/front_end/testcases/invocations.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 unified diff | Download patch
« no previous file with comments | « pkg/front_end/testcases/functions.dart ('k') | pkg/front_end/testcases/mixin.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 main() { 5 main() {
6 print("Hello, World!"); 6 print("Hello, World!");
7 z("Hello, World!"); 7 z("Hello, World!");
8 z.print("Hello, World!"); 8 z.print("Hello, World!");
9 y.z.print("Hello, World!"); 9 y.z.print("Hello, World!");
10 x.y.z.print("Hello, World!"); 10 x.y.z.print("Hello, World!");
11 11
12 1 + print("Hello, World!") + z("Hello, World!") + z.print("Hello, World!") 12 1 +
13 + y.z.print("Hello, World!") + x.y.z.print("Hello, World!"); 13 print("Hello, World!") +
14 z("Hello, World!") +
15 z.print("Hello, World!") +
16 y.z.print("Hello, World!") +
17 x.y.z.print("Hello, World!");
14 } 18 }
OLDNEW
« no previous file with comments | « pkg/front_end/testcases/functions.dart ('k') | pkg/front_end/testcases/mixin.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698