OLD | NEW |
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 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 | 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 // Test that unused static consts are not emitted. | 4 // Test that unused static consts are not emitted. |
5 | 5 |
| 6 import "package:expect/expect.dart"; |
6 import 'compiler_helper.dart'; | 7 import 'compiler_helper.dart'; |
7 | 8 |
8 const String TEST_GUIDE = r""" | 9 const String TEST_GUIDE = r""" |
9 class Guide { | 10 class Guide { |
10 static const LTUAE = 42; | 11 static const LTUAE = 42; |
11 static const TITLE = 'Life, the Universe and Everything'; | 12 static const TITLE = 'Life, the Universe and Everything'; |
12 } | 13 } |
13 | 14 |
14 main() { | 15 main() { |
15 return "${Guide.LTUAE}, ${Guide.TITLE}"; | 16 return "${Guide.LTUAE}, ${Guide.TITLE}"; |
16 } | 17 } |
17 """; | 18 """; |
18 | 19 |
19 main() { | 20 main() { |
20 String generated = compileAll(TEST_GUIDE); | 21 String generated = compileAll(TEST_GUIDE); |
21 Expect.isTrue(generated.contains("42")); | 22 Expect.isTrue(generated.contains("42")); |
22 Expect.isFalse(generated.contains("TITLE")); | 23 Expect.isFalse(generated.contains("TITLE")); |
23 } | 24 } |
24 | 25 |
OLD | NEW |