| OLD | NEW |
| 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2014, 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 /// Unittest test of the CPS ir generated by the analyzer2dart compiler. | 5 /// Unittest test of the CPS ir generated by the analyzer2dart compiler. |
| 6 | 6 |
| 7 import 'mock_sdk.dart'; | 7 import 'mock_sdk.dart'; |
| 8 import 'package:analyzer/file_system/memory_file_system.dart'; | 8 import 'package:analyzer/file_system/memory_file_system.dart'; |
| 9 import 'package:analyzer/src/generated/element.dart'; | 9 import 'package:analyzer/src/generated/element.dart'; |
| 10 import 'package:analyzer/src/generated/sdk.dart'; | 10 import 'package:analyzer/src/generated/sdk.dart'; |
| 11 import 'package:analyzer/src/generated/source.dart'; | 11 import 'package:analyzer/src/generated/source.dart'; |
| 12 import 'package:compiler/implementation/cps_ir/cps_ir_nodes_sexpr.dart'; | 12 import 'package:compiler/src/cps_ir/cps_ir_nodes_sexpr.dart'; |
| 13 import 'package:unittest/unittest.dart'; | 13 import 'package:unittest/unittest.dart'; |
| 14 | 14 |
| 15 import '../lib/src/closed_world.dart'; | 15 import '../lib/src/closed_world.dart'; |
| 16 import '../lib/src/driver.dart'; | 16 import '../lib/src/driver.dart'; |
| 17 import '../lib/src/converted_world.dart'; | 17 import '../lib/src/converted_world.dart'; |
| 18 import 'output_helper.dart'; | 18 import 'output_helper.dart'; |
| 19 import 'test_helper.dart'; | 19 import 'test_helper.dart'; |
| 20 import 'sexpr_data.dart'; | 20 import 'sexpr_data.dart'; |
| 21 | 21 |
| 22 main() { | 22 main() { |
| (...skipping 14 matching lines...) Expand all Loading... |
| 37 ClosedWorld world = driver.computeWorld(entryPoint); | 37 ClosedWorld world = driver.computeWorld(entryPoint); |
| 38 ConvertedWorld convertedWorld = convertWorld(world); | 38 ConvertedWorld convertedWorld = convertWorld(world); |
| 39 String output = convertedWorld.getIr(convertedWorld.mainFunction) | 39 String output = convertedWorld.getIr(convertedWorld.mainFunction) |
| 40 .accept(new SExpressionStringifier()); | 40 .accept(new SExpressionStringifier()); |
| 41 expect(output, equals(expectedOutput), | 41 expect(output, equals(expectedOutput), |
| 42 reason: 'Input:\n$input\n' | 42 reason: 'Input:\n$input\n' |
| 43 'Expected:\n$expectedOutput\n' | 43 'Expected:\n$expectedOutput\n' |
| 44 'Actual:\n$output'); | 44 'Actual:\n$output'); |
| 45 } | 45 } |
| 46 | 46 |
| OLD | NEW |