| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, 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 // Dart test program for testing setting/getting/initializing static fields. | 4 // Dart test program for testing setting/getting/initializing static fields. |
| 5 | 5 |
| 6 class First { | 6 class First { |
| 7 First() {} | 7 First() {} |
| 8 static var a; | 8 static var a; |
| 9 static var b; | 9 static var b; |
| 10 static final int c = 1; | 10 static final int c = 1; |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 Expect.equals(24, First.a); | 59 Expect.equals(24, First.a); |
| 60 Expect.equals(10, First.b); | 60 Expect.equals(10, First.b); |
| 61 } | 61 } |
| 62 } | 62 } |
| 63 | 63 |
| 64 | 64 |
| 65 main() { | 65 main() { |
| 66 StaticFieldTest.testMain(); | 66 StaticFieldTest.testMain(); |
| 67 InitializerTest.testStaticFieldInitialization(); | 67 InitializerTest.testStaticFieldInitialization(); |
| 68 } | 68 } |
| OLD | NEW |