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

Side by Side Diff: tests/language/new_statement_test.dart

Issue 2771453003: Format all tests. (Closed)
Patch Set: Format files 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
OLDNEW
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2011, 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 // Test a new statement by itself. 4 // Test a new statement by itself.
5 5
6 import "package:expect/expect.dart"; 6 import "package:expect/expect.dart";
7 7
8 class A { 8 class A {
9 int a; 9 int a;
10 int b; 10 int b;
11 static int c; 11 static int c;
12 static int d; 12 static int d;
13 13
14 A(int x, int y) : a = x, b = y { 14 A(int x, int y)
15 : a = x,
16 b = y {
15 A.c = x; 17 A.c = x;
16 A.d = y; 18 A.d = y;
17 } 19 }
18 } 20 }
19 21
20 class NewStatementTest { 22 class NewStatementTest {
21 static testMain() { 23 static testMain() {
22 new A(10, 20); 24 new A(10, 20);
23 Expect.equals(10, A.c); 25 Expect.equals(10, A.c);
24 Expect.equals(20, A.d); 26 Expect.equals(20, A.d);
25 } 27 }
26 } 28 }
27 29
28
29 main() { 30 main() {
30 NewStatementTest.testMain(); 31 NewStatementTest.testMain();
31 } 32 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698