Chromium Code Reviews| 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 unused static consts are not emitted. | |
| 5 | |
| 6 import 'compiler_helper.dart'; | |
| 7 import 'parser_helper.dart'; | |
|
ngeoffray
2013/01/29 11:19:38
Do you need parser_helper?
erikcorry
2013/02/04 11:38:01
No.
Removed.
| |
| 8 | |
| 9 const String TEST_GUIDE = r""" | |
| 10 class Guide { | |
| 11 static const LTUAE = 42; | |
| 12 static const TITLE = 'Life, the Universe and Everything'; | |
| 13 } | |
| 14 | |
| 15 main() { | |
| 16 return "${Guide.LTUAE}, ${Guide.TITLE}"; | |
| 17 } | |
| 18 """; | |
| 19 | |
| 20 main() { | |
| 21 String generated = compileAll(TEST_GUIDE); | |
| 22 Expect.isTrue(generated.contains("42")); | |
| 23 Expect.isFalse(generated.contains("TITLE")); | |
| 24 } | |
| 25 | |
| OLD | NEW |