OLD | NEW |
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 } |
OLD | NEW |