| 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 'dart:io'; | 6 import 'dart:io'; |
| 7 | 7 |
| 8 import 'package:front_end/file_system.dart'; | 8 import 'package:front_end/file_system.dart'; |
| 9 import 'package:front_end/incremental_kernel_generator.dart'; | 9 import 'package:front_end/incremental_kernel_generator.dart'; |
| 10 import 'package:front_end/incremental_resolved_ast_generator.dart'; | |
| 11 import 'package:front_end/src/base/api_signature.dart'; | 10 import 'package:front_end/src/base/api_signature.dart'; |
| 12 import 'package:front_end/src/base/performace_logger.dart'; | 11 import 'package:front_end/src/base/performace_logger.dart'; |
| 13 import 'package:front_end/src/base/processed_options.dart'; | 12 import 'package:front_end/src/base/processed_options.dart'; |
| 14 import 'package:front_end/src/fasta/dill/dill_library_builder.dart'; | 13 import 'package:front_end/src/fasta/dill/dill_library_builder.dart'; |
| 15 import 'package:front_end/src/fasta/dill/dill_target.dart'; | 14 import 'package:front_end/src/fasta/dill/dill_target.dart'; |
| 16 import 'package:front_end/src/fasta/kernel/kernel_target.dart'; | 15 import 'package:front_end/src/fasta/kernel/kernel_target.dart'; |
| 17 import 'package:front_end/src/fasta/ticker.dart'; | 16 import 'package:front_end/src/fasta/ticker.dart'; |
| 18 import 'package:front_end/src/fasta/translate_uri.dart'; | 17 import 'package:front_end/src/fasta/translate_uri.dart'; |
| 19 import 'package:front_end/src/incremental/byte_store.dart'; | 18 import 'package:front_end/src/incremental/byte_store.dart'; |
| 20 import 'package:front_end/src/incremental/file_state.dart'; | 19 import 'package:front_end/src/incremental/file_state.dart'; |
| (...skipping 279 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 300 /// TODO(scheglov) Use API signatures. | 299 /// TODO(scheglov) Use API signatures. |
| 301 /// TODO(scheglov) Or use tree shaking and compute signatures of outlines. | 300 /// TODO(scheglov) Or use tree shaking and compute signatures of outlines. |
| 302 final String signature; | 301 final String signature; |
| 303 | 302 |
| 304 /// Kernel libraries for libraries in the [cycle]. Bodies of dependencies | 303 /// Kernel libraries for libraries in the [cycle]. Bodies of dependencies |
| 305 /// are not included, but but references to those dependencies are included. | 304 /// are not included, but but references to those dependencies are included. |
| 306 final List<Library> kernelLibraries; | 305 final List<Library> kernelLibraries; |
| 307 | 306 |
| 308 _LibraryCycleResult(this.cycle, this.signature, this.kernelLibraries); | 307 _LibraryCycleResult(this.cycle, this.signature, this.kernelLibraries); |
| 309 } | 308 } |
| OLD | NEW |