| 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:compiler/src/compiler.dart'; | 9 import 'package:compiler/src/compiler.dart'; |
| 10 import 'package:compiler/src/filenames.dart'; | 10 import 'package:compiler/src/filenames.dart'; |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 entryPoint: entryPoint, | 48 entryPoint: entryPoint, |
| 49 memorySourceFiles: sourceFiles, | 49 memorySourceFiles: sourceFiles, |
| 50 resolutionInputs: resolutionInputs, | 50 resolutionInputs: resolutionInputs, |
| 51 options: [], | 51 options: [], |
| 52 outputProvider: outputCollector); | 52 outputProvider: outputCollector); |
| 53 if (verbose) { | 53 if (verbose) { |
| 54 print(outputCollector.getOutput('', 'js')); | 54 print(outputCollector.getOutput('', 'js')); |
| 55 } | 55 } |
| 56 } | 56 } |
| 57 | 57 |
| OLD | NEW |