| 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 const int c = 1; |
| 11 static setValues() { | 11 static setValues() { |
| 12 a = 24; | 12 a = 24; |
| 13 b = 10; | 13 b = 10; |
| 14 return a + b + c; | 14 return a + b + c; |
| 15 } | 15 } |
| 16 } | 16 } |
| 17 | 17 |
| 18 | 18 |
| 19 class InitializerTest { | 19 class InitializerTest { |
| 20 static var one; | 20 static var one; |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 } | 61 } |
| 62 } | 62 } |
| 63 | 63 |
| 64 | 64 |
| 65 class StaticField1RunNegativeTest { | 65 class StaticField1RunNegativeTest { |
| 66 static /// 01: static type warning, runtime error | 66 static /// 01: static type warning, runtime error |
| 67 var x; | 67 var x; |
| 68 testMain() { | 68 testMain() { |
| 69 var foo = new StaticField1RunNegativeTest(); | 69 var foo = new StaticField1RunNegativeTest(); |
| 70 print(x); // Used to compile 'x' and force any errors. | 70 print(x); // Used to compile 'x' and force any errors. |
| 71 var result = foo.x; | 71 var result = foo.x; |
| 72 } | 72 } |
| 73 } | 73 } |
| 74 | 74 |
| 75 class StaticField1aRunNegativeTest { | 75 class StaticField1aRunNegativeTest { |
| 76 static /// 02: static type warning, runtime error | 76 static /// 02: static type warning, runtime error |
| 77 void m() {} | 77 void m() {} |
| 78 | 78 |
| 79 testMain() { | 79 testMain() { |
| 80 var foo = new StaticField1aRunNegativeTest(); | 80 var foo = new StaticField1aRunNegativeTest(); |
| 81 print(m); // Used to compile 'm' and force any errors. | 81 print(m); // Used to compile 'm' and force any errors. |
| 82 var result = foo.m; | 82 var result = foo.m; |
| 83 } | 83 } |
| 84 } | 84 } |
| 85 | 85 |
| 86 class StaticField2RunNegativeTest { | 86 class StaticField2RunNegativeTest { |
| 87 static /// 03: static type warning, runtime error | 87 static /// 03: static type warning, runtime error |
| 88 var x; | 88 var x; |
| 89 | 89 |
| 90 testMain() { | 90 testMain() { |
| 91 var foo = new StaticField2RunNegativeTest(); | 91 var foo = new StaticField2RunNegativeTest(); |
| 92 print(x); // Used to compile 'x' and force any errors. | 92 print(x); // Used to compile 'x' and force any errors. |
| 93 foo.x = 1; | 93 foo.x = 1; |
| 94 } | 94 } |
| 95 } | 95 } |
| 96 | 96 |
| 97 class StaticField2aRunNegativeTest { | 97 class StaticField2aRunNegativeTest { |
| 98 static /// 04: static type warning, runtime error | 98 static /// 04: static type warning, runtime error |
| 99 void m() {} | 99 void m() {} |
| 100 | 100 |
| 101 testMain() { | 101 testMain() { |
| 102 var foo = new StaticField2aRunNegativeTest(); | 102 var foo = new StaticField2aRunNegativeTest(); |
| 103 print(m); // Used to compile 'm' and force any errors. | 103 print(m); // Used to compile 'm' and force any errors. |
| 104 foo.m = 1; /// 04:continued | 104 foo.m = 1; /// 04:continued |
| 105 } | 105 } |
| 106 } | 106 } |
| 107 | 107 |
| 108 main() { | 108 main() { |
| 109 StaticFieldTest.testMain(); | 109 StaticFieldTest.testMain(); |
| 110 InitializerTest.testStaticFieldInitialization(); | 110 InitializerTest.testStaticFieldInitialization(); |
| 111 new StaticField1RunNegativeTest().testMain(); | 111 new StaticField1RunNegativeTest().testMain(); |
| 112 new StaticField1aRunNegativeTest().testMain(); | 112 new StaticField1aRunNegativeTest().testMain(); |
| 113 new StaticField2RunNegativeTest().testMain(); | 113 new StaticField2RunNegativeTest().testMain(); |
| 114 new StaticField2aRunNegativeTest().testMain(); | 114 new StaticField2aRunNegativeTest().testMain(); |
| 115 } | 115 } |
| OLD | NEW |