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

Unified Diff: pkg/front_end/lib/src/incremental/kernel_driver.dart

Issue 3007503002: Load extraRequiredLibraries from the target passed in the options (Closed)
Patch Set: Created 3 years, 4 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_driver.dart
diff --git a/pkg/front_end/lib/src/incremental/kernel_driver.dart b/pkg/front_end/lib/src/incremental/kernel_driver.dart
index be9b602b199ec4404681644d3d8828f65f36f6c1..1ca0f2cf5e3953ed4bed43721f8e22ca183201d6 100644
--- a/pkg/front_end/lib/src/incremental/kernel_driver.dart
+++ b/pkg/front_end/lib/src/incremental/kernel_driver.dart
@@ -105,8 +105,8 @@ class KernelDriver {
return new Future.value();
}
- _fsState = new FileSystemState(
- _byteStore, _fileSystem, _uriTranslator, _salt, onFileAdded);
+ _fsState = new FileSystemState(_byteStore, _fileSystem, _options.target,
+ _uriTranslator, _salt, onFileAdded);
}
/// Return the [FileSystemState] that contains the current file state.
« no previous file with comments | « pkg/front_end/lib/src/incremental/file_state.dart ('k') | pkg/front_end/test/src/incremental/file_state_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698