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

Unified Diff: pkg/front_end/lib/src/incremental_kernel_generator_impl.dart

Issue 2939823002: Extract computing UnlinkedUnit(s) and cache them in ByteStore. (Closed)
Patch Set: Created 3 years, 6 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/src/incremental_kernel_generator_impl.dart
diff --git a/pkg/front_end/lib/src/incremental_kernel_generator_impl.dart b/pkg/front_end/lib/src/incremental_kernel_generator_impl.dart
index 164b589f265561d7c218271eb4c500676d595573..644289d9489eeb515c882c53f574512ba869e7e1 100644
--- a/pkg/front_end/lib/src/incremental_kernel_generator_impl.dart
+++ b/pkg/front_end/lib/src/incremental_kernel_generator_impl.dart
@@ -95,8 +95,8 @@ class IncrementalKernelGeneratorImpl implements IncrementalKernelGenerator {
return new Future.value();
}
- _fsState = new FileSystemState(
- _options.fileSystem, _uriTranslator, _salt, onFileAdded);
+ _fsState = new FileSystemState(_options.byteStore, _options.fileSystem,
+ _uriTranslator, _salt, onFileAdded);
}
/// Return the object that provides additional information for tests.

Powered by Google App Engine
This is Rietveld 408576698