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

Unified Diff: pkg/fletchc/lib/incremental/caching_compiler.dart

Issue 1450393002: Roll sdk dependency to 34357cdad108dcba734949bd13bd28c76ea285e0 (Closed) Base URL: git@github.com:dart-lang/fletch.git@master
Patch Set: Update status files Created 5 years, 1 month 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/fletchc/lib/incremental/caching_compiler.dart
diff --git a/pkg/fletchc/lib/incremental/caching_compiler.dart b/pkg/fletchc/lib/incremental/caching_compiler.dart
index 2a77a24e713eaf6590703d0f5d536a92c2cefbc0..7cf35e7e51dc03d8f67294622331776f3177799f 100644
--- a/pkg/fletchc/lib/incremental/caching_compiler.dart
+++ b/pkg/fletchc/lib/incremental/caching_compiler.dart
@@ -6,12 +6,12 @@ part of fletchc_incremental;
/// Do not call this method directly. It will be made private.
// TODO(ahe): Make this method private.
-Future<Compiler> reuseCompiler(
+Future<CompilerImpl> reuseCompiler(
{CompilerDiagnostics diagnosticHandler,
CompilerInput inputProvider,
CompilerOutput outputProvider,
List<String> options: const [],
- Compiler cachedCompiler,
+ CompilerImpl cachedCompiler,
Uri libraryRoot,
Uri patchRoot,
Uri nativesJson,
@@ -37,7 +37,7 @@ Future<Compiler> reuseCompiler(
if (environment == null) {
environment = {};
}
- Compiler compiler = cachedCompiler;
+ CompilerImpl compiler = cachedCompiler;
if (compiler == null ||
(libraryRoot != null && compiler.libraryRoot != libraryRoot) ||
!compiler.hasIncrementalSupport ||

Powered by Google App Engine
This is Rietveld 408576698