| 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 // Check that initializers of static const fields are compile time constants. | 4 // Check that initializers of static const fields are compile time constants. |
| 5 | 5 |
| 6 import "package:expect/expect.dart"; | |
| 7 | |
| 8 class CanonicalConstTest { | 6 class CanonicalConstTest { |
| 9 static const A = const C1(); | 7 static const A = const C1(); |
| 10 static const B = const C2(); | 8 static const B = const C2(); |
| 11 | 9 |
| 12 static testMain() { | 10 static testMain() { |
| 13 Expect.identical(null, null); | 11 Expect.identical(null, null); |
| 14 Expect.isFalse(identical(null, 0)); | 12 Expect.isFalse(identical(null, 0)); |
| 15 Expect.identical(1, 1); | 13 Expect.identical(1, 1); |
| 16 Expect.isFalse(identical(1, 2)); | 14 Expect.isFalse(identical(1, 2)); |
| 17 Expect.identical(true, true); | 15 Expect.identical(true, true); |
| (...skipping 19 matching lines...) Expand all Loading... |
| 37 const C1(); | 35 const C1(); |
| 38 } | 36 } |
| 39 | 37 |
| 40 class C2 extends C1 { | 38 class C2 extends C1 { |
| 41 const C2() : super(); | 39 const C2() : super(); |
| 42 } | 40 } |
| 43 | 41 |
| 44 main() { | 42 main() { |
| 45 CanonicalConstTest.testMain(); | 43 CanonicalConstTest.testMain(); |
| 46 } | 44 } |
| OLD | NEW |