| OLD | NEW |
| 1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2015, 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 | 4 |
| 5 import 'source_mapping_tester.dart'; | 5 import 'source_mapping_tester.dart'; |
| 6 import 'sourcemap_helper.dart'; | |
| 7 import 'package:compiler/src/io/position_information.dart'; | |
| 8 | 6 |
| 9 void main() { | 7 void main() { |
| 10 test(['invokes'], whiteListFunction: (String config, String file) { | 8 test(['invokes']); |
| 11 if (config == 'cps') { | |
| 12 return (CodePoint codePoint) { | |
| 13 // Temporarily allow missing code points on expression statements. | |
| 14 return codePoint.kind == StepKind.EXPRESSION_STATEMENT; | |
| 15 }; | |
| 16 } | |
| 17 return emptyWhiteList; | |
| 18 }); | |
| 19 } | 9 } |
| OLD | NEW |