| OLD | NEW |
| 1 // Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2016, 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 library dart2js.serialization_compilation_test; | 5 library dart2js.serialization_compilation_test; |
| 6 | 6 |
| 7 import 'dart:async'; | 7 import 'dart:async'; |
| 8 import 'package:async_helper/async_helper.dart'; | 8 import 'package:async_helper/async_helper.dart'; |
| 9 import 'package:expect/expect.dart'; | |
| 10 import 'package:compiler/src/commandline_options.dart'; | |
| 11 import 'package:compiler/src/common/backend_api.dart'; | |
| 12 import 'package:compiler/src/common/names.dart'; | |
| 13 import 'package:compiler/src/compiler.dart'; | 9 import 'package:compiler/src/compiler.dart'; |
| 14 import 'package:compiler/src/filenames.dart'; | 10 import 'package:compiler/src/filenames.dart'; |
| 15 import '../memory_compiler.dart'; | 11 import '../memory_compiler.dart'; |
| 16 import 'helper.dart'; | 12 import 'helper.dart'; |
| 17 import 'test_data.dart'; | 13 import 'test_data.dart'; |
| 18 import '../output_collector.dart'; | 14 import '../output_collector.dart'; |
| 19 | 15 |
| 20 main(List<String> args) { | 16 main(List<String> args) { |
| 21 asyncTest(() async { | 17 asyncTest(() async { |
| 22 Arguments arguments = new Arguments.from(args); | 18 Arguments arguments = new Arguments.from(args); |
| (...skipping 22 matching lines...) Expand all Loading... |
| 45 print('------------------------------------------------------------------'); | 41 print('------------------------------------------------------------------'); |
| 46 print('compile ${index != null ? '$index:' :''}${testDescription}'); | 42 print('compile ${index != null ? '$index:' :''}${testDescription}'); |
| 47 print('------------------------------------------------------------------'); | 43 print('------------------------------------------------------------------'); |
| 48 OutputCollector outputCollector = new OutputCollector(); | 44 OutputCollector outputCollector = new OutputCollector(); |
| 49 await runCompiler( | 45 await runCompiler( |
| 50 entryPoint: entryPoint, | 46 entryPoint: entryPoint, |
| 51 memorySourceFiles: test != null ? test.sourceFiles : const {}, | 47 memorySourceFiles: test != null ? test.sourceFiles : const {}, |
| 52 options: [], | 48 options: [], |
| 53 outputProvider: outputCollector, | 49 outputProvider: outputCollector, |
| 54 beforeRun: (Compiler compiler) { | 50 beforeRun: (Compiler compiler) { |
| 55 deserialize(compiler, serializedData); | 51 compiler.serialization.deserializeFromText(serializedData); |
| 56 }); | 52 }); |
| 57 if (verbose) { | 53 if (verbose) { |
| 58 print(outputCollector.getOutput('', 'js')); | 54 print(outputCollector.getOutput('', 'js')); |
| 59 } | 55 } |
| 60 } | 56 } |
| 61 | 57 |
| OLD | NEW |