| OLD | NEW |
| (Empty) | |
| 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file |
| 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. |
| 4 // Test that used static consts are emitted. |
| 5 |
| 6 class Guide { |
| 7 static const LTUAE = 42; |
| 8 static const TITLE = "Life, the Universe and Everything"; |
| 9 static const EARTH = const { |
| 10 "Sector": "ZZ9 Plural Z Alpha", |
| 11 "Status": const [ "Scheduled for demolition", "1978-03-08" ], |
| 12 "Description": "Mostly harmless" |
| 13 }; |
| 14 } |
| 15 |
| 16 main() { |
| 17 Expect.isTrue(42 == Guide.LTUAE); |
| 18 Expect.isTrue("1978-03-08" == Guide.EARTH["Status"][1]); |
| 19 } |
| 20 |
| OLD | NEW |