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

Unified Diff: pkg/dart2js_incremental/lib/dart2js_incremental.dart

Issue 2346053002: dart2js: fix tests after moving to .packages in the SDK repo (Closed)
Patch Set: Created 4 years, 3 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
« no previous file with comments | « pkg/dart2js_incremental/lib/caching_compiler.dart ('k') | tests/compiler/dart2js/analyze_test_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/dart2js_incremental/lib/dart2js_incremental.dart
diff --git a/pkg/dart2js_incremental/lib/dart2js_incremental.dart b/pkg/dart2js_incremental/lib/dart2js_incremental.dart
index 86ef905518db83b9cf2b40c1a9577103c8063c73..e62c7c31d92361ef734b1a5b7f2c7d588ef7852d 100644
--- a/pkg/dart2js_incremental/lib/dart2js_incremental.dart
+++ b/pkg/dart2js_incremental/lib/dart2js_incremental.dart
@@ -54,6 +54,7 @@ const List<String> INCREMENTAL_OPTIONS = const <String>[
class IncrementalCompiler {
final Uri libraryRoot;
final Uri packageRoot;
+ final Uri packageConfig;
final CompilerInput inputProvider;
final CompilerDiagnostics diagnosticHandler;
final List<String> options;
@@ -67,6 +68,7 @@ class IncrementalCompiler {
IncrementalCompiler({
this.libraryRoot,
this.packageRoot,
+ this.packageConfig,
this.inputProvider,
this.diagnosticHandler,
this.options,
@@ -107,6 +109,7 @@ class IncrementalCompiler {
cachedCompiler: _compiler,
libraryRoot: libraryRoot,
packageRoot: packageRoot,
+ packageConfig: packageConfig,
inputProvider: inputProvider,
diagnosticHandler: diagnosticHandler,
options: options,
« no previous file with comments | « pkg/dart2js_incremental/lib/caching_compiler.dart ('k') | tests/compiler/dart2js/analyze_test_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698