Chromium Code Reviews| 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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 55 First.b = First.a = 15; | 55 First.b = First.a = 15; |
| 56 Expect.equals(15, First.a); | 56 Expect.equals(15, First.a); |
| 57 Expect.equals(15, First.b); | 57 Expect.equals(15, First.b); |
| 58 Expect.equals(35, First.setValues()); | 58 Expect.equals(35, First.setValues()); |
| 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 class StaticField1RunNegativeTest { | |
| 66 static /// 01: static type warning, runtime error | |
| 67 var x; | |
| 68 testMain() { | |
| 69 var foo = new StaticField1RunNegativeTest(); | |
| 70 print(x); // to compile 'x' | |
|
ahe
2012/06/13 15:26:08
Not a proper sentence: first letter should be uppe
| |
| 71 var result = foo.x; | |
| 72 } | |
| 73 } | |
| 74 | |
| 75 class StaticField1aRunNegativeTest { | |
| 76 static /// 02: static type warning, runtime error | |
| 77 void m() {} | |
| 78 | |
| 79 testMain() { | |
| 80 var foo = new StaticField1aRunNegativeTest(); | |
| 81 print(m); // to compile 'm' | |
| 82 var result = foo.m; | |
| 83 } | |
| 84 } | |
| 85 | |
| 86 class StaticField2RunNegativeTest { | |
| 87 static /// 03: static type warning, runtime error | |
| 88 var x; | |
| 89 | |
| 90 testMain() { | |
| 91 var foo = new StaticField2RunNegativeTest(); | |
| 92 print(x); // to compile 'x' | |
| 93 foo.x = 1; | |
| 94 } | |
| 95 } | |
| 96 | |
| 97 class StaticField2aRunNegativeTest { | |
| 98 static /// 04: static type warning, runtime error | |
| 99 void m() {} | |
| 100 | |
| 101 testMain() { | |
| 102 var foo = new StaticField2aRunNegativeTest(); | |
| 103 print(m); // to compile 'm' | |
| 104 foo.m = 1; /// 04:continued | |
| 105 } | |
| 106 } | |
| 107 | |
| 65 main() { | 108 main() { |
| 66 StaticFieldTest.testMain(); | 109 StaticFieldTest.testMain(); |
| 67 InitializerTest.testStaticFieldInitialization(); | 110 InitializerTest.testStaticFieldInitialization(); |
| 111 new StaticField1RunNegativeTest().testMain(); | |
| 112 new StaticField1aRunNegativeTest().testMain(); | |
| 113 new StaticField2RunNegativeTest().testMain(); | |
| 114 new StaticField2aRunNegativeTest().testMain(); | |
| 68 } | 115 } |
| OLD | NEW |