| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, 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 "package:expect/expect.dart"; | |
| 6 import '../../../sdk/lib/_internal/compiler/implementation/js_backend/js_backend
.dart'; | 5 import '../../../sdk/lib/_internal/compiler/implementation/js_backend/js_backend
.dart'; |
| 7 import '../../../sdk/lib/_internal/compiler/implementation/ssa/ssa.dart'; | 6 import '../../../sdk/lib/_internal/compiler/implementation/ssa/ssa.dart'; |
| 8 | 7 |
| 9 import 'compiler_helper.dart'; | 8 import 'compiler_helper.dart'; |
| 10 import 'parser_helper.dart'; | 9 import 'parser_helper.dart'; |
| 11 | 10 |
| 12 // Source names used throughout the tests. | 11 // Source names used throughout the tests. |
| 13 const SourceString x = const SourceString("x"); | 12 const SourceString x = const SourceString("x"); |
| 14 const SourceString p1 = const SourceString("p1"); | 13 const SourceString p1 = const SourceString("p1"); |
| 15 const SourceString p2 = const SourceString("p2"); | 14 const SourceString p2 = const SourceString("p2"); |
| (...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 234 IIB = <HType>[HType.INTEGER, HType.INTEGER, HType.BOOLEAN]; | 233 IIB = <HType>[HType.INTEGER, HType.INTEGER, HType.BOOLEAN]; |
| 235 III = <HType>[HType.INTEGER, HType.INTEGER, HType.INTEGER]; | 234 III = <HType>[HType.INTEGER, HType.INTEGER, HType.INTEGER]; |
| 236 | 235 |
| 237 test1(); | 236 test1(); |
| 238 test2_1(); | 237 test2_1(); |
| 239 test2_2(); | 238 test2_2(); |
| 240 test2_3(); | 239 test2_3(); |
| 241 test3_1(); | 240 test3_1(); |
| 242 test4(); | 241 test4(); |
| 243 } | 242 } |
| OLD | NEW |