| 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) {
|
|
|