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

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

Issue 2869563002: Initial version of Fasta based IncrementalKernelGenerator. (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/compiler_options.dart
diff --git a/pkg/front_end/lib/compiler_options.dart b/pkg/front_end/lib/compiler_options.dart
index c828a38f9f04a7f33ef26873a567ba57b6655901..4de445b9dbc4fbaa77b0e33045753c02e6814339 100644
--- a/pkg/front_end/lib/compiler_options.dart
+++ b/pkg/front_end/lib/compiler_options.dart
@@ -28,6 +28,10 @@ class CompilerOptions {
/// This option is mutually exclusive with [sdkSummary].
Uri sdkRoot;
+ /// Map of `dart.xyz` libraries to URIs in the [fileSystem].
+ /// E.g. {'core': 'file:///sdk/lib/core/core.dart'} (no `dart:` prefix).
+ Map<String, Uri> dartLibraries = {};
+
/// Callback to which compilation errors should be delivered.
///
/// By default, the first error will be reported by throwing an exception of

Powered by Google App Engine
This is Rietveld 408576698