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

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

Issue 1659163007: Rename fletch -> dartino (Closed) Base URL: https://github.com/dartino/sdk.git@master
Patch Set: address comments Created 4 years, 11 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/dartino_compiler/lib/incremental/caching_compiler.dart
diff --git a/pkg/fletchc/lib/incremental/caching_compiler.dart b/pkg/dartino_compiler/lib/incremental/caching_compiler.dart
similarity index 95%
rename from pkg/fletchc/lib/incremental/caching_compiler.dart
rename to pkg/dartino_compiler/lib/incremental/caching_compiler.dart
index f2891c889e8a8fa2091725a0e07376902bc72272..fb30ed71db395ddb875cddaad6e53a6688e3c78d 100644
--- a/pkg/fletchc/lib/incremental/caching_compiler.dart
+++ b/pkg/dartino_compiler/lib/incremental/caching_compiler.dart
@@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
-part of fletchc_incremental;
+part of dartino_compiler_incremental;
/// Do not call this method directly. It will be made private.
// TODO(ahe): Make this method private.
@@ -15,7 +15,7 @@ Future<CompilerImpl> reuseCompiler(
Uri libraryRoot,
Uri nativesJson,
Uri packageConfig,
- Uri fletchVm,
+ Uri dartinoVm,
bool packagesAreImmutable: false,
Map<String, dynamic> environment,
ReuseLibrariesFunction reuseLibraries,
@@ -64,19 +64,19 @@ Future<CompilerImpl> reuseCompiler(
}
}
oldTag.makeCurrent();
- FletchCompiler fletchCompiler = new FletchCompiler(
+ DartinoCompiler dartinoCompiler = new DartinoCompiler(
provider: inputProvider,
outputProvider: outputProvider,
handler: diagnosticHandler,
libraryRoot: libraryRoot,
nativesJson: nativesJson,
packageConfig: packageConfig,
- fletchVm: fletchVm,
+ dartinoVm: dartinoVm,
options: options,
environment: environment,
platform: platform,
incrementalCompiler: incrementalCompiler);
- compiler = await fletchCompiler.backdoor.compilerImplementation;
+ compiler = await dartinoCompiler.backdoor.compilerImplementation;
return compiler;
} else {
for (final task in compiler.tasks) {

Powered by Google App Engine
This is Rietveld 408576698