| OLD | NEW |
| 1 // Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2017, 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 'dart:async'; | 5 import 'dart:async'; |
| 6 import 'package:async_helper/async_helper.dart'; | 6 import 'package:async_helper/async_helper.dart'; |
| 7 import 'package:compiler/src/kernel/kernel_backend_strategy.dart'; | 7 import 'package:compiler/src/kernel/kernel_backend_strategy.dart'; |
| 8 import '../kernel/compile_from_dill_test_helper.dart'; | 8 import '../kernel/compile_from_dill_test_helper.dart'; |
| 9 import '../serialization/helper.dart'; | 9 import '../serialization/helper.dart'; |
| 10 | 10 |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 print( | 33 print( |
| 34 '--- running test code -------------------------------------------'); | 34 '--- running test code -------------------------------------------'); |
| 35 print(test.sources.values.first); | 35 print(test.sources.values.first); |
| 36 print('----------------------------------------------------------------'); | 36 print('----------------------------------------------------------------'); |
| 37 } | 37 } |
| 38 await runTest(test.entryPoint, test.sources, | 38 await runTest(test.entryPoint, test.sources, |
| 39 verbose: arguments.verbose, | 39 verbose: arguments.verbose, |
| 40 skipWarnings: skipWarnings, | 40 skipWarnings: skipWarnings, |
| 41 skipErrors: skipErrors, | 41 skipErrors: skipErrors, |
| 42 options: options, | 42 options: options, |
| 43 expectAstEquivalence: false, | 43 expectAstEquivalence: true, |
| 44 expectIdenticalOutput: false); | 44 expectIdenticalOutput: false); |
| 45 } | 45 } |
| 46 } | 46 } |
| OLD | NEW |