Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1069)

Unified Diff: pkg/front_end/lib/incremental_kernel_generator.dart

Issue 2885743002: Include only changed or affected libraries into delta. (Closed)
Patch Set: Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: pkg/front_end/lib/incremental_kernel_generator.dart
diff --git a/pkg/front_end/lib/incremental_kernel_generator.dart b/pkg/front_end/lib/incremental_kernel_generator.dart
index 3e8a96f6f6fb1e1c16af2a3037e4ff67ae3172f4..d94aba41e027695150b3f5e6731475aabb17b67f 100644
--- a/pkg/front_end/lib/incremental_kernel_generator.dart
+++ b/pkg/front_end/lib/incremental_kernel_generator.dart
@@ -20,13 +20,11 @@ class DeltaProgram {
/// are affected by the transitive change of API in the changed libraries.
///
/// For VM reload purposes we need to provide also full kernels for the
- /// libraries that are transitively imported by the library with `main()`
- /// and transitively import a changed library.
- /// TODO(scheglov) With `main()` or entry point URI?
+ /// libraries that are transitively imported by the entry point and
+ /// transitively import a changed library.
///
- /// Also includes outlines for the transitive closure of libraries that are
- /// referenced by previously specified changed, affected or VM-required
- /// libraries.
+ /// Also includes external references to other libraries that were not
+ /// modified or affected.
final Program newProgram;
DeltaProgram(this.newProgram);

Powered by Google App Engine
This is Rietveld 408576698